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 8681729
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T21:35:09+00:00 2026-06-12T21:35:09+00:00

I use PageMethods object to call a codebehind method in asp.net. I can send

  • 0

I use PageMethods object to call a codebehind method in asp.net. I can send and receive parameters like string, int etc. But i must send a javaScript object to codeBehind. How can i parse the parameter and get data from codeBehind? I think i must use JSON parser but i wonder if there is an easy way, or if .net framework has Json parser (or like JSON) ?

    <script type="text/javascript" language="javascript">
        function test(idParam, nameParam) {
            var jsonObj = { id: idParam, name: nameParam };

            PageMethods.testMethod(jsonObj,
                function (result) { alert(result) });
        }
    </script>
    [WebMethod()]
    public static string testMethod(object param)
    {
        int id = 1;//I must parse param and get id
        string name = "hakan"; //I must parse param and get name

        return "Id:" + id + "\n" + "Name:" + name + "\n" + "Date:" + DateTime.Now;
    }
  • 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-06-12T21:35:10+00:00Added an answer on June 12, 2026 at 9:35 pm

    Try this (you can add System.Collections.Generic as a using clause to clean it up more):

    [WebMethod()]
    public static string testMethod(object param)
    {
        System.Collections.Generic.Dictionary<String, Object> Collection;
        Collection = param as System.Collections.Generic.Dictionary<String, Object>;
    
        int id = (int) Collection["id"];
        string name = Collection["name"] as String;
    
        return "Id:" + id + "\n" + "Name:" + name + "\n" + "Date:" + DateTime.Now;
    }
    

    [Edit] Even simpler:

    // using System.Collections.Generic;
    [WebMethod()]
    public static string testMethod(Dictionary<String, Object> Collection)
    {       
        int id = (int) Collection["id"];
        string name = Collection["name"] as String;
    
        return "Id:" + id + "\n" + "Name:" + name + "\n" + "Date:" + DateTime.Now;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can I use PageMethods in .net1.1?I have to call a server side method call
I am building a dynamic partial load asp.net page, I would like to use
I know that when declaring a page method in ASP.NET, I can specify a
I have found ASP.Net PageMethods very handy and easy to use, but I have
I use System.Web.Services.WebMethodAttribute to make a public static method of an ASP.NET page callable
I am trying to use jQuery to directly call ASP.NET AJAX page methods. I'm
I need to call ASP.Net server side code from the client. Because I'm in
I have a web method: [System.Web.Services.WebMethod] public static string getCharacterstics(int product_id, int lang_id) {
I use ASP.Net and a static WebMethod / PageMethod to do some async work.
i am using fullcalendar with ASP.net(C#) in my web-application so i made use of

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.