Click here to Skip to main content
16,008,490 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Local Printing on ASP.NET Pin
prateekfgiet23-Mar-09 22:14
prateekfgiet23-Mar-09 22:14 
QuestionSession Problem Pin
specialdreamsin22-Mar-09 18:22
specialdreamsin22-Mar-09 18:22 
AnswerRe: Session Problem Pin
N a v a n e e t h22-Mar-09 19:30
N a v a n e e t h22-Mar-09 19:30 
GeneralRe: Session Problem Pin
specialdreamsin22-Mar-09 19:39
specialdreamsin22-Mar-09 19:39 
GeneralRe: Session Problem Pin
N a v a n e e t h22-Mar-09 19:50
N a v a n e e t h22-Mar-09 19:50 
Questionaccessing asp:textbox with javascripts Pin
AprNgp22-Mar-09 7:15
AprNgp22-Mar-09 7:15 
AnswerRe: accessing asp:textbox with javascripts Pin
Christian Graus22-Mar-09 10:21
protectorChristian Graus22-Mar-09 10:21 
AnswerRe: accessing asp:textbox with javascripts Pin
vinodkrebc22-Mar-09 18:30
vinodkrebc22-Mar-09 18:30 
You have to first run the page and then get the name of that textbox at the runtime

suppose the textbox name is Ct001txt_userid then the you can get the value of text box at the run time by following


var c=document.getElelmentById('Ct001txt_userid');
if(c.value=='vinod')
{
alert('Hi You Are Vinod')
}
else
{
alert('Hi You are not Vinod')
}


You can get the value of textbox by other way also

var b=document.getElementById("<%=txt.ClientID%>")

in the second way the name of the Control is the same what is at server end

Vinod Kumar Prajapati

Software Engineer
EBC publishing Ltd.
Lucknow(India)
QuestionValue Transfer From pop-up Window to Main Window!! Pin
Sr...Frank22-Mar-09 4:54
Sr...Frank22-Mar-09 4:54 
AnswerRe: Value Transfer From pop-up Window to Main Window!! Pin
N a v a n e e t h22-Mar-09 5:09
N a v a n e e t h22-Mar-09 5:09 
GeneralRe: Value Transfer From pop-up Window to Main Window!! Pin
Sr...Frank22-Mar-09 6:03
Sr...Frank22-Mar-09 6:03 
GeneralRe: Value Transfer From pop-up Window to Main Window!! Pin
Yusuf22-Mar-09 6:06
Yusuf22-Mar-09 6:06 
GeneralRe: Value Transfer From pop-up Window to Main Window!! Pin
Sr...Frank22-Mar-09 7:25
Sr...Frank22-Mar-09 7:25 
GeneralRe: Value Transfer From pop-up Window to Main Window!! Pin
vinodkrebc26-Mar-09 19:40
vinodkrebc26-Mar-09 19:40 
QuestionConditional Formatting of DataGrid Pin
pavan.kumar,sai22-Mar-09 4:48
pavan.kumar,sai22-Mar-09 4:48 
AnswerRe: Conditional Formatting of DataGrid Pin
N a v a n e e t h22-Mar-09 5:07
N a v a n e e t h22-Mar-09 5:07 
GeneralRe: Conditional Formatting of DataGrid Pin
pavan.kumar,sai22-Mar-09 6:43
pavan.kumar,sai22-Mar-09 6:43 
GeneralRe: Conditional Formatting of DataGrid Pin
N a v a n e e t h22-Mar-09 7:00
N a v a n e e t h22-Mar-09 7:00 
GeneralRe: Conditional Formatting of DataGrid Pin
pavan.kumar,sai22-Mar-09 18:24
pavan.kumar,sai22-Mar-09 18:24 
GeneralRe: Conditional Formatting of DataGrid Pin
N a v a n e e t h22-Mar-09 19:59
N a v a n e e t h22-Mar-09 19:59 
QuestionRead XML file from Web Service Pin
slSoftware21-Mar-09 22:46
slSoftware21-Mar-09 22:46 
AnswerRe: Read XML file from Web Service Pin
Abhishek Sur21-Mar-09 23:55
professionalAbhishek Sur21-Mar-09 23:55 
GeneralRe: Read XML file from Web Service Pin
slSoftware22-Mar-09 1:50
slSoftware22-Mar-09 1:50 
GeneralRe: Read XML file from Web Service Pin
Riaan Booyzen22-Mar-09 2:37
Riaan Booyzen22-Mar-09 2:37 
AnswerRe: Read XML file from Web Service Pin
Abhijit Jana22-Mar-09 0:00
professionalAbhijit Jana22-Mar-09 0:00 

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.