I'm just trying to get the equivalent HTML code that represent a specific control in asp. for example i have the following label in ASP

Label x=new Label();
x.ID="a123";
x.Text="b123";

i just want to find a way to get

"<span id='a123'>b123</span>"
link|improve this question

63% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can use this method to render controls to html.

public string RenderControl(Control ctrl)
{
    StringBuilder sb = new StringBuilder();
    StringWriter tw = new StringWriter(sb);
    HtmlTextWriter hw = new HtmlTextWriter(tw);

    ctrl.RenderControl(hw);
    return sb.ToString();
}

And use

Label x = new Label();
x.ID = "a123";
x.Text = "b123";

var html = RenderControl(x);

will give you <span id="a123">b123</span>

link|improve this answer
Thanks a lot sir, very helpful !! – user1225246 Feb 25 at 7:24
If this answer helps you, click green tick on left side of answer to make question is answered. – arunes Feb 25 at 7:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.