S
Seguros Catatumbo
Hi guys, i have a question. On old asp, if i did this:
<input type="text" name="myname" value="1">
<input type="text" name="myname" value="2">
asp would make request("myname")="1, 2"
on asp.net, request["myname"] is "1,2" (without the space)
The problem with this is that i am trying to pass multiple currency
values , which have commas inside them. On old asp this wasn't a
problem since i splitted the string with ", " but on asp.net i need to
do "," which of course wouldn't work properly.
Is there a way i can make asp.net use a different separator? Currently
i am employing a hack, replacing the commas with asterisks and then
change then back once read...
<input type="text" name="myname" value="1">
<input type="text" name="myname" value="2">
asp would make request("myname")="1, 2"
on asp.net, request["myname"] is "1,2" (without the space)
The problem with this is that i am trying to pass multiple currency
values , which have commas inside them. On old asp this wasn't a
problem since i splitted the string with ", " but on asp.net i need to
do "," which of course wouldn't work properly.
Is there a way i can make asp.net use a different separator? Currently
i am employing a hack, replacing the commas with asterisks and then
change then back once read...