Dhoni wants to navigate to an HTML Page named "Contents.html" from a Web form when a button is clicked. Which of the following line of code enables him to accomplish this task?
Select Answer:
Response.Redirect("Contents.html")
Server.Transfer("Contents.html", True)
Server.Execute("Contents.html", True)
You cannot navigate to HTML pages from Web forms
|