Hmm...
Your suggestion is simple enough. I though that you don't always have to check if the page was
posted back. I thought that I could slap some code onto the page and simply use the Request object.
Seems I was wrong.
Thanks for the tip, Peter.
Peter Bromberg [C# MVP] wrote:
> I don't see anything particularly wrong with your form ASPX tag code.
> You have not shown how you expect to access these values on a postback.
>
> The typicaly pattern is:
>
> Page_Load( ....)
> {
> if(IsPostBack)
> {
> //get values here
>
> }
>
> Peter