Click here to Skip to main content
15,918,889 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionimage control Pin
radupopescu7774-Feb-09 8:44
radupopescu7774-Feb-09 8:44 
AnswerRe: image control Pin
Christian Graus4-Feb-09 9:22
protectorChristian Graus4-Feb-09 9:22 
GeneralRe: image control Pin
radupopescu7774-Feb-09 10:01
radupopescu7774-Feb-09 10:01 
GeneralRe: image control Pin
emiaj4-Feb-09 10:39
emiaj4-Feb-09 10:39 
AnswerRe: image control Pin
radupopescu7774-Feb-09 20:37
radupopescu7774-Feb-09 20:37 
Questioncannot get my update methd to work using a gridviw's objectdatasource Pin
Anthony Ganley4-Feb-09 8:29
Anthony Ganley4-Feb-09 8:29 
Questioncannot get my update methd to work using a gridviw's objectdatasource Pin
Anthony Ganley4-Feb-09 8:28
Anthony Ganley4-Feb-09 8:28 
Questionbutton click event after onblur event Pin
gbabu174-Feb-09 6:40
gbabu174-Feb-09 6:40 
Hallo,
I have a textbox with onblur event handled with javascript.
I have asp.net button. When i chage the text in textbox and directly click the button, i get a confirm box from the onblur event. How can i make the button event to fire after answering the confirm box.
In other cases like press tab or clicking some other control is not a problem.

example code:
Textbox txt = new TextBox
txt.id = "txt";
txt.attributes.add("onblur","showmsg(this.id)")

Javascript:
function showmsg(id)
{
var x = document.getElementById(id).value;
if (x != "") {
var res = confirm("msg");
if (res == true) {
document.getElementById(id).value = x;
}
else {
document.getElementById(id).value = "";
}
}

}
AnswerRe: button click event after onblur event Pin
ToddHileHoffer4-Feb-09 6:54
ToddHileHoffer4-Feb-09 6:54 
GeneralRe: button click event after onblur event Pin
gbabu174-Feb-09 7:54
gbabu174-Feb-09 7:54 
GeneralRe: button click event after onblur event Pin
ToddHileHoffer4-Feb-09 8:26
ToddHileHoffer4-Feb-09 8:26 
GeneralRe: button click event after onblur event Pin
gbabu174-Feb-09 21:37
gbabu174-Feb-09 21:37 
GeneralRe: button click event after onblur event Pin
ToddHileHoffer5-Feb-09 2:23
ToddHileHoffer5-Feb-09 2:23 
Questionworking with web parts Pin
prasanth_pnp4-Feb-09 4:11
prasanth_pnp4-Feb-09 4:11 
AnswerRe: working with web parts Pin
ToddHileHoffer4-Feb-09 6:53
ToddHileHoffer4-Feb-09 6:53 
QuestionCalling __doPostBack() Pin
Radhakrishnan G.4-Feb-09 3:00
Radhakrishnan G.4-Feb-09 3:00 
AnswerRe: Calling __doPostBack() Pin
SeMartens4-Feb-09 3:19
SeMartens4-Feb-09 3:19 
GeneralRe: Calling __doPostBack() Pin
Radhakrishnan G.4-Feb-09 3:37
Radhakrishnan G.4-Feb-09 3:37 
GeneralRe: Calling __doPostBack() Pin
SeMartens4-Feb-09 3:52
SeMartens4-Feb-09 3:52 
AnswerRe: Calling __doPostBack() Pin
ToddHileHoffer4-Feb-09 6:53
ToddHileHoffer4-Feb-09 6:53 
GeneralRe: Calling __doPostBack() Pin
Radhakrishnan G.4-Feb-09 16:57
Radhakrishnan G.4-Feb-09 16:57 
GeneralRe: Calling __doPostBack() Pin
ToddHileHoffer5-Feb-09 2:29
ToddHileHoffer5-Feb-09 2:29 
QuestionHow to Transfer Data From SQL Server 2000 to MS Access using c# Pin
Vishal094-Feb-09 1:57
Vishal094-Feb-09 1:57 
AnswerRe: How to Transfer Data From SQL Server 2000 to MS Access using c# Pin
Manas Bhardwaj4-Feb-09 2:34
professionalManas Bhardwaj4-Feb-09 2:34 
AnswerRe: How to Transfer Data From SQL Server 2000 to MS Access using c# Pin
Paddy Boyd4-Feb-09 3:00
Paddy Boyd4-Feb-09 3: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.