-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
Introduction:
A fact that you must always remember "never ever trust user inputs". An application that trusts user inputs may be easily vulnerable to XSS, XSRF, SQL Injection, etc attacks. XSS and XSRF are…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm having problems implementing google slideshow (http://www.google.com/uds/solutions/slideshow/index.html) to my web application by loading it using a jquery load() function.
index.html:
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<div id="moshe"></div>
<script…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a web service which runs with a HttpHandler class. In this class, I inspect the request stream for form / query string parameters. In some circumstances, it seemed as though these parameters weren't getting through. After a bit of digging around, I came across some behaviour I don't quite understand…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hallo,
I need to send a request to a page (POST) and then, I will read the XML and take the logical action.
How can I best send from my PHP request and then read the response.
Thnkas.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I got some sample code from the net here:
http://www.javadb.com/sending-a-post-request-with-parameters-from-a-java-class
That works fine. It sets the relevant headers in the response. However, what if I wanted to visit another url on the same site with those headers? If I create another URL object…
>>> More