2014-02-05 114 views
0

我有一個RadWindow顯示一些細節。除此之外,我還需要添加一個超鏈接「測試」,點擊該鏈接重定向到sample.aspx頁面。如何做到這一點?以下是我到目前爲止。HTML中的超鏈接

<html xmlns="http://www.w3.org/1999/xhtml" > 
<head runat="server"> 
    <title></title> 
</head> 
<body> 
    <div runat="server" id="EventDiv" visible="false" class="Popup"> 
     <h3>Event Information</h3> 
     <table width="250px"> 
     <tr><td> 
     <strong>Event Owner:</strong><asp:Label runat="server" ID="EventOwnerLabel"></asp:Label><br /> 
     <strong>Event Name:</strong><asp:Label runat="server" ID="EventNameLabel"></asp:Label><br /> 
     <strong>Event Date:</strong><asp:Label runat="server" ID="EventDateLabel"></asp:Label><br /> 
     <a href="ParticipantListing.aspx">Participants Listing</a> 
     </td></tr> 
     </table> 
</div> 
</body> 
</html> 
+1

'Test'? – David

+0

你已經在你的代碼中使用了超鏈接。你究竟想要什麼......我認爲你需要讓它更清楚地得到你的答案。 –

+0

@大衛:我已經試過了。它打開另一個尺寸較小,沒有內容的輻射窗。 – user3254765

回答

0

作爲@大衛說使用anchor tag

用法是這樣

<a href="sample.aspx">Test</a> 

現在href屬性可以像上面顯示什麼相對位置是這樣的:

<a href="http://www.Websitething/foo/sample.aspx">Test</a> 
+0

它工作。我所要做的就是設置target = _top,因爲我正嘗試從radwindow重定向到另一個頁面。 – user3254765

+0

很高興能幫到你:D –

0

使用RadButton(ButtonType =「LinkBut​​ton」或您喜歡的任何類型)和Click事件中,執行

Response.Redirect("~/path/sample.aspx", false);