c# - Posting data from desktop application to website page -


i use simple way post data desktop application website, one:

private void button4_click(object sender, eventargs e) {    webbrowser1.navigate("http://mywebsite.com?myvariable=" + myurlstringdata); } 

but, face problem when url string long many querystring items when i'm filling in form instance. now, i'm wondering if there better way (to post not using question string in html form <form action="website" method="get">, using <form action="website" method="post">)


Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c++ - CryptStringToBinary API behavior -