0

I have an HTML file with .

I want to have a button to navigate my page to another page which is ASPX. How can I do it?

I use this code but it's not working:

<a href="mngdirect.aspx" data-role="button" data-transition="flow" data-theme="a">Go To Managment Page</a>
fardjad
  • 20,031
  • 6
  • 53
  • 68
amin
  • 1,194
  • 1
  • 12
  • 20

1 Answers1

0

Should use data-ajax="false"

<a href="../mngdirect.aspx" data-role="button" data-ajax = "false" data-transition="flow" data-theme="a">Go To managment Page</a>
amin
  • 1,194
  • 1
  • 12
  • 20