I’m using link button for login. And I’m masking the url.
Here after validating and getting data from db I’m redirecting to another page using
Response.Redirect(".....");
But it’s not redirecting…it’s validating and getting data from db properly.
Can you suggest any solution for my problem.
Response.redirect(“…”) is a vbScript command for ASP.
You are showing a semi-colon in your example, which is JavaScript syntax but “response.redirect” is not a JavaScript command.
So… if you remove the semi-colon, your redirect will probably work.