ASP.net Short Answers -1 to 37
ASP.net Short Answers -1 to 37
1. What is ASP.NET?
ASP.NET means "Active Server Pages" which is frontend language & it
is established & supported by Microsoft
5. Explain ISPOSTBACK
IsPostBack is a propety of the Asp.Net page that tells whether or not
the page is on its initial load or if a user has perform a button on your
web page that has caused the page to post back to itself.
2
The @ Register directive is a directive used to register user-
defined controls on a web page.
<code> <%@ Register tagprefix=“my”
namespace=“MyNamespace” %> <my:CustomControl
runat=server /> </code>
6
29. Use of custom validator.
The CustomValidator control allows writing application specific
custom validation routines for both the client side and the server side
validation
The client side validation is accomplished through the
ClientValidation Function property