Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Execute some action based on the value of a window in a table 1

Status
Not open for further replies.

ldevries

Programmer
Aug 29, 2001
4
0
0
I need to execute a different ASP depending on the 'value' of a window from a column in a table. I don't know what is the best way to do this. I don't even know how to do it at all. Help please.
 
I have a multi column table of data from an Oracle database. In column two the specific values will be different for each row. I need to 'launce' a different ASP with the same name as the column/row value.
 
Are you looking to have a link in colum 2 of the table that will point to the different asp pages?
 
I think...

if you set in a link in each cells of the table like this :
"xxx.asp?Row=3&Col=5" (row and cal depending on...)

In the xxx.asp file you easly detect Row and Col value like this :

col = Request.QueryString ("Col");
row = Request.QueryString ("Row");
(...)

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top