Click here to Skip to main content
15,891,473 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDelete row not working Pin
byka3-Apr-12 1:49
byka3-Apr-12 1:49 
GeneralRe: Delete row not working Pin
Not Active3-Apr-12 2:09
mentorNot Active3-Apr-12 2:09 
QuestionCalling jquery method from another jquery method Pin
indian1432-Apr-12 15:08
indian1432-Apr-12 15:08 
AnswerRe: Calling jquery method from another jquery method Pin
Not Active2-Apr-12 15:57
mentorNot Active2-Apr-12 15:57 
GeneralRe: Calling jquery method from another jquery method Pin
indian1433-Apr-12 5:54
indian1433-Apr-12 5:54 
GeneralRe: Calling jquery method from another jquery method Pin
Not Active3-Apr-12 6:38
mentorNot Active3-Apr-12 6:38 
GeneralRe: Calling jquery method from another jquery method Pin
indian1433-Apr-12 6:58
indian1433-Apr-12 6:58 
AnswerRe: Calling jquery method from another jquery method Pin
jkirkerx3-Apr-12 14:21
professionaljkirkerx3-Apr-12 14:21 
There's a line of code you have to insert in order to execute jquery on a webform with an update panel. It's been awhile since I've any Jquery, so I might be off a bit on the sample, which is hand typed.

You should Google the Topic, there is a page out there with a more detailed description, took me a couple of days to figure it out.

$(document).ready(function () {
intialiateBinding();
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);

}

function EndRequestHandler(sender, args) {
initiateBinding();
}

// Bind your events and functions when the dom is ready, and handle the ajax and update panel
function initiateBinding() {
$document).ajaxStart(function () {
// Do something when ajax starts
});

$(document).ajaxStop(function () {
// do something when ajax stops
});

// Bind the function to the editbox, for a specific event of your choice
$('id*="_txt_CreateAccount_Name"]').blur(function () {

var txtBlur;
var txtError;
// get the data from the textbox, call your validation function and return the result

});
}

AnswerRe: Calling jquery method from another jquery method Pin
jkirkerx3-May-12 9:01
professionaljkirkerx3-May-12 9:01 
QuestionHosting a WCF service in IIS 7.5 ? Pin
helloworld20202-Apr-12 13:28
helloworld20202-Apr-12 13:28 
Generalquestion???? Pin
pty311-Apr-12 22:04
pty311-Apr-12 22:04 
GeneralRe: question???? Pin
Dalek Dave1-Apr-12 22:13
professionalDalek Dave1-Apr-12 22:13 
GeneralRe: question???? Pin
Not Active2-Apr-12 1:58
mentorNot Active2-Apr-12 1:58 
GeneralRe: question???? Pin
vvashishta24-Apr-12 19:47
vvashishta24-Apr-12 19:47 
QuestionAsp.net Pin
Kalariya Bhargav1-Apr-12 19:06
Kalariya Bhargav1-Apr-12 19:06 
QuestionGridView Pin
gaurav.shukla1431-Mar-12 0:31
gaurav.shukla1431-Mar-12 0:31 
AnswerRe: GridView Pin
Gopal Rakhal31-Mar-12 16:39
Gopal Rakhal31-Mar-12 16:39 
AnswerRe: GridView Pin
Ali Al Omairi(Abu AlHassan)31-Mar-12 20:18
professionalAli Al Omairi(Abu AlHassan)31-Mar-12 20:18 
AnswerRe: GridView Pin
vvashishta24-Apr-12 19:48
vvashishta24-Apr-12 19:48 
Questionhow to deal with change and forgot password.... Pin
Member 784947730-Mar-12 3:31
Member 784947730-Mar-12 3:31 
AnswerRe: how to deal with change and forgot password.... Pin
Dalek Dave30-Mar-12 4:14
professionalDalek Dave30-Mar-12 4:14 
GeneralRe: how to deal with change and forgot password.... Pin
Member 784947730-Mar-12 4:17
Member 784947730-Mar-12 4:17 
AnswerRe: how to deal with change and forgot password.... Pin
ZurdoDev30-Mar-12 4:20
professionalZurdoDev30-Mar-12 4:20 
AnswerRe: how to deal with change and forgot password.... Pin
JacquesDP30-Mar-12 4:32
JacquesDP30-Mar-12 4:32 
Questionhot spot updates Pin
shinojtks30-Mar-12 0:53
shinojtks30-Mar-12 0:53 

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.