User758529726 posted
Hi i have a form and when a user clicks on a button, the form redirects the user to another page. i used RedirectToMobilePage("page.aspx") to redirect the user. its working perfectly on the web browser. but on Mobile Phones, its not working at all! i get an
error telling me there is something wrong with the page. i tried to access the page with Nokia and Sony Ericsoon phones. and i got the same result! please help!!
User-1404012336 posted
Put <httpRuntime useFullyQualifiedRedirectUrl="true" /> into your web.config file, and then run your application ! I hope this is the solution to your problem ! <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.web> <httpRuntime useFullyQualifiedRedirectUrl="true"
/> </system.web> </configuration>