Home > Archive > ASP > January 2007 > Allow Users Of Website To Create Their Own Hyperlinks On A Page
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Allow Users Of Website To Create Their Own Hyperlinks On A Page
|
|
| Dave Marden 2007-01-20, 6:56 pm |
| Is it possible to allow a person whom navigates to a particular page to type
in a URL to a website they visit often, and have it be treated like code on
the page itself for them to use it as a hyperlink?
If so, any suggestions would be appreciated.
Thanks,
Dave Marden
| |
| Evertjan. 2007-01-20, 6:56 pm |
| Dave Marden wrote on 20 jan 2007 in
microsoft.public.inetserver.asp.general:
> Is it possible to allow a person whom navigates to a particular page
> to type in a URL to a website they visit often, and have it be treated
> like code on the page itself for them to use it as a hyperlink?
Not with serverside code, classic ASP is serverside code.
A user cannot type serverside.
> If so, any suggestions would be appreciated.
Please ask a clientside NG.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
| |
| Leythos 2007-01-20, 6:56 pm |
| In article <Xns98BEE78B96463eejj99@194.109.133.242>,
exjxw.hannivoort@interxnl.net says...
> Dave Marden wrote on 20 jan 2007 in
> microsoft.public.inetserver.asp.general:
>
>
> Not with serverside code, classic ASP is serverside code.
>
> A user cannot type serverside.
>
>
> Please ask a clientside NG.
Then how when we allow users to enter notes, links, pictures, etc... are
we able to allow users to update the content of websites running on the
servers?
All you need is a admin page (or what you want to call it) to allow
users to add content based on where you are willing to allow them to put
it.
--
spam999free@rrohio.com
remove 999 in order to email me
| |
| Evertjan. 2007-01-20, 6:56 pm |
| Leythos wrote on 20 jan 2007 in microsoft.public.inetserver.asp.general:
> In article <Xns98BEE78B96463eejj99@194.109.133.242>,
> exjxw.hannivoort@interxnl.net says...
>
> Then how when we allow users to enter notes, links, pictures, etc... are
> we able to allow users to update the content of websites running on the
> servers?
>
> All you need is a admin page (or what you want to call it) to allow
> users to add content based on where you are willing to allow them to put
> it.
Whell, if you think you know,
show the serverside code to answer the OP's Q.
Perhaps the OP is content with your "yes"?
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
| |
| Leythos 2007-01-22, 7:57 am |
| In article <Xns98BEEF5CEE622eejj99@194.109.133.242>,
exjxw.hannivoort@interxnl.net says...
> Leythos wrote on 20 jan 2007 in microsoft.public.inetserver.asp.general:
>
>
> Whell, if you think you know,
> show the serverside code to answer the OP's Q.
>
> Perhaps the OP is content with your "yes"?
Are you saying that one can't write code to accept input from the user
and store the information on the webserver than can be shown on the
revised web page?
--
spam999free@rrohio.com
remove 999 in order to email me
| |
| ThatsIT.com.au 2007-01-22, 7:57 am |
| Make a form with 2 textboxes
One for the URL one for the link text
Post to a asp page and enter into a database, then retive from database and
create links like
response.write "<a href='"& rs("url") &"'>"& rs("text") &"</a>"
i
"Dave Marden" <someone@microsoft.com> wrote in message
news:%23$tFP5MPHHA.1380@TK2MSFTNGP05.phx.gbl...
> Is it possible to allow a person whom navigates to a particular page to
> type in a URL to a website they visit often, and have it be treated like
> code on the page itself for them to use it as a hyperlink?
>
> If so, any suggestions would be appreciated.
>
> Thanks,
> Dave Marden
>
|
|
|
|
|