Tagged Questions

4
votes
3answers
1k views

Self closing Html Generic Control?

I am writing a bit of code to add a link tag to the head tag in the code behind... i.e. HtmlGenericControl css = new HtmlGenericControl("link"); css.Attributes["rel"] = "Stylesheet"; ...
2
votes
3answers
2k views

ASP.NET: Setting the Style of an HTML element Programatically

I'm generating a menu with a Repeater control bound to an XmlDataSource. <asp:Repeater ID="myRepeater" runat="server" DataSourceID="myDataSource" ...
1
vote
2answers
123 views

make dynamically generated href call a c# function

I am trying to build a dropdown as below. I am generating html ul & li tags as below and works fine. However, everytime there is an anch tag (see the in-line comment); I need to be able to call ...
1
vote
1answer
179 views

How to prevent HtmlGenericControl from html-encoding content?

I'm writing an asp.net site (actually, a DotNetNuke module), using C#. From code-behind, I'm trying to create a <script> tag where I set a required js variable, then append it to the HMTL ...
1
vote
1answer
453 views

ASP.NET: HtmlGenericControl <DIV> - refresh

I have a DIV element: <div runat="server" id="path">Nothing here... yet</div> and JavaScript which changes its content dynamically. After some actions my element looks like this (tested ...
0
votes
1answer
89 views

How to make scroll bars work in HtmlGenericControl(“Div”)

HtmlGenericControl SpecsDiv = new HtmlGenericControl("Div"); SpecsDiv.InnerHtml = "<b>Specifications are not defined.</b>"; SpecsDiv.Style.Add("left", "0"); ...
0
votes
1answer
985 views

Adding 2 HTMLGenericControl script with src attribute not working

I have asp.net 2.0 c# application. I have 2 scripts I want to add to a user control's control collection. Instead of adding them one after another, it only opens one script tag and throws the 2 src ...
0
votes
1answer
213 views

Accessing a HtmlGenericControl on a MasterPage from a ContentPage

so I've got the following structures; Start.master (Start.master.cs) Contains a Method DoSomething(string Text) { _MyHtmlControl.InnerText = Text; } And the HtmlGenericControl ID'ed ...