Response.Redirct not working

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • waqasahmd
    New Member
    • Nov 2009
    • 13

    Response.Redirct not working

    Hi,

    i have a signup.aspx page on which the user get registered and response.redire ct to the nextpage.aspx

    On the nextpage.aspx there is a back button on which has on click event

    protected void Button1_Click(o bject sender, EventArgs e)
    {
    Response.Redire ct("signup.aspx ")
    }

    but this is not working it redirects to the same page as it should be redirected to the signup.aspx Page

    kindly help

    Thanx
  • waqasahmd
    New Member
    • Nov 2009
    • 13

    #2
    i find the solution

    causes validation property is not set to false that's why the validation is done and i hav empty fields so i just set the property to true

    Comment

    Working...