jueves, 4 de septiembre de 2014
Pagina de webControl y paginacion lado del servidor
https://cap.webcontrol.cl/
http://www.webcontrol.cl/WebControl/opciones_tablas/Manuales.asp?Field=MANUAL&CampoTexto=M&Modulo=Seleccione+Modulo&id=zxy&Submit=Filtrar
http://www.webcontrol.cl/
miércoles, 3 de septiembre de 2014
Excepciones no manejables
http://stackoverflow.com/questions/4560497/exception-window-in-vs-net-2010-is-missing-the-user-unhandled-column
http://stackoverflow.com/questions/103034/vs2008-debugger-does-not-break-on-unhandled-exception
http://msdn.microsoft.com/en-us/library/038tzxdw.aspx
Manejables
chechear los 2
exception assistant
http://msdn.microsoft.com/en-us/library/t16fe6f4.aspx
http://stackoverflow.com/questions/103034/vs2008-debugger-does-not-break-on-unhandled-exception
http://msdn.microsoft.com/en-us/library/038tzxdw.aspx
Manejables
chechear los 2
exception assistant
http://msdn.microsoft.com/en-us/library/t16fe6f4.aspx
SSL
http://forums.asp.net/t/1510427.aspx?Configuring+membership+provider+to+use+SSL
http://msdn.microsoft.com/en-us/library/ff648345.aspx
http://msdn.microsoft.com/en-us/library/ff648345.aspx
eliminacion definitiva
USE master
GO
ALTER DATABASE DBCapacitacion SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO
IF EXISTS(select * from sys.databases where name='DBCapacitacion')
DROP DATABASE DBCapacitacion
GO
http://stackoverflow.com/questions/12702524/unable-to-drop-and-create-database-in-sql-server
http://dba.stackexchange.com/questions/2387/sql-server-cannot-drop-database-dbname-because-it-is-currently-in-use-but-n
http://www.morgantechspace.com/2013/11/Cannot-drop-database-because-it-is-currently-in-use-in-MS-SQL-Server.html
talvez mejor solucion
USE master
GO
IF EXISTS(select * from sys.databases where name='DBCapacitacion')
BEGIN
ALTER DATABASE DBCapacitacion SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DROP DATABASE DBCapacitacion
END
GO
http://chinookdatabase.codeplex.com/workitem/26638
martes, 2 de septiembre de 2014
Problema con el throw de C#
http://www.variablenotfound.com/2009/03/formas-de-relanzar-excepciones.html
Validacion con decorador
No dispara
http://stackoverflow.com/questions/20430185/data-annotation-attributes-are-not-firing-in-wcf
http://blog.decarufel.net/2009/09/using-decorator-or-wrapper-design.html
http://stackoverflow.com/questions/6127290/c-sharp-add-validation-on-a-setter-method
http://en.wikipedia.org/wiki/Single_responsibility_principle
http://msdn.microsoft.com/en-us/library/ff647875.aspx#Step9
http://demos.telerik.com/kendo-ui/validator/custom-validation
http://www.codeproject.com/Articles/256183/DataAnnotations-Validation-for-Beginner
http://stackoverflow.com/questions/20430185/data-annotation-attributes-are-not-firing-in-wcf
http://blog.decarufel.net/2009/09/using-decorator-or-wrapper-design.html
http://stackoverflow.com/questions/6127290/c-sharp-add-validation-on-a-setter-method
http://en.wikipedia.org/wiki/Single_responsibility_principle
http://msdn.microsoft.com/en-us/library/ff647875.aspx#Step9
http://demos.telerik.com/kendo-ui/validator/custom-validation
http://www.codeproject.com/Articles/256183/DataAnnotations-Validation-for-Beginner
Suscribirse a:
Entradas (Atom)