Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...keep up the good work with this forum, I think this is the best one around. ...you actually try to help people learn for themselves. ...I commend you on providing a very good, open learning atmosphere, where usually egos are left behind..."

Geography

Where in the world do Tek-Tips members come from?
rawatds (Programmer)
14 Jun 04 12:02
How can i give the URL for my HTP procedure to dispaly a page .

 Like i created a sample HTP code as :
create or replace procedure test IS
  BEGIN
  htp.htmlopen ;
  htp.headopen ;
  htp.title('RAWAT Example ') ;
  htp.headclose  ;
  htp.htmlclose ;
end test ;
/

Now i want to display this in a page . Where i have to define the URL for the page in the procedure .

 Thanx in advance
  Rawat
carp (MIS)
14 Jun 04 12:36
You don't define the URL in the procedure.  It will display in the browser from which the procedure is invoked.
rawatds (Programmer)
14 Jun 04 12:47
Thanx Carp for the reply
  actually i am new to Web technology
 so can u please tell me a small syntax how i will invoked this procedure from the browser.

Thanx in advance
 rawat
carp (MIS)
14 Jun 04 16:03
The URL is determined by the web server that interfaces with your database, as well as the DAD you have set up for your interface.  For instance, if your web server name is rawats_server and your DAD is rawats_dad, then the call might look something like:

http://rawats_server/pls/rawats_dad/test
rawatds (Programmer)
15 Jun 04 13:17
Hi carp
 I did some changes in the format, now i wrote the code as :

<html>
<head>
<title>Rawat Testing </title>
</head>
<body>
<h1> Rawat </h1>
<p> <a href="http://dynfmm01.nat.bt.com:60343/pls/pew/pmlogon"></a> test1 </p>
</body>
</html>

The hyperlink should work in this case as i have set the the URL :
 http://dynfmm01.nat.bt.com:60343/pls/pew/pmlogon ,   
according to my Web server and DAD .

 THe above URL http://dynfmm01.nat.bt.com:60343/pls/pew/pmlogon is working when typing alone , but with my above mentioned HTML code the anchor is not coming in TEST1 which will redirect to me to the page .
 
 In fact the result is coming as :
    RAWAT ( Bold)
  test1 ( here no anchor is coming )


 Please suggest
Thanx in advance
carp (MIS)
15 Jun 04 14:17
Are you sure you don't want the code to look like

CODE

<a href="http://dynfmm01.nat.bt.com:60343/pls/pew/pmlogon">> test1 </a>
instead of

CODE

<a href="http://dynfmm01.nat.bt.com:60343/pls/pew/pmlogon"></a> test1

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close