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

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -