1

I have this URL: http://localhost:1356/MyProfile/Login.aspx

I want to redirect this to http://localhost:1356 How to with javascript?

Felix Kling
  • 795,719
  • 175
  • 1,089
  • 1,143
chandani
  • 61
  • 7

1 Answers1

1

Try

window.location.href = 'http://localhost:1356';
Shalu Singhal
  • 553
  • 3
  • 8