I can already send something in the querrystring:
<a href='Exibe.aspx?var='lalala''>
but i'd like to send a string instead of lalala, and when i try to concatenate normally in the response.write with "+" signs, it just doesn't. it creates the url only with the part before the "+".
facts: the string has a value i can concatenate it with other string and it works i can use the querrystring with something i write
thank you
UPDATE: code that doesn't work:
responde.write("<a href='Exibe.aspx?nome='" + nome(0) + "''> click here </a>");
code that works but doesn't do what i want (sends "VALUE" not my string)
responde.write("<a href='Exibe.aspx?nome='VALUE''> click here </a>");
i'm really new at this.. sorry