ASP.NET INTERVIEW QUESTION & ANSWERS
76. |
Which class does the remote object has to inherit? |
|
System.Marshallby RefObjects. |
77. |
What are all the assemblies that I can reference in an ASPX file without using @ Assembly directives? |
|
ASP.NET links to the following assemblies by default:
- System.Web.dll
- System.Web.Services.dll
- System.Xml.dll
- Mscorlib.dll
- System.dll
- System.Data.dll
- System.Drawing.dll
|
78. |
How to disable client side script in validators? |
|
Set "EnableClientScript" to false |
79. |
How do you customize the column content inside the datagrid? |
|
If you want to customize the content of a column, make the column a template column. Template columns work like item templates in the DataList or Repeater control, except that you are defining the layout of a column rather than a row. |
80. |
How can we force all the validation controls to run? |
|
Page.Validate |