Problem in response.get
-
when this page run on "Page_Load" it does not get the user id from Login_page.aspx i put the try catch but there is no error. <%@ Page Language="C#" Debug="True" %> void Page_Load(Object sender, EventArgs e) { string name1; name1=Request.Form.Get("txtuser"); try { Response.Write("your login id is = " + name1); } catch (Exception ex) { Response.Write("your error is " +ex); } } Mazhar Hussain
-
when this page run on "Page_Load" it does not get the user id from Login_page.aspx i put the try catch but there is no error. <%@ Page Language="C#" Debug="True" %> void Page_Load(Object sender, EventArgs e) { string name1; name1=Request.Form.Get("txtuser"); try { Response.Write("your login id is = " + name1); } catch (Exception ex) { Response.Write("your error is " +ex); } } Mazhar Hussain