最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Redirecting to another page using C# Response.Redirect in javascript - Stack Overflow

programmeradmin0浏览0评论

I hava an aspx page and I need to response.redirect to the same page. I am doing while clicking on a button. Can i possible to do it in javascript.

I tried window.location=url; . I want to know how <% Response.Redirect(url) %>can be called in javascript?

I hava an aspx page and I need to response.redirect to the same page. I am doing while clicking on a button. Can i possible to do it in javascript.

I tried window.location=url; . I want to know how <% Response.Redirect(url) %>can be called in javascript?

Share Improve this question asked Dec 3, 2010 at 13:26 kbvishnukbvishnu 15.7k20 gold badges73 silver badges105 bronze badges 1
  • 1 You can't use Response.Redirect from client-side JavaScript - what's wrong with window.location? – LukeH Commented Dec 3, 2010 at 13:29
Add a ment  | 

3 Answers 3

Reset to default 9

To redirect in javascript you need to use the window.location property:

window.location = '<%= ResolveUrl("~/test.aspx") %>';

Response.Redirect cannot be called in Javascript, that is a server side bit of code. window.location does effectively the same job.

In your HTML, where you declare your button, add this.

<input type="button" name="submit" value="submit" onclick="window.location(YOUR REDIRECT URL)" />
发布评论

评论列表(0)

  1. 暂无评论