Tagged Questions

1
vote
1answer
218 views

Get value from session or request?

currently i have code that does var req = HttpContext.Current.Request; if(!isNull(req["title"], req["desc"], req["tags"])) { doSomthing();} on certain cases i move title into session data then ...
0
votes
1answer
26 views

Postdata confirmation box bypass?

Ik working on some project, and there is one main problem I have. I'm writing some code that is performing some actions on the web, like posting data. But what happens all the time: Javascript code on ...
0
votes
1answer
446 views

C# webbrowser postData -> default

I have a problem sending postData while user click on button on some webpage. It means that postData cannot be Null. Here is the code: webBrowser1.Navigate(e.Url, "_self", default(byte[]), headers); ...