Ask a Question related to ASP Database, Design and Development.
-
viktor #1
Help with hyperlink
Hi
I query the db and populate the results into table. After that I want to
keep query db but I need to get value from the table. Basically I need some
of the fields to be like hyper link and use this value like parameter in my
next query.
Is there a way to do this?
THX
viktor Guest
-
hyperlink
In my older version of publisher I could just make a link to the pdf file on my hard drive, and when I uploaded it to my ftp site the link would... -
No hyperlink
The help function directs my to go to "insert" and choose "hyperlink" . These items do not exist on the tool bar, anywhere. Whats going on? Am I... -
asp:hyperlink
Does anyone know when you NEED to use asp:HyperLink versus a regular Href? An example would be greatly appreciated. -
hyperlink bug?!
Hi There, Director seems to have a problem return dynamic hyperlinks such as the following: ... -
Dynamically Hyperlink and Event Handler for the Hyperlink ?
Hi, I´m creating an Hyperlink dynamically for my DataGrid: HyperLink hl = new HyperLink(); hl.Text = "MyLink"; hl.NavigateUrl = "#";... -
Ken Schaefer #2
Re: Help with hyperlink
<a href="page2.asp?ID=<%=Server.URLEncode(objRS("some Field"))%>">click
here</a>
Cheers
Ken
"viktor" <serguienkov@hotmail.com> wrote in message
news:e115YnClDHA.2416@TK2MSFTNGP10.phx.gbl...
: Hi
: I query the db and populate the results into table. After that I want to
: keep query db but I need to get value from the table. Basically I need
some
: of the fields to be like hyper link and use this value like parameter in
my
: next query.
: Is there a way to do this?
: THX
:
:
Ken Schaefer Guest
-
viktor #3
Re: Help with hyperlink
thanks
"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
news:uuOnytFlDHA.1408@TK2MSFTNGP11.phx.gbl...> <a href="page2.asp?ID=<%=Server.URLEncode(objRS("some Field"))%>">click
> here</a>
>
> Cheers
> Ken
>
>
> "viktor" <serguienkov@hotmail.com> wrote in message
> news:e115YnClDHA.2416@TK2MSFTNGP10.phx.gbl...
> : Hi
> : I query the db and populate the results into table. After that I want to
> : keep query db but I need to get value from the table. Basically I need
> some
> : of the fields to be like hyper link and use this value like parameter in
> my
> : next query.
> : Is there a way to do this?
> : THX
> :
> :
>
>
viktor Guest
-
viktor #4
Re: Help with hyperlink
ok but how can i make my table field to be hyperlink and use this value for
parameter
"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
news:uuOnytFlDHA.1408@TK2MSFTNGP11.phx.gbl...> <a href="page2.asp?ID=<%=Server.URLEncode(objRS("some Field"))%>">click
> here</a>
>
> Cheers
> Ken
>
>
> "viktor" <serguienkov@hotmail.com> wrote in message
> news:e115YnClDHA.2416@TK2MSFTNGP10.phx.gbl...
> : Hi
> : I query the db and populate the results into table. After that I want to
> : keep query db but I need to get value from the table. Basically I need
> some
> : of the fields to be like hyper link and use this value like parameter in
> my
> : next query.
> : Is there a way to do this?
> : THX
> :
> :
>
>
viktor Guest
-
Ken Schaefer #5
Re: Help with hyperlink
Your table field is not a hyperlink. A hyperlink is created by generating
the appropriate HTML, eg:
<a href="theNextPage.ext?var=value">click</a>
the href="" bit is the page that the link goes to
the ?var=value bit is dynamic data you wish to pass to the next page
the "click" is the text that is displayed
If you want to generate the links based on the values in the database, then
you can do:
<a href="<%=objRS("myField")%>">click</a>
This is rudimentary HTML (not ASP related) - all you need to do is generated
the appropriate HTML markup for the browser to understand.
Cheers
Ken
"viktor" <serguienkov@hotmail.com> wrote in message
news:%23tLYYYLlDHA.2328@TK2MSFTNGP10.phx.gbl...
: ok but how can i make my table field to be hyperlink and use this value
for
: parameter
: "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
: news:uuOnytFlDHA.1408@TK2MSFTNGP11.phx.gbl...
: > <a href="page2.asp?ID=<%=Server.URLEncode(objRS("some Field"))%>">click
: > here</a>
: >
: > Cheers
: > Ken
: >
: >
: > "viktor" <serguienkov@hotmail.com> wrote in message
: > news:e115YnClDHA.2416@TK2MSFTNGP10.phx.gbl...
: > : Hi
: > : I query the db and populate the results into table. After that I want
to
: > : keep query db but I need to get value from the table. Basically I need
: > some
: > : of the fields to be like hyper link and use this value like parameter
in
: > my
: > : next query.
: > : Is there a way to do this?
: > : THX
: > :
: > :
: >
: >
:
:
Ken Schaefer Guest



Reply With Quote

