Tagged Questions

2
votes
1answer
106 views

apply css for a HTML Generic control like <UL> and <LI> in asp.net

hai guys, I dont know how to apply css for a HTML Generic control like <UL> and <LI> given runat="server" in asp.net.... I am finding the <li> in a master page from a content …
0
votes
1answer
78 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"; …
0
votes
1answer
31 views

Accessing a HtmlGenericControl on a MasterPage from a ContentPage

Hi there, so I've got the following structures; Start.master (Start.master.cs) Contains a Method DoSomething(string Text) { _MyHtmlControl.InnerText = Text; } And the HtmlGenericControl …
0
votes
1answer
47 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 …
1
vote
3answers
793 views

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

Hi! I'm generating a menu with a Repeater control bound to an XmlDataSource. <asp:Repeater ID="myRepeater" runat="server" DataSourceID="myDataSource" …