Users Pricing

forum

Home Forums creating html div in c# – MindStick

creating html div in c#

Manoj Bhatt 2568 29 Aug 2014

I am using the following code to make an html div in c#

System.Web.UI.HtmlControls.HtmlGenericControl dynDiv =
        new System.Web.UI.HtmlControls.HtmlGenericControl("DIV");
            dynDiv.ID = "dynDivCode";
            dynDiv.Style.Add(HtmlTextWriterStyle.BackgroundColor, "Gray");
            dynDiv.Style.Add(HtmlTextWriterStyle.Height, "20px");
            dynDiv.Style.Add(HtmlTextWriterStyle.Width, "300px");
            dynDiv.InnerHtml = "I was created using Code Behind";
            this.Controls.Add(dynDiv);

But this does not do a thing, it gives an error at the last line that dynDiv is not a valid argument.

 I want to use div here to simulate cache memory line and placement of words in cache memory

.Please tell me how to do it


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md