我想给ExtLinkHPLINK一个extlink列的值,这是存储在这个列中的外部URL。但是当我把鼠标放在超链接上时发生的事情并没有告诉我有一种方法可以点击它并以其他方式移动到外部URL超链接不起作用而不会将我移动到URL。所以我想做什么
<div class="col-lg-12" style="padding-top:48px; padding-bottom:5px;">
<div class="col-lg-12">
For more images and information <asp:HyperLink ID="ExtLinkHPLINK" runat="server" Target="_blank" NavigateUrl='<%# Eval("extlink") %>'>click here</asp:HyperLink>
</div>
</div>
SqlConnection shwadsone = new SqlConnection(cs);
{
shwadsone.Open();
SqlCommand adsdeCM = new SqlCommand();
string adsdetSqlSelect = @"SELECT AD.[AdsID],AD.[UID],AD.[Section],AD.[Category],AD.[Country],AD.[State],AD.[City],AD.[AdsTit] /...,UI.[Logo],UI.[Img],UI.[TeleNum],UI.[Email], FROM [ads] as AD JOIN UserInfo as UI ON AD.[UID] = UI.[UID] where AD.AdsID = @AID ";showernumlbl.Text = adsdetDR["Shower"].ToString();
carmakerlbl.Text = adsdetDR["Maker"].ToString();
Label2.Text = adsdetDR["Garage"].ToString();
CountCurrencLbl.Text = adsdetDR["Currency"].ToString();
ExtLinkHPLINK.NavigateUrl = adsdetDR["extlink"].ToString();/...