0

I am working in Silverlight(out of browser mode) project. I have sent data from silverlight end to server end by using WebBrowser(query string). But query sting has capacity problem. You know that query string max length is 2048(IE). But I need to send huge data from client to server. Now what should I do to send huge data(greater than 2048) from silverlight to asp.net host. I do not want to .ashx. I want to use .aspx. thanks

Alberto
  • 15,626
  • 9
  • 43
  • 56

1 Answers1

0

The example is here Post data

You will need these includes:

    using System;
    using System.Collections.Specialized;
    using System.Net;
Community
  • 1
  • 1
dipak
  • 2,011
  • 2
  • 17
  • 24
  • Thanks.I have seen different ans. but not acceptable ans. in your link which answer should I follow? –  Feb 17 '14 at 10:56