ASP.NET INTERVIEW QUESTION & ANSWERS
51. |
Can ASP.NET Web controls be put inside DataGrid columns? |
|
Yes. by using the TemplateColumn definition. |
52. |
What is Marshaling? |
|
Marshaling is used when an object is converted so that it can be sent across the networks or across applications domains. |
53. |
What are the types of Marshalling? |
|
There are two types of Marshalling are :
- Marshal-by-value
- Marshaling-by-reference
|
54. |
Can I create ASP.NET server controls of my own? |
|
Yes. You can modify existing server controls by deriving from the corresponding control classes or create server controls from scratch by deriving from System.Web.UI.Control. |
55. |
What is AutoPostback? |
|
AutoPostBack automatically posts the page back to the server when state of the control is changed. |