ASPX Does not redirect to where it should

0

I have this part of the code when an action is made Response.Redirect("FPMV106.aspx")

but it does not redirect me there, it redirects me to a page of the project "Start.apsx".

I also tried with Server.Transfer("FPMV106.aspx") and do not do it hard I have to enter the page in the address bar

I've already searched for you and I can not find you anywhere!

Someone who can help me

    
asked by SuperYo 17.10.2017 в 00:46
source

1 answer

0

If you do not like this Response :

Response.Redirect("index.aspx", true);

Try the following:

Go to the design part of your visual studio and look for the button that redirect should do. Go your properties, pressing f4, look for your property PostBackUrl and there you wrote the URL of your page to redirect.

    
answered by 17.10.2017 / 05:28
source