Click here to Skip to main content
15,885,067 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have a javascript function in that function i want to write a query string and i want to pass the three values and by using that three values i have to filter the grid in another page
the javascript function i used here is
C#
function OnSubjectClientSeriesClicked(sender, eventArgs)
      {
          try
          {
              var data = eventArgs.get_Category();
              var res = data.split(",");
            var str = "http://localhost/Reports.aspx?name=res[0]&CourseId=res[1]&SectionId=res[3]"
          }
          catch (e)
          {

          }

      }

can any one help me?
Posted

1 solution

 
Share this answer
 

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