I Have this HTML tag
<button type="submit" name=<%=s %> value=<%=s %>><%=s%></button>
The <%=s %> is a String stored in server with white spaces, like "file one".
My problem is in getting the button name. I'm using the following piece of code:
String btnName = request.GetParameter(s);
It is working, unless if the string presents spaces like "file one". In this case, the part " one" is ignored.
How can I get the whole String?
Thx.