I have a value for bind in lable.Text value is this below
value I want in lable this:
<ul class="Class"> <li><img width="440" height="600"/></li> </ul>
exactly same as it is
I'm calling value in lable like this
string Class = "pslides"; string width = "440"; string height = "600";
lbl.Text = "<ul class=" + Class + "> <li><img width=" + width + "
height=" + height + "/></li> </ul>";
when I check the label.Text value then I will get result this
<ul class=Class> <li><img width=440 height=600/></li> </ul>
but I want a label.text value like this
lbl.Text = "<ul class="Class"> <li><img width="width"
height="height"/></li> </ul>";
I have to do this in with code in c# please give me solution how can I get the lable.text value like I want.
Thank You