动态向页面添加控件和使用正则表达式的代码
代码如下:
namespace WebCode { public partial class _default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { String str = "这是一个测试文件<{config name=\"pagetitle1\"}>,一个标签的解析<{config name=\"pagetitle2\" count=\"2\"}>过程"; Label mylabel = new Label(); mylabel.ID = "display"; mylabel.Text = this.myReplace(str); Page.Form.Controls.Add(mylabel); } protected String myReplace(String str) { String pattern = @"\<\{(.*?)\}\>"; Regex p = new Regex(pattern, RegexOptions.IgnoreCase); MatchCollection m = p.Matches(str); String matchs = ""; for (int i = 0; i < m.Count; i++) { matchs += "," + m[i]; } return matchs.Substring(1); } } }
Page.Form.Controls.Add
向页面中Form节点的尾部添加控件。
using System.Text.RegularExpressions;
使用正则表达式要使用的类
相关推荐
flyingssky 2020-08-18
Lzs 2020-10-23
聚合室 2020-11-16
零 2020-09-18
Justhavefun 2020-10-22
jacktangj 2020-10-14
ChaITSimpleLove 2020-10-06
Andrea0 2020-09-18
周游列国之仕子 2020-09-15
afanti 2020-09-16
88234852 2020-09-15
YClimb 2020-09-15
风雨断肠人 2020-09-04
卖口粥湛蓝的天空 2020-09-15
stulen 2020-09-15
pythonxuexi 2020-09-06
abfdada 2020-08-26