Rank: Newbie Groups: Member
Joined: 2/9/2021 Posts: 1
|
//Create a new request object request = new Request(ModelConstDefs.MapUrl);
//Add one or more post data item request.PostData.AddValue("JsonData", jsonString);
//Set method to POST request.Method = "POST";
//Load it into the WebView var result = webControl1.WebView.LoadRequest(request);
====================================
I have this code.
But, 'WebView.LoadRequest' worked nothing.
I hope 'WebView.LoadRequest' works like that webView are Displayed.
I have to use a method = post.
So, check my question, please.
Thanks.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi, We are not aware of such issues. You can try to use a traffic monitor such as Fiddler to see if indeed the request has been sent. If the request has been sent, then you can check the response from the server and see if you can find the root of the problem. If the request is not sent at all, then you can try to isolate the problem into a test project and then send the test project to us. We will investigate further as soon as we have the test project. See here for more information on how to send the test project to us: https://www.essentialobjects.com/forum/test_project.aspxThanks!
|