I am using an asp page where I want to have a hyperlink that, if clicked, will load an html page in the browser.\but as i user the asp:hyperlink and I am also giving the path of the html page where the page is stored. However, when clicked, it is not loading that html page.. i am using the hyperlink as:
<asp:HyperLink ID="hlinkTest" runat="server">Preview</asp:HyperLink>
and i am giving the url as
hlinkTest.NavigateUrl = "file:///E:/user/aspnet_app/source/test.html";
what can be the better solution for getting html page in browser..