Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
7k views

How to get parameters from the URL with JSP

In JSP how do I get parameters from the URL? For example I have a URL www.somesite.com/Transaction_List.jsp?accountID=5 I want to get the 5. Is there a request.getAttribute( "accountID" ) like there ...
2
votes
4answers
543 views

Why is request method send to web server called GET and POST?

I guessed that the name of each of the request method has a relationship with the operations they performed in some manner. But I can't get it! Detials: GET means posted argument are showed in the ...
2
votes
1answer
2k views

Html.BeginForm loses routeValues with FormMethod.GET

I have noticed what Html.BeginForm() method encodes supplied routeValues into action attribute of FORM tag. This works well with POST method. But if method is GET all parameters in action URL are ...
1
vote
3answers
185 views

GET method in php clean URL

I have successfully created clean url for my project.. now what i need to do is add variables to URL.. localhost/user1/file?action=add localhost/user2/file2?action=delete where user and file are ...
1
vote
2answers
226 views

Is there a JQuery or JS equivalent to PHP's $name = $_GET['name']

I'm trying to figure out a way to read GET method information from a form with javascript. Our IT department has our servers on lockdown, and as the web team we can only use javascript to accomplish ...
1
vote
3answers
80 views

If XmlException.SourceUri is read-only, what good is it?

I have a couple places in my code where it throwing a new System.Xml.XmlException seems appropriate. I could just do throw new XmlException("Your XML sucks go fix it then try again."); But I ...
0
votes
3answers
38 views

GetMethod for static extension method howto

I've got an extension method: public static class StringEx { public static bool Like(this string a, string b) { return a.ToLower().Contains(b.ToLower()); } } How to reflect it ...
0
votes
4answers
760 views

Having problem with Try-Catch block in a Java I/O program

I have created the output for a program that allows a user to input their employee name and number and then their hourly wage and their total number of regular hours and overtime hours. This is my ...
0
votes
1answer
386 views

comet callback-polling and jetty-cometd implementation

I am using the cometd implementation that comes with the jetty server. I'd like to use the callback-polling transport, but when I try to connect to the comet server from javascript (note that the html ...