This topic is locked

hyperlink redirect

10/30/2008 9:41:26 PM
ASPRunnerPro General questions
L
lennyc11563 author

Hello,
I have 3 tables (each has a list Page)
Names

ACC

UTT
Names table fields inpart are "Case_number" and "Type"
I want to hyperlink to the list page url of (ACC) or (UTT) based on the field "Type".
Example in the names table if Case_number is 10 and field type is ACC, I want to hyperlink to the ACC listpage using the Case_number as the search perameter in the url or if Case_number is 10 and field type is UTT, I want to hyperlink to the UTT listpage using the Case_number as the search perameter in the url.
Can anyone assist on the custom code and where this code would be placed.
Thanks <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=10035&image=1&table=forumtopics' class='bbc_emoticon' alt=':)' />

Sergey Kornilov admin 10/31/2008

Set "View as" type of type field to Custom, post your app to Demo Account and send the URL to support@xlinesoft.com along with your order number. I'll help you with this.

N
nitescan 11/19/2008

I have a similar situation as this. Can you please post the solution?
Thanks.

Sergey Kornilov admin 11/19/2008

Nitescan,
Set "View as" type of type field to Custom, post your app to Demo Account and send the URL to support@xlinesoft.com along with your order number. I'll help you with this.

L
lennyc11563 author 11/19/2008

I have a similar situation as this. Can you please post the solution?

Thanks.


if rs("prdname")="ACC" then

strValue = "<a href=""http://192.107.0.154/test/ACC_view.asp?editid1="; & rs("casenumber") & """>Link</a>"

else

strValue = "<a href=""http://192.107.0.154/test/UTT_view.asp?editid1="; & rs("casenumber") & """>Link2</a>"

end if
This is for the view page. I tried the list page. It did work but it hung the list page if I wanted to click the Main tab and return.
View Page works fine. Hopefully this should help.