Click here to Skip to main content
15,913,854 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionWeb User Control ASP.NET 2.0 Pin
Swastik Das28-Sep-09 5:25
Swastik Das28-Sep-09 5:25 
AnswerRe: Web User Control ASP.NET 2.0 Pin
Abhishek Sur28-Sep-09 6:10
professionalAbhishek Sur28-Sep-09 6:10 
QuestionHow to create subdomain programmatically in VB.NET Pin
Guvera28-Sep-09 4:39
Guvera28-Sep-09 4:39 
AnswerRe: How to create subdomain programmatically in VB.NET Pin
Michael Eber28-Sep-09 6:44
Michael Eber28-Sep-09 6:44 
QuestionNew ASP.Net Ajax Website in VS 2K5 Pin
Abdul Rahman Hamidy28-Sep-09 4:09
Abdul Rahman Hamidy28-Sep-09 4:09 
AnswerRe: New ASP.Net Ajax Website in VS 2K5 Pin
N a v a n e e t h28-Sep-09 4:22
N a v a n e e t h28-Sep-09 4:22 
QuestionChanging LabelText via Java Script Pin
vivekphlp28-Sep-09 2:11
vivekphlp28-Sep-09 2:11 
AnswerRe: Changing LabelText via Java Script [modified] Pin
N a v a n e e t h28-Sep-09 2:36
N a v a n e e t h28-Sep-09 2:36 
GeneralRe: Changing LabelText via Java Script Pin
majee28-Sep-09 3:27
majee28-Sep-09 3:27 
GeneralRe: Changing LabelText via Java Script Pin
N a v a n e e t h28-Sep-09 4:21
N a v a n e e t h28-Sep-09 4:21 
GeneralRe: Changing LabelText via Java Script Pin
majee28-Sep-09 4:29
majee28-Sep-09 4:29 
AnswerRe: Changing LabelText via Java Script Pin
N a v a n e e t h28-Sep-09 4:15
N a v a n e e t h28-Sep-09 4:15 
AnswerRe: Changing LabelText via Java Script Pin
Abhishek Sur28-Sep-09 7:08
professionalAbhishek Sur28-Sep-09 7:08 
Use <asp:hiddenControl to change its value.

Anything other than input types are reflects its changes through javacript in server (Not even Serverside ReadOnly/Disabled TextBoxes). So even if you change the innerHTML of the control, you will not find it in server side. Rather use

document.getElementById("hiddeninput").value = "SOmeText"; // To find the value in server
document.getElementById("LabelID").innerHTML = "SomeText"; // For display purpose only. 


I hope this will help you. Rose | [Rose] Rose | [Rose]

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

GeneralRe: Changing LabelText via Java Script Pin
vivekphlp28-Sep-09 20:27
vivekphlp28-Sep-09 20:27 
GeneralRe: Changing LabelText via Java Script Pin
Abhishek Sur28-Sep-09 21:11
professionalAbhishek Sur28-Sep-09 21:11 
QuestionLooking for a web survey tool... Pin
Andres Coder27-Sep-09 21:05
Andres Coder27-Sep-09 21:05 
AnswerRe: Looking for a web survey tool... Pin
majee28-Sep-09 3:48
majee28-Sep-09 3:48 
AnswerRe: Looking for a web survey tool... Pin
fwsmaster30-Apr-11 3:05
fwsmaster30-Apr-11 3:05 
QuestionError In Control Emplemented "ICallbackEventHandler" Pin
alireza_s_8427-Sep-09 20:29
alireza_s_8427-Sep-09 20:29 
AnswerRe: Error In Control Emplemented "ICallbackEventHandler" Pin
majee28-Sep-09 4:00
majee28-Sep-09 4:00 
QuestionInVoke a function automatically Pin
Ha_8027-Sep-09 19:27
Ha_8027-Sep-09 19:27 
AnswerRe: InVoke a function automatically Pin
Christian Graus27-Sep-09 19:41
protectorChristian Graus27-Sep-09 19:41 
GeneralRe: InVoke a function automatically Pin
Abhishek Sur28-Sep-09 6:35
professionalAbhishek Sur28-Sep-09 6:35 
AnswerRe: InVoke a function automatically Pin
Abhishek Sur28-Sep-09 6:40
professionalAbhishek Sur28-Sep-09 6:40 
QuestionN-Tier ASP.NET Pin
Illegal Operation27-Sep-09 15:36
Illegal Operation27-Sep-09 15:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.