Questions tagged [server-side-controls]
9 questions
1
vote
5 answers
GetElementByID at server side, asp.net?
I have something like that:
1
vote
1 answer
Unable to retrieve offset for a ASP.NET server-side control
I'm trying to retrieve the offsetHeight of a server-side control but it gives me an error. Here's the following code snippet -
function Test() {
var imgFavorite = $("<%= imgFavorite.ClientID %>"); //imgFavorite is a server-side…

tempid
- 7,838
- 28
- 71
- 101
1
vote
3 answers
ASP.NET server side control not declared in CodeBehind
I know that there's always been issues with declaring server-side controls directly in HTML in Visual Studio. Usually, you have to open the page in design mode in order to get them generated in code behind so you can access via your code. But I do…

Patrice Cote
- 3,572
- 12
- 43
- 72
0
votes
1 answer
In nested gridview the table corresponding to child Gridview is not rendered in html
I followed the tutorial http://www.codeproject.com/Articles/20047/Editable-Nested-GridView-All-in-One
In the page the table corresponding to parent Gridview is rendered a another table corresponding to child gridview has to be there within a row of…

Siva Sankaran
- 1,521
- 4
- 21
- 40
0
votes
4 answers
Is it possible to disable ViewState in ASP .NET?
I am using third party server-side controls on my website (Telerik RadControls for ASP .NET). The menu control has a complex structure which is bloating the size of the viewstate affecting load times. I am not aware of the details of viewstate…

Raheel Khan
- 14,205
- 13
- 80
- 168
0
votes
2 answers
Nested span elements where parent is server-side
In ASP.Net (4.5.2) I have nested elements where the parent is a set as a server side control...
This is the start of the text This is some more Text with some…

freefaller
- 19,368
- 7
- 57
- 87
0
votes
1 answer
asp.net web forms best practice to retrieve dynamic server control values
I populate web form with dynamic list of exams from database. I want user to enter examination marks for each exam. There is list of exam titles and textbox near each title.
I create list with repeater control (ViewState is disabled) :

Andrew Florko
- 7,672
- 10
- 60
- 107
0
votes
1 answer
RadioButtonList SelectedIndexChanged event not fired when JS function onclick event is registered
When I click radio buttons in the radio button list control, javascript function gets called, but the server side onchange event doesn't get triggered. I tried the same with "onchange" event of the control but didn't work.
first type -…

Adesh Arote
- 105
- 2
- 10
0
votes
3 answers
How to automatically click "update" button in asp.net control?
I used asp.net server side control to display and modify data in database, the control is just like this one:
http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/alleditablecolumns/defaultcs.aspx
what I want to do is after I click the…

MemoryLeak
- 7,322
- 23
- 90
- 133