what is usercontrol how we can use acess the controls that
are present in the usercontrol in the aspx page
suppose we have 2 text boxes in a user control how u can
acess the 2 textboxs in the aspx page
Answer Posted / om shivaya namaha
user control purpose is when ever a group of controls that
used in most of the pages then we can define those controls
as a user control
user.ascx page :-2 textboxes it is containing
textbox1
textbox2
default.aspx:- thes aspx page is going to use the user control
in design default.aspx:-
<@register tagname="User" tageprefix="US" src="user.ascx">
<table>
<tr>
<td><US:User id="Usercont" runat="server" ></td>
</tr></table>
in serverside default page:-
textbox tx=new textbox();
tx= (textbox)Usercont.findcontrol("textbox1");
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the life cycle of an asp.net page?
How does the cookies work in asp.net?
Explain the advantages of caching?
Where is asp.net view state stored?
What is session and application variable in asp net?
Where can I get information on cookies in asp.net?
What is redirectpermanent in asp.net?
Can we set master page as a start page?
What is cached data phone?
What is a 401 redirect?
Explain the main function of razor in asp.net? : asp.net mvc
Is global asax mandatory?
What is difference between Fragment Caching and Page Caching in ASP.NET?
Is it true that a Web service must be written in .NET or not?
What is application in asp net?