Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6755725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:26:14+00:00 2026-05-26T13:26:14+00:00

Basically I have a gridview that I page through the server instead of in

  • 0

Basically I have a gridview that I page through the server instead of in memory, the problem is every row in the gridview has a url that I change with javascript, The server control I am using for this colum in the asp:HyperLinkField. The reason this must be done in javascript dynamic is because I must escape the parameter that is appended to url as a query parameter because it could have hash tags in them.So my javascript:

$('#<%=grid1.ClientID%> a').each( function(){
 var url=   $(this).attr("href");
    var parameter =//this line gets the parameter from the url
  url= "Page.aspx?param="+escape(parameter);
  $(this).attr("href", url);
});

This works on first page load with the urls that are initally stored in the gridview, but since I am doing paging on the server and using ajax(asp.net updatepanel) as well, so the next page doesnt have the javascript fired since it doesn’t refresh the page. I think jquery live would come into play here, but not sure if thats accurate because I think a event has to be triggered in order to initiate the live handler

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T13:26:15+00:00Added an answer on May 26, 2026 at 1:26 pm

    No, unfortunately live handlers won’t work for changing the actual href. However, if you change your approach somewhat, you can get the same effect.

    $('#<%=grid1.ClientID%> a').live('click', function(e) {
        e.preventDefault();
        var url = $(this).attr("href");
        var parameter =//this line gets the parameter from the url
        url = "Page.aspx?param="+escape(parameter);
        window.location = url;
    });
    

    So rather than changing the actual attribute on each link, you override the behavior associated with clicking that link.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Javascript object that basically represents a Row in an .NET GridView.
I basically have an entity that gets bound to my gridview and has a
Basically, I have a gridview that is opened in a new window from the
I have ModalPopupExtender that contains a UserControl that basically consists of a GridView and
I basically have a page which shows a processing screen which has been flushed
I am creating a GridView/DetailsView page. I have a grid that displays a bunch
I have a Gridview that has a timestamp as one of the rows. When
I have a UserControl, which is basically a wrapper for a GridView that needs
Basically in my in my aspx page I have a gridview which displays the
I have come across odd behavior involving nested gridview controls and row events. Basically

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.