Asp.Net Questions and Answers - 3

Question: 11

What are the uses of Auto Event Wire up and Runat?

Auto Event Wire up = “true” – code in ASP.NET Web Forms and in Web User Controls is simple the value is set to false when you create a new ASP.NET Web Application.

Runat = “server” – it is the key that tells about the server side execution. Any tag that include this attribute is considered a server side control to be executed by the ASP.NET Framework on the server.

Related Questions