Click here to Skip to main content
15,881,898 members
Please Sign up or sign in to vote.
2.00/5 (3 votes)
I Have tracked Event on button click so I call onclick event javascript:CallingEventTrackRelatedJoint for track the event & Redirect page using code behind C# function btnEventTrack_Click.I not specift href with a html tag due to track event.

I want to display href text in status bar & so i set window.status but it is not work.

how can I display href text in Status bar please help me.

Below is My Code.

ASP.NET
<span style="cursor: pointer"><a onclick="javascript:CallingEventTrackRelatedJoint('CONTRIBUTORS',0,'<%#Eval("ContributorID") %>' ,'','','','','ContributorProfile.aspx?ContributorID=<%#Eval("ContributorID") %>','');">
                                            <asp:Label ID="lblContributorName" runat="server" Text='<%#Eval("Name") %>' CssClass="lblContributorname">


I Have tracked Event on button click so I call onclick event javascript:CallingEventTrackRelatedJoint for track the event & Redirect page using code behind C# function btnEventTrack_Click.I not specify href with a html tag due to track event.

I want to display href text in status bar & so i set window.status but it is not work.

how can I display href text in Status bar please help me.

Below is My Code.

--------------------------------
HTML
-------------------------------
ASP.NET
<span style="removed: pointer">
     <a önclick="javascript:CallingEventTrackRelatedJoint('CONTRIBUTORS',0,'<%#Eval("contributorid=") %>' ,'','','','','ContributorProfile.aspx?ContributorID=<%#Eval(">
         <asp:Label ID="lblContributorName" runat="server" Text='<%#Eval("Name") %>' CssClass="lblContributorname">
     </a>
</span>


--------------------------------------------
JAVASCRIPT FUNCTION
--------------------------------------------

JavaScript
function CallingEventTrackRelatedJoint(pstrSectionName,pIntCategoryID, pStrAttributeA, pStrAttributeB, pStrAttributeC, pStrAttributeD, pStrAttributeE, pRedirectPageUrl, pTarget) {
 
    var TrackEventID = '';
    var pathArray = window.location.pathname.split( '/' );
    var newPathname = "";
    for ( i = 0; i < pathArray.length; i++ ) {
        if(pathArray[i]=='bethanys-story.aspx')
        {
           if(pstrSectionName == 'BOOKS')
           {
             TrackEventID = 30;
           }
           else if(pstrSectionName == 'CONTRIBUTORS')
           {
             TrackEventID = 31;
           }
 

        }
 
    }
window.status = pRedirectPageUrl;
 
    EventTrack(TrackEventID, pIntCategoryID, pStrAttributeA, pStrAttributeB, pStrAttributeC, pStrAttributeD, pStrAttributeE, pRedirectPageUrl, pTarget);
}


_______________________
EventTrack.js
_________________________
JavaScript
function EventTrack(pIntEventID, pIntCategoryID, pStrAttributeA, pStrAttributeB, pStrAttributeC, pStrAttributeD, pStrAttributeE, pRedirectPageUrl, pTarget) {
 
    document.getElementById('MainContent_hdnEventID').value = pIntEventID;
 
    document.getElementById('MainContent_hdnCategoryID').value = pIntCategoryID;
 
    document.getElementById('MainContent_hdnAttributeA').value = pStrAttributeA;
 
    document.getElementById('MainContent_hdnAttributeB').value = pStrAttributeB;
 
    document.getElementById('MainContent_hdnAttributeC').value = pStrAttributeC;
 
    document.getElementById('MainContent_hdnAttributeD').value = pStrAttributeD;
 
    document.getElementById('MainContent_hdnAttributeE').value = pStrAttributeE;
 
    document.getElementById('MainContent_hdnRedirectPageUrl').value = pRedirectPageUrl;
 
    document.getElementById('MainContent_hdnTarget').value = pTarget;
    document.getElementById('MainContent_btnEventTrack').click();
 
    return false;
 
}


________________
Code Behind C#
________________

C#
protected void btnEventTrack_Click(object sender, EventArgs e)
   {
       Decimal decMemberID = 0;
       CommonFunctions.TrackEvent(decMemberID, Convert.ToDecimal(hdnCategoryID.Value), Convert.ToDecimal(hdnEventID.Value), hdnAttributeA.Value, hdnAttributeB.Value, hdnAttributeC.Value, hdnAttributeD.Value, hdnAttributeE.Value);
       if (hdnRedirectPageUrl.Value != String.Empty)
       {
           Response.Redirect(hdnRedirectPageUrl.Value);
       }
   }


Please help me asap.
Posted
Updated 18-Jan-13 5:44am
v5
Comments
Marco Bertschi 18-Jan-13 9:23am    
use the code-tags and you might get an answer. 1-Vote from me.
gilvani 24-Jan-13 8:30am    
window.status is deprecated and work only in IE

1 solution

Window.status is not supported cross browser!

NOTE: most modern browsers don't allow it any more as it was abused to hide link destinations.

Cheers,
Edo
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900