您好,登錄后才能下訂單哦!
怎么在ASP.NET項目中為URL加上超鏈接?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
首先,要想在ASP.NET(C#)中使用正則表達式就必須把 System.Text.RegularExpressions 這個命名空間包含進來
using System.Text.RegularExpressions;
第二步是用正則表達式識別URL超鏈接:
這里的代碼是用正則表達式識別Email地址:
第三步,當程序已經識別出URL超鏈接或Email地址后,必須用〈a href=...〉超鏈接〈/a〉對這些超鏈接進行替換,這樣才能把這些文字顯示為鏈接的形式。我這里把它們全部包含在函數中:
private void Button1_Click(object sender, System.EventArgs e) { string strContent = InputTextBox.Text; Regex urlregex = new Regex(@"(http:\/\/([\w.]+\/?)\S*)", RegexOptions.IgnoreCase| RegexOptions.Compiled); strContent = urlregex.Replace(strContent, "〈a href=\"\" target=\"_blank\"〉〈/a〉"); Regex emailregex = new Regex(@"([a-zA-Z_0-9.-]+\@[a-zA-Z_0-9.-]+\.\w+)", RegexOptions.IgnoreCase| RegexOptions.Compiled); strContent = emailregex.Replace(strContent, "〈a href=mailto:〉〈/a〉"); lbContent.Text += "〈br〉"+strContent; }
通過以上幾步,你就可以在網頁上自動顯示超鏈接以及Email地址了
其它網友的補充:
private void button1_click(object sender, system.eventargs e){ string strcontent = inputtextbox.text; regex urlregex = new regex(@"(http://([w.]+/?)s*)",regexoptions.ignorecase| regexoptions.compiled); strcontent = urlregex.replace(strcontent,"<a href="" target=" rel="external nofollow" _blank"></a>"); regex emailregex = new regex(@"([a-za-z_0-9.-]+@[a-za-z_0-9.-]+.w+)",regexoptions.ignorecase| regexoptions.compiled); strcontent = emailregex.replace(strcontent, "<a href=mailto:></a>"); lbcontent.text += "<br>"+strcontent;}
關于怎么在ASP.NET項目中為URL加上超鏈接問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。