I use very simple way to post data from my desktop application to my website, like this one:
private void button4_Click(object sender, EventArgs e)
{
webBrowser1.Navigate("http://mywebsite.com?myvariable=" + myurlstringdata);
}
BUT, i face a problem when my url string is very long with too many querystring items when i'm filling in a form for instance.
NOW, i'm wondering if there is a better way for that (to post not using question string as it is in html form <form action="website" method="get">
, but using <form action="website" method="post">
)