Ask a Question related to ASP.NET General, Design and Development.
-
sunil #1
Forms or Controls
We have 15 forms each with 20 fields.
which approach will be provide more flexibility in programming specially
with event handling .
Making them as HTML forms or making as User Control.
Are there any pros and cons.
Thanks!!!!
sunil Guest
-
Adding Controls to a Web Forms Page Programmatically
Hi I'm having some trouble adding a user control to my webform programmatically. I've done this before, but not for some time. The control was... -
Getting variables from other controls & forms
How do I get a value of a textbox control from a form? On form1, I have a textbox with the value "CountyID" with a submit button; when the user... -
Multiple Windows Forms Controls in IE
Hello, Why not create a property in control2 and let control1 operate it through this property? For an example, you have two instances, one for... -
Tab Controls on Forms
Does anyone know if it is possible to create a new tab control on a page of an existing tab control? I've tried several methods, but each places... -
Passing server controls between forms
Hello all, I have two forms form1.aspx and form2.aspx. I need to reterive all the form elements from form1 into form2. In Form1.aspx n number of... -
William F. Robertson, Jr. #2
Re: Forms or Controls
asp.net really only allows one form per page, so your best bet would be user
controls, that way you could handle all the event seperately and the data
would be packaged neatly for you in the code behind file for the user
control.
HTH,
bill
"sunil" <sunil_godiyal@yahoo.com> wrote in message
news:#kIr0fyODHA.704@tk2msftngp13.phx.gbl...> We have 15 forms each with 20 fields.
> which approach will be provide more flexibility in programming specially
> with event handling .
> Making them as HTML forms or making as User Control.
> Are there any pros and cons.
> Thanks!!!!
>
>
>
>
>
William F. Robertson, Jr. Guest



Reply With Quote

