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";
...
1
vote
2answers
128 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
181 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
2answers
379 views
How do I register a server side click on an HTMLGenericControl?
I'm looking for a reliable mechanism to generate a server side postback handler for an HTMLGenericControl such as an li element.
I have some markup that I do not wish to change and would prefer to ...
0
votes
1answer
134 views
c#.net how to get a HtmlGenricControll to show a RadioButtonList item
I have a HtmlGenericController and to this I want to add RadioButtons. My radiobuttons come from a RadioButtonList an hence the objects are Listitems. How do I get my genericcontroller to show the ...
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 ...