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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T17:26:20+00:00 2026-05-31T17:26:20+00:00

JavaScriptSerializer jss = new JavaScriptSerializer(); var seferim = jss.Serialize(sefer); string asds = seferim.ToString(); asds

  • 0
JavaScriptSerializer jss = new JavaScriptSerializer();
                var seferim = jss.Serialize(sefer);
                string asds = seferim.ToString();
                asds = HttpUtility.HtmlEncode(asds);

function otobusGetir(id, b, i) {
        id = encodeURI(id);

        $.ajax({
            type: 'POST',
            url: 'BiletSatis.aspx/Getir',
            contentType: 'application/json;charset=utf-8',
            dataType: 'json',
            data: '{"id":"' + id + '","Binis":"' + b + '","Inis":"' + i + '"}',
            success: function () { },
            error: function () {  }
        })

[WebMethod]
public static string Getir(string id, string Binis, string Inis)
{
string a = id;
string b = HttpUtility.HtmlDecode(id);
return null;
}

The problem is javascript function cannot take parameter(Uncaught SyntaxError: Unexpected token ILLEGAL) which is serialized.How i can totally done tihs job?

The problem is that this is not working while javascript function run it can not take argument,how can totaly don this job

  • 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-31T17:26:21+00:00Added an answer on May 31, 2026 at 5:26 pm

    Try like this:

    function otobusGetir(id, b, i) {
        $.ajax({
            type: 'POST',
            url: 'BiletSatis.aspx/Getir',
            contentType: 'application/json;charset=utf-8',
            dataType: 'json',
            data: JSON.stringify({ id: id, Binis: b, Inis: i }),
            success: function () { },
            error: function () {  }
        });
    }
    

    and to call the function:

    otobusGetir(123, 'foo bar', 'baz');
    

    and the page method:

    [WebMethod]
    public static string Getir(string id, string Binis, string Inis)
    {
        // don't use any Html decoding here. The parameters will
        // already be properly formatted so you can use them directly
    
        return null;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

JavaScriptSerializer oSerializer = new JavaScriptSerializer(); object i = 3; string sJSON = oSerializer.Serialize(i); //3
I tried: NameValueCollection Data = new NameValueCollection(); Data.Add(foo,baa); string json = new JavaScriptSerializer().Serialize(Data); it
My C# web method uses JavaScriptSerializer to return a JSON object in string format
I'd like to override the Serialize methods of the ASP.NET JavaScriptSerializer class. Nothing too
JavaScriptSerializer s = new JavaScriptSerializer(); result = s.Deserialize<Hashtable>(data); Error is thrown if data is
Today I learned this JavaScriptSerializer ser = new JavaScriptSerializer(); Foo foo = ser.Deserialize<Foo>(jsonSz); I
I have a list of KeyPairValue wich I serialize in Json Object using JavaScriptSerializer.
The .NET Framework ships with System.Runtime.Serialization.Json.DataContractJsonSerializer and System.Web.Script.Serialization.JavaScriptSerializer , both of which de/serialize JSON.
I have a object that I serialize with the JavaScriptSerializer and output it in
I use the JavaScriptSerializer class of ASP.net to serialize my object and return it

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.