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
157 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
251 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
458 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
2answers
43 views

How to make an HtmlGenericControl attribute runat = “server”.to access it from the code?

I face a strange problem to access some HtmlGenericControl which created in run time . How to make the HtmlGenericControl runat ="server"?so i can access it HtmlGenericControl myli = new ...
0
votes
3answers
31 views

How can I randomize controls when they are added

I have three ul like this : <ul id="column3" class="column" runat="server"> </ul> <ul id="column4" class="column" runat="server"> </ul> <ul id="column5" class="column" ...
0
votes
1answer
23 views

Need to search (and navigate to the searched word) within in an ASPX page

Scenario: ASP.NET site. In Instruct.ASPX code-behind, I generate the contents of the page and they are well formatted using TABLE, TR, TD, Hyperlink, Anchor tags etc. The entire content is assigned ...
0
votes
1answer
112 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
1k 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
222 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 ...