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

ASP.NET

 
QuestionIssue for Quartz schedular Pin
Shirish kumar manda8-Aug-12 20:39
Shirish kumar manda8-Aug-12 20:39 
AnswerRe: Issue for Quartz schedular Pin
Eddy Vluggen9-Aug-12 0:54
professionalEddy Vluggen9-Aug-12 0:54 
Questioncms Pin
Member 93252298-Aug-12 20:10
Member 93252298-Aug-12 20:10 
SuggestionRe: cms Pin
Eddy Vluggen9-Aug-12 0:55
professionalEddy Vluggen9-Aug-12 0:55 
AnswerRe: cms Pin
Paul Conrad9-Aug-12 19:11
professionalPaul Conrad9-Aug-12 19:11 
Questionsetup hyperlink Pin
sc steinhayse8-Aug-12 8:01
sc steinhayse8-Aug-12 8:01 
AnswerRe: setup hyperlink Pin
R. Giskard Reventlov8-Aug-12 8:55
R. Giskard Reventlov8-Aug-12 8:55 
GeneralRe: setup hyperlink Pin
sc steinhayse8-Aug-12 9:31
sc steinhayse8-Aug-12 9:31 
GeneralRe: setup hyperlink Pin
R. Giskard Reventlov8-Aug-12 9:57
R. Giskard Reventlov8-Aug-12 9:57 
GeneralRe: setup hyperlink Pin
jkirkerx8-Aug-12 10:35
professionaljkirkerx8-Aug-12 10:35 
GeneralRe: setup hyperlink Pin
sc steinhayse8-Aug-12 11:05
sc steinhayse8-Aug-12 11:05 
GeneralRe: setup hyperlink Pin
jkirkerx8-Aug-12 12:14
professionaljkirkerx8-Aug-12 12:14 
GeneralRe: setup hyperlink Pin
sc steinhayse8-Aug-12 15:36
sc steinhayse8-Aug-12 15:36 
GeneralRe: setup hyperlink Pin
jkirkerx8-Aug-12 18:50
professionaljkirkerx8-Aug-12 18:50 
GeneralRe: setup hyperlink Pin
sc steinhayse9-Aug-12 3:51
sc steinhayse9-Aug-12 3:51 
GeneralRe: setup hyperlink Pin
jkirkerx9-Aug-12 6:40
professionaljkirkerx9-Aug-12 6:40 
1. Yes
2. Yes - Place the JQuery Script tag in the header to load it first, then create a separate file, and place the script tags at the bottom of the page. I think it has to be inside the body, but at the bottom to keep it clean

3. I just made that up, I figured the txtValue was important, so you would want to pass it as a querystring value

4. Load the Jquery in the head tag, after your css, and load your function file at the bottom of your page, within the body tag.

If your using master pages, that's ok, just use unique names for your js files such as

jquery.js
jquery.comment.sel.js
jquery.comment.form.js

If your using an update panel, you will need to load the jquery after each async postback the panel creates

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

});

function EndRequestHandler(sender, args) {

    initializeBinding();

}

function initializeBinding() {
    $(document).ajaxStart(function () {
        // Progress start
    });

    $(document).ajaxStop(function () {
       // progress stop 
    });
    
    // Validate the Part Number // Bind Something
    $('[id*="_txt_ProductEditor_Basic_PartNumber"]').blur(function () {
        check_PartNumber();
        return false;
    });
}

function check_PartNumber() {

    // Make sure we have a new product item by checking for a product id code
    m_ProductID_Length = $('[id*="_txt_ProductID"]').val().length;

}

GeneralOffice Tools in WebApplications Pin
indian1438-Aug-12 7:51
indian1438-Aug-12 7:51 
GeneralRe: Office Tools in WebApplications Pin
Wes Aday8-Aug-12 10:36
professionalWes Aday8-Aug-12 10:36 
Questioncode not reaching new web page Pin
dcof8-Aug-12 6:54
dcof8-Aug-12 6:54 
AnswerRe: code not reaching new web page Pin
R. Giskard Reventlov8-Aug-12 7:33
R. Giskard Reventlov8-Aug-12 7:33 
QuestionImage Extraction From Email Pin
Member 79838848-Aug-12 3:35
Member 79838848-Aug-12 3:35 
AnswerRe: Image Extraction From Email Pin
David Mujica8-Aug-12 5:00
David Mujica8-Aug-12 5:00 
GeneralUnable to Maintain griedview scroll position in to the Internet Explorer Print Preview Window Pin
debasishchowdhury19828-Aug-12 1:24
debasishchowdhury19828-Aug-12 1:24 
GeneralHow to bind datatable retrived from databse to Telerik Radtreeview/ radtreeList Pin
Agentdufffr7-Aug-12 19:51
Agentdufffr7-Aug-12 19:51 
AnswerRe: How to bind datatable retrived from databse to Telerik Radtreeview/ radtreeList Pin
Sandeep Mewara8-Aug-12 5:22
mveSandeep Mewara8-Aug-12 5:22 

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.