Posted by Cranio on 06/18/05 12:57
Mitja wrote:
>> I have this database table admin page... every row of the table has a
>> clickable link to select it, passing the primary key ID via querystring
>> to the SAME page... If this ID is not undefined, the page will also
>> display a form to change the field values and update the DBso the
>> HREF="#" will REFRESH the page in IE and NS,
>> passing this data.
> You probably don't need javascript, the page show.asp should generate
> code like above that links to itself with various
> (server-side-)precomputed parameters.
That's right... I just wrote 1 min ago a workaround that builds links like
"<A HREF='" + Request.ServerVariables("URL") + "?" + pk + "=" + pkvalue
+ "'" ... +"</a>
Works for GET ... but what about POST data?
[Back to original message]
|