Click here to Skip to main content
15,897,032 members
Please Sign up or sign in to vote.
0.00/5 (No 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.

--------------------------------
HTML
-------------------------------
XML
<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
Updated 18-Jan-13 0:38am
v3

1 solution

See window.status not working[^]

Cheers,
Edo
 
Share this answer
 

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


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