0
votes
1answer
43 views
Get form-values from HTTP-get?
I'm using ASP.NET adn have the following code in my view:
<% using(Html.BeginForm("Search", "Home", FormMethod.Get)) { %>
<%= Html.TextBox("searchText") %>
<input type="submit" …
0
votes
4answers
610 views
Issue with passing querystring parameters via Http Get to an iframe in IE
Hi,
This is a follow up to my previous question: Problem passing parameters via Iframe in IE. Which was never solved.
Here's the core of it:
I'm trying to execute an HTTP GET from
my website …
0
votes
1answer
54 views
Need to include #anchor after querystring list
Hello,
Form is 'get' to a API which operates off of querystring.
One of the parameters is a PackageID which indicates a vacation package. In order for the packageID to appear I also need to append …
1
vote
6answers
797 views
Problem passing parameters via Iframe in IE
Hi,
I'm trying to execute an HTTP GET from my website to another website that is brought in via iframe.
On Firefox, you can see in the source that the correct url is in the iframe src along with …
1
vote
1answer
469 views
Add HTTP GET method to C# web service
I want to access one of my web service methods via HTTP GET, I've seen it done before but I can't figure out how to allow this access protocol on a VS2008 web service project.
I guess you have to …
3
votes
3answers
121 views
Model binding and GET requests?
There are tons of examples for model binding in html forms, but I'm wondering if its possible to, and if so how to, use model binding for ActionLinks/GET requests.
So, given the following model
…
1
vote
3answers
367 views
How to detect a firewall in Windows?
Hi,
My app needs to make a GET request to a website and I'd like to be able to know if it's being blocked by a firewall, and ask the user to add an exception.
How can I find out that my get request …
3
votes
6answers
3k views
HTTP GET in VB.NET
What is the best way to issue a http get in VB.net? I want to get the result of a request like http://api.hostip.info/?ip=68.180.206.184
1
vote
5answers
143 views
Editing and creating things with address bar code?
How do I make it so that I can make a thing at the end of the address where the .php is and then tell it to do certain things. For example pull up a page like this:
…
0
votes
1answer
80 views
Does DWR support method calls with GET?
Does DWR support method calls with GET?
So I can use http caching to cache the result of the call...
Is that possible?
0
votes
4answers
218 views
Can I run an HTTP GET directly in SQL under MySQL?
I'd love to do this:
UPDATE table SET blobCol = HTTPGET(urlCol) WHERE whatever LIMIT n;
Is there code available to do this? I known this should be possible as the MySQL Docs include an example of …
