runat Property
-
Hi friends, Can anybody tel what is the use of "runat" property in asp.net I tried with out using this property but the page is not considering that control. If we give runat="server", it will run at server. If i want to run at client what i have to give. If you can explain with example, it will be very useful Thanks in advance
-
Hi friends, Can anybody tel what is the use of "runat" property in asp.net I tried with out using this property but the page is not considering that control. If we give runat="server", it will run at server. If i want to run at client what i have to give. If you can explain with example, it will be very useful Thanks in advance
Check this out http://msdn2.microsoft.com/en-us/library/ms529174.aspx[^]
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
Hi friends, Can anybody tel what is the use of "runat" property in asp.net I tried with out using this property but the page is not considering that control. If we give runat="server", it will run at server. If i want to run at client what i have to give. If you can explain with example, it will be very useful Thanks in advance
Usharva wrote:
Can anybody tel what is the use of "runat" property in asp.net
All the tags marked by runat=server will be processed by ASP.NET.
Usharva wrote:
If i want to run at client what i have to give.
What do you want to run on client ? Use javascript which works on client side.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
Hi friends, Can anybody tel what is the use of "runat" property in asp.net I tried with out using this property but the page is not considering that control. If we give runat="server", it will run at server. If i want to run at client what i have to give. If you can explain with example, it will be very useful Thanks in advance