A
Antoni Massó Mola
I have a form that sends data to another .aspx page.
In the second .aspx I have this code to retrieve the form's values and
create sessions:
Application("Login") = Request.Form("txtLogin") Application("Password")
= Request.Form("pwdPassword")
I need to validate this values with the C# code I use to connect to the DB2
database.
Is it possible to access the Request.Form("txtLogin") value from the C#
code?
Thanks
In the second .aspx I have this code to retrieve the form's values and
create sessions:
Application("Login") = Request.Form("txtLogin") Application("Password")
= Request.Form("pwdPassword")
I need to validate this values with the C# code I use to connect to the DB2
database.
Is it possible to access the Request.Form("txtLogin") value from the C#
code?
Thanks