Questions tagged [htmlcontrols]
67 questions
2
votes
1 answer
how to display dynamic in requirefield validator in dynamic html table.
following code shows the error..
req.Display = "dynamic";
cell.Controls.Add(req);
It shows the error. how to display dynamic ?

kkk
- 273
- 1
- 6
- 20
1
vote
2 answers
how to access the dynamically created HTML control from code behind in asp.net
i have a webpage, wherein i am using a simple foreach loop and creating table structure, wherein i am displaying an image in td, the requirement is i want to access the image created in td, from code-behind on page load.
but i am unable to find the…

Abbas
- 4,948
- 31
- 95
- 161
1
vote
1 answer
How do I use proxy in Flex 4's HTML control?
I want to use a proxy on the HTML Control found in Adobe AIR. How do I go about doing this? I have tried looking at the AS3 docs on Adobe but honestly, it didn't explain the usage clearly to me and looking at Adobe's example, I can't seem to make…

Registered User
- 8,706
- 9
- 32
- 40
1
vote
3 answers
How do I add a html style container using C#?
I need to add a HTML style container in the section of a particular page, like so:
Although there are quite a few ways of doing this I was thinking about instantiating a HtmlControl from the…

Stig Perez
- 3,595
- 4
- 23
- 36
1
vote
2 answers
How can I generate a System.Web.UI.HtmlControls.HtmlTextArea with whatever attributes I want?
I have a very unique situation where I need to generate a

user1447679
- 3,076
- 7
- 32
- 69
1
vote
1 answer
ASP.NET The SelectedIndex property is the same in the all HtmlSelect on the page
I have some HtmlSelect (a'la asp.net's DropDownList) with ID's like Select1, Select2, ..., Select13. I create the static List of items:
for (int i = 0; i < tab.Length; i++)
_listItems[i] = (new ListItem { Text = tab[0, i], Value = tab[1, i],…

Tony
- 12,405
- 36
- 126
- 226
1
vote
2 answers
How to add
I want to add this audio html tag to the page from code behind in Client.RegisterClientScriptBlock(). Is it possible?