Click here to Skip to main content
Sign Up to vote bad
good
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.

--------------------------------
HTML
-------------------------------
<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"></asp:Label></a></span>
 

 <div >
                    <asp:Button ID="btnEventTrack" Width="0" runat="server" OnClick="btnEventTrack_Click" />
                    <asp:HiddenField ID="hdnEventID" runat="server" />
                    <asp:HiddenField ID="hdnCategoryID" runat="server" />
                    <asp:HiddenField ID="hdnMemberID" runat="server" />
                    <asp:HiddenField ID="hdnAttributeA" runat="server" />
                    <asp:HiddenField ID="hdnAttributeB" runat="server" />
                    <asp:HiddenField ID="hdnAttributeC" runat="server" />
                    <asp:HiddenField ID="hdnAttributeD" runat="server" />
                    <asp:HiddenField ID="hdnAttributeE" runat="server" />
                    <asp:HiddenField ID="hdnRedirectPageUrl" runat="server" />
                    <asp:HiddenField ID="hdnTarget" runat="server" />
                    <asp:HiddenField ID="hdnIDRedirectPage" runat="server" />
                    <asp:HiddenField ID="hdnTestimonials" runat="server" />
                    <asp:HiddenField ID="hdnIPAddress" runat="server" />
                </div>
 
--------------------------------------------
JAVASCRIPT FUNCTION
--------------------------------------------
 
<script type="text/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);
}
 </script>
 
_______________________
EventTrack.js
_________________________
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#
________________
 
 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 Javascript & .Net Developer try this code and find the solution.it is challenging job for JavaScript & .Net developer.
 

Please Help me asap.
Thanks.
Posted 17-Jan-13 23:54pm
Edited 18-Jan-13 0:38am


1 solution

See window.status not working[^]
 
Cheers,
Edo
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Christian Graus 538
1 Ron Beyer 286
2 samadhan_kshirsagar 229
3 Tadit Dash 213
4 OriginalGriff 198
0 Sergey Alexandrovich Kryukov 7,017
1 Prasad_Kulkarni 3,815
2 OriginalGriff 3,557
3 _Amy 3,372
4 CPallini 3,010


Advertise | Privacy | Mobile
Web04 | 2.6.130619.1 | Last Updated 4 Feb 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid