Adding controls to a page dynamically and using regular expression code _ practical Tips

Source: Internet
Author: User
Copy Code code as follows:

Namespace Webcode
{
public partial class _default:system.web.ui.page
{
protected void Page_Load (object sender, EventArgs e)
{
String str = "This is a test file <{config name=\" pagetitle1\ "}>, a label parsing <{config name=\" pagetitle2\ "count=\" 2\ "}> process ";
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
Adds a control to the end of the form node in the page.
Using System.Text.RegularExpressions;
class to use with regular expressions

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.