Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
112 views

ASP .NET confusion - server controls

I have read through the information in this question: http://stackoverflow.com/questions/22084/asp-net-aspxxx-controls-versus-standard-html but am still rather confused. The situation was I was asked ...
2
votes
2answers
417 views

Customized button text for file upload

How do I change the button text of file upload HTML control from default "Browse" to anyother text?
2
votes
7answers
802 views

Creating HTMLControls versus outputting a string of HTML

I was recently trying to explain to a programmer why, in ASP.Net, they should create HTMLControls instead of creating HTML strings to create Web pages. I know it is a better way of doing things, but ...
1
vote
1answer
133 views

Where can Sitecore webcontrol examples be found?

I've been looking over the Sitecore documentation for HtmlControls and WebControls, but none of the items have any meaningful descriptions or example code to show how they're used or what they ...
1
vote
1answer
185 views

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 ...
1
vote
4answers
275 views

how do i edit a masterpage div from child page?

what's the DIV equivalent to this command? ((Panel)this.Page.Master.FindControl("Panel1")).Style.Add("display", "none"); This works great with a panel but I can't find the variation for doing the ...
1
vote
1answer
101 views

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 ...
1
vote
0answers
91 views

Custom HTMLControl derived from HtmlImage control not visible in VS2008 toolbox

I have a custom control deriving from HtmlImage control which I cant get to show up on toolbox, it says "There are no components in '...\bin\Debug\ImageCustomControl.dll' that can be placed on the ...
1
vote
3answers
5k views

Setting value in html control in code behind without making server control

Setting value in html control in code behind without making server control <input type="text" name="txt" /> <%--Pleas note I don't want put runat=server here to get the control in code ...
0
votes
2answers
39 views

Programmatically Accessing Html Control Created in ASP.NET

Hello there. I have created a new div inside another div in asp.net. Now I want to use the innerhtml property of that newly created div. I can't find a way.. This is what im doing in my .aspx page.. ...
0
votes
4answers
85 views

Build a table (with rows & columns) in code-behind (ASPX page)

Within codebehind in an ASPX page I get few details about the employees (read from external data source). Finally I would like to show in the below fashion. The display of below may be showin ...
0
votes
2answers
217 views

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 ...
0
votes
1answer
172 views

Page_PreRender finding div by id (asp.net VB)

I am trying to run some code on Page_PreRender but only want it to run on hyperlinks within a certain DIV. What the code does is change the colour of a hyperlink if the NavigateUrl = the URL of the ...
0
votes
1answer
233 views

Windows Mobile 6.1 - Resizing HTMLControl's Window on Soft Keyboard Show/Hide

So this is a common problem and has been addressed in a few places - not specific for an HTML Control on Windows Mobile 6.1 professional though. So here's my problem A WC_HTML HTML Control created ...
0
votes
3answers
338 views

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: <style> #mycontrol { color:#ff0000; } </style> Although there are quite a few ways of doing this ...
0
votes
1answer
202 views

Access generated htmlControls in codebehind after a postback

I'm new on ASP.NET and I'm a bit lost and don't know if I'm on the right approach. In a very large form, I'm rendering a few tables with lot's of input fields. In the aspx I have this: <tbody ...
0
votes
0answers
152 views

Dynamically add a htmlcontrol as a AsnycPostbackTrigger to a AJAX Updatepanel

Is it possible to dynamically add a htmlcontrol as a asyncpostbacktrigger to a AJAX updatepanel? I have tried to do this but i can“t get it to work. 'Dynamically create a HtmlInputButton control ...
0
votes
1answer
262 views

HTML Control asp.net

i am developing application and i have set some html control which are runat="server" on code behind i need to change there text,i made htmlcontrol[] array which contain those control now the problem ...
0
votes
1answer
202 views

HtmlInputRadioButton when disabled does not gray out the labels

I am using in ASP.NET HtmlInputRadioButton runat = server dont ask why not RadioButtonList. Some one else's code and when I use disabled property it grays out the control but the labels are not grayed ...
0
votes
1answer
756 views

How to enable html select post back apsx page when selection changed?

With asp.NET control dropdownlist, there is a property AutoPostBack, if it is set "True", the whole page will be posted back. If the aspx page include a html element "select" like: <select ...
0
votes
4answers
98 views

Confused with asp.net controls and html controls

We are plannning to use Ajax in our ASP.net project. However, we still want the member panel of our web site to work in all browsers. We have decided not to use Ajax in some forms where browser ...
0
votes
2answers
113 views

Text search in an AIR HTML Control

What are the different options available for implementing a text search in an AIR HTML control? I could think of the following two: Implement by injecting a custom javascript - the downside is the ...
-2
votes
5answers
633 views

How to create HTML output without a) databinding or b) using Response.Write?

Kind of related to my other question - I've only ever used HTMLControls with runat="server" and WebControls grudgingly, preferring to have control over the markup that gets generated (including the ...