Click here to Skip to main content
15,888,351 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: how to insert empty values from text boxes to database Pin
developerit29-Mar-10 1:49
developerit29-Mar-10 1:49 
GeneralRe: how to insert empty values from text boxes to database Pin
Sneha Bisht29-Mar-10 2:04
Sneha Bisht29-Mar-10 2:04 
GeneralRe: how to insert empty values from text boxes to database Pin
R. Giskard Reventlov29-Mar-10 2:32
R. Giskard Reventlov29-Mar-10 2:32 
Questionpass javascript variable to javascript function Pin
Abdul Rahman Hamidy28-Mar-10 21:43
Abdul Rahman Hamidy28-Mar-10 21:43 
AnswerRe: pass javascript variable to javascript function Pin
Vimalsoft(Pty) Ltd28-Mar-10 22:05
professionalVimalsoft(Pty) Ltd28-Mar-10 22:05 
GeneralRe: pass javascript variable to javascript function Pin
Abdul Rahman Hamidy28-Mar-10 22:17
Abdul Rahman Hamidy28-Mar-10 22:17 
GeneralRe: pass javascript variable to javascript function Pin
Vimalsoft(Pty) Ltd28-Mar-10 22:27
professionalVimalsoft(Pty) Ltd28-Mar-10 22:27 
AnswerRe: pass javascript variable to javascript function Pin
PSK_28-Mar-10 22:19
PSK_28-Mar-10 22:19 
You are adding the input control in the spMsg control like following

msg2Display.innerHTML += '<input type = "button" value="'+src+'" onclick="return displayMsg(src,pText)"/><br>';


When the onclick event will be attached on the input button the “scr” will be unknown.


try this

 function displayControlName(src, pText) {
    var msg2Display = document.getElementById('spMsg');
    msg2Display.innerHTML += '<input type = "button" value="'
    + src + '" onclick="'
    + "return displayMsg('"
    + src + "','"
    + pText + "')"
    + '"/><br>';
    return false;
}

WWW, WCF, WWF, WPF, WFC .... WTF

GeneralRe: pass javascript variable to javascript function Pin
Abdul Rahman Hamidy28-Mar-10 22:26
Abdul Rahman Hamidy28-Mar-10 22:26 
GeneralRe: pass javascript variable to javascript function Pin
PSK_28-Mar-10 23:03
PSK_28-Mar-10 23:03 
GeneralRe: pass javascript variable to javascript function Pin
Abdul Rahman Hamidy28-Mar-10 23:13
Abdul Rahman Hamidy28-Mar-10 23:13 
Questionallow user to manage pop3 account in our website ? [modified] Pin
keyur satyadev28-Mar-10 20:06
keyur satyadev28-Mar-10 20:06 
AnswerRe: allow user to manage pop3 account in our website ? Pin
Arun Jacob28-Mar-10 22:52
Arun Jacob28-Mar-10 22:52 
Questionhow to develop a web page with the help of AD rotator control Pin
sowjanya328-Mar-10 19:17
sowjanya328-Mar-10 19:17 
AnswerRe: how to develop a web page with the help of AD rotator control Pin
PSK_28-Mar-10 19:33
PSK_28-Mar-10 19:33 
AnswerRe: how to develop a web page with the help of AD rotator control Pin
Gaurav Dudeja India28-Mar-10 19:47
Gaurav Dudeja India28-Mar-10 19:47 
Questionhow to use form view Pin
sowjanya328-Mar-10 19:14
sowjanya328-Mar-10 19:14 
AnswerRe: how to use form view Pin
PSK_28-Mar-10 19:26
PSK_28-Mar-10 19:26 
QuestionTemplates Pin
Mike65432128-Mar-10 9:09
Mike65432128-Mar-10 9:09 
AnswerRe: Templates Pin
Not Active28-Mar-10 9:30
mentorNot Active28-Mar-10 9:30 
AnswerRe: Templates Pin
Abhijit Jana28-Mar-10 10:48
professionalAbhijit Jana28-Mar-10 10:48 
GeneralRe: Templates Pin
Mike65432128-Mar-10 10:51
Mike65432128-Mar-10 10:51 
GeneralRe: Templates Pin
Abhijit Jana28-Mar-10 11:18
professionalAbhijit Jana28-Mar-10 11:18 
GeneralRe: Templates Pin
Mike65432128-Mar-10 11:20
Mike65432128-Mar-10 11:20 
QuestionAjax Control Pin
future383928-Mar-10 3:09
future383928-Mar-10 3:09 

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.