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

ASP.NET

 
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 
QuestionMultlingual website in asp.net Pin
delhiegle7-Aug-12 19:31
delhiegle7-Aug-12 19:31 
AnswerRe: Multlingual website in asp.net Pin
Sandeep Mewara8-Aug-12 5:17
mveSandeep Mewara8-Aug-12 5:17 
GeneralRe: Multlingual website in asp.net Pin
delhiegle11-Aug-12 9:43
delhiegle11-Aug-12 9:43 
GeneralRe: Multlingual website in asp.net Pin
RichardGrimmer5-Sep-12 4:43
RichardGrimmer5-Sep-12 4:43 
QuestionConsuming WCF Service in ASP.Net application Pin
indian1437-Aug-12 13:27
indian1437-Aug-12 13:27 
AnswerRe: Consuming WCF Service in ASP.Net application Pin
Abhinav S7-Aug-12 17:33
Abhinav S7-Aug-12 17:33 
AnswerRe: Consuming WCF Service in ASP.Net application Pin
jkirkerx7-Aug-12 18:26
professionaljkirkerx7-Aug-12 18:26 
GeneralCheckedChanged doesn't fires Pin
Kujtim Hyseni7-Aug-12 4:23
Kujtim Hyseni7-Aug-12 4:23 

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.