Tagged Questions

1
vote
10answers
176 views

Writing Ajax code in JAVA

I want to write ajax code in java i.e. i want use the functionality of ajax without using ajax. I'm looking for some API of JAVA which can do so. Like we post data of a web page through JAVA program …
0
votes
0answers
74 views

HELP! “The custom error module does not recognize this error.”

(Please consider this a courtesy more so than a question, but still, please add your advice!) If you hit "The custom error module does not recognize this error" in Outlook Web Access, and you're in …
0
votes
4answers
107 views

redirecting postdata

Hi there. I've recently upgraded a page on our server from classic asp to asp.net The page recieves postdata and saves it to a file. The page is used by many of our clients and the url (to the asp …
1
vote
1answer
83 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 …
2
votes
4answers
2k views

How do I reload a page without a POSTDATA warning in Javascript?

I want to reload a page using: window.location.reload(true); But I receive the POSTDATA warning because the refresh function want to resend previous POST form data. How can I refresh my page …
0
votes
1answer
467 views

Using axWebBrowser control to capture page request and postdata.

I'm writing a small utility to capture all requests made to a web server from a windows application using the axWebBrowser control. So far I have the following working, as the user traverse the …
1
vote
2answers
2k views

How can I access PostData from WebBrowser.Navigating event handler?

I've got a windows form in Visual Studio 2008 using .NET 3.5 which has a WebBrowser control on it. I need to analyse the form's PostData in the Navigating event handler before the request is sent. …