之外我有兩個簡單的aspx頁面不能導航超鏈接到網站
Viewpage.aspx
<asp:HyperLink ID="lbllink" runat="server" Target="_Blank"></asp:HyperLink>
Editpage.aspx
<asp:TextBox ID="txtlink" runat="server"></asp:TextBox>// client input the link : faceboook.com
,並在後面的代碼:
lbllink.Text= txtlink.Text;// txtlink.Text = facebook.com
lbllink.NavigateUrl = txtlink.Text;
當我建立,出現錯誤:The resource cannot be found.
因爲facebook.com
不是頁面在我的webstie文件夾中。我不能使用<a href= >
,因爲它沒有ID
標記。
幫助,有沒有更好的辦法對我的問題?
'HTTP:// facebook.com' ??? –
是的,我想鏈接到http://facebook.com –
你需要http://部分 - 對不起,我沒有溝通那麼好,我沒有 –