C
Carlo Razzeto
Is there a standard way in ASP.Net user controls to add your control value
to the Request.Form/QueryString collections with out having to reference an
internal control?
i.e. I know if you have user control ID'd "Foo" with a TextBox which
repersents its basic value called "Bar" you can reference
Request.Form["Foo:Bar:"];
What I'm looking for is:
Request.Form["Foo"];
I know I could just maintain the value my self through the ViewState and
create my own <input ...> tag called ID, but I was just wondering if ASP
provides a built in mechinism for this. Thanks,
Carlo
to the Request.Form/QueryString collections with out having to reference an
internal control?
i.e. I know if you have user control ID'd "Foo" with a TextBox which
repersents its basic value called "Bar" you can reference
Request.Form["Foo:Bar:"];
What I'm looking for is:
Request.Form["Foo"];
I know I could just maintain the value my self through the ViewState and
create my own <input ...> tag called ID, but I was just wondering if ASP
provides a built in mechinism for this. Thanks,
Carlo