[htmltmpl] RE: re: h::t on different platforms

2003-10-28 Thread Jeff Pelkey
Howdy, Actually all Windows platforms (I am assuming Server 2003 is the same) only allow you to Get the ProcessID. Are you trying to kill the process or are you trying to change a process flag or something? Why are you trying to change the PID? What does that allow you to do on other O/S's? I

[htmltmpl] No Output from H:T:E in ASP Pages.

2003-09-22 Thread Jeff Pelkey
Howdy! I had a few spare cycles waiting for another program to complete and started reading about using Perlscript in ASP pages. I tested some code and found that H:T with a template worked just great! :) Then I simply change the code to reference H:T:E instead and the page did not error out, bu

RE: [htmltmpl] digest, Vol 1 #253 - Syntax Errors

2003-08-21 Thread Jeff Pelkey
EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 6:51 PM To: Jeff Pelkey Cc: '[EMAIL PROTECTED]' Subject: Re: [htmltmpl] RE: Html-template-users digest, Vol 1 #253 - 2 msgs On Wednesday, August 20, 2003, at 09:07 AM, Jeff Pelkey wrote: > Howdy Chisel, > > Thanks for the input!

[htmltmpl] RE: Html-template-users digest, Vol 1 #253 - 2 msgs

2003-08-20 Thread Jeff Pelkey
Howdy Chisel, Thanks for the input! The $$text_ref may have been too obvious. I have used [EMAIL PROTECTED] and $%text_ref to dereference arrays and hashes before but had never thought of using "$$text_ref". As it turns out, after I got back yesterday of several days off things worked fine. I

[htmltmpl] Fun with Filters.

2003-08-14 Thread Jeff Pelkey
Howdy! I'm having a time using filters and not sure if what I am doing is wrong (if anything). I am just using the sample in the documentation. I should also mention the standard caveats: I searched the Archives first and the examples looked like mine. Also, I should mention that I am using Win

[htmltmpl] First/Last Page in H:P

2003-01-30 Thread Jeff Pelkey
Howdy!   Is there a way to add a first and last page button to HTML::Pager?  If so, does anyone have any code snippets to share?  I have a database with several hundred entries and sometimes you want to go directly to the end of the database to view the latest entries.    I searched th

RE: [htmltmpl] Running into problems IIS 5.0 (Win2K) and H:T:Expr

2003-01-22 Thread Jeff Pelkey
January 21, 2003 10:29 PM To: Jeff Pelkey Cc: html-template-users Subject: Re: [htmltmpl] Running into problems IIS 5.0 (Win2K) and H:T:Expr On Tue, 21 Jan 2003, Jeff Pelkey wrote: > I just moved up to IIS 5.0 on a Win2K machine and I am having problems > running using H:T:Expr. I am curre

[htmltmpl] Running into problems IIS 5.0 (Win2K) and H:T:Expr

2003-01-21 Thread Jeff Pelkey
Howdy! I just moved up to IIS 5.0 on a Win2K machine and I am having problems running using H:T:Expr. I am currently running H:T v2.6 and H:T:E v.04. The code is the same except for adding "::Expr" then the code gives a "Cannot find server or DNS Error" message. I don't even use any of Expr's fun

Re: [htmltmpl] HTML-Pager and Netscape

2002-12-18 Thread Jeff Pelkey
Howdy Roger! I'll be the first to admit I'm not the brightest bulb in the box! But I feel fortunate that so many other people who are so very talented and have shared there creations with the general public like me. My hat's off to you folks! >Why on earth do it the long way round? STDOUT is de

Re: Re: [htmltmpl] HTML-Pager and Netscape

2002-12-17 Thread Jeff Pelkey
ITH BOTH BROWSERS. print "Content-type: text/html\n\n"; ## Send Only the template output. -- THIS ONLY WORKS WITH IE CORRECTLY. $tmpl->output(print_to => *STDOUT);   I am not sure if this is only seen in IIS or not and it's not that big of a deal.  I just wanted to note this for others using IIS and H:T.   -- Jeff Pelkey

[htmltmpl] HTML-Pager and Netscape

2002-12-12 Thread Jeff Pelkey
version 4.78 - A "Save As" dialog box appears. Version 6.2 - outputs the bottom of the code and keeps running indefinitely.   Any thoughts on this would be greatly appreciated.  - Jeff Pelkey

RE: [htmltmpl] Syntax weirdness in NT/IIS on include(d) templates

2002-09-20 Thread Jeff Pelkey
lp! -- Jeff. -Original Message- From: Sam Tregar [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 10:45 PM To: Jeff Pelkey Cc: html-template-users Subject: Re: [htmltmpl] Syntax weirdness in NT/IIS on include(d) templates On Thu, 19 Sep 2002, Jeff Pelkey wrote: > After sev

[htmltmpl] Re: Syntax weirdness in NT/IIS on include(d) templates

2002-09-19 Thread Jeff Pelkey
Howdy Roger!   >Erm... how about using "   Return Home   Return" Home   *** WORKS GREAT! ***     Return Home   Return" Home   Thanx - Jeff.   PS - I'll try to send this one w/o all the style tag garbage at the end - sorry!

[htmltmpl] Syntax weirdness in NT/IIS on include(d) templates

2002-09-19 Thread Jeff Pelkey
Howdy!   After several go-rounds of testing, I believe I have found a small quirk worth noting, but doesn't necessarily need fixing.  If you use the

[htmltmpl] Passing a CGI param from Page to Page.

2002-08-29 Thread Jeff Pelkey
to the template.   The first page displays correctly, but the following pages contain all the data in the table.  Is there something I am doing wrong or need to change?   MTIA - Jeff Pelkey

[htmltmpl] RE: Re: ?'s regarding DBI and HTML::Pager

2002-08-19 Thread Jeff Pelkey
> I suggest you use fetchrow_arrayref or fetchall_arrayref. The output from > the latter is the same as from selectall_arrayref, but you get to use > cacheing, placeholders, and so on, as normal. > > Roger Thanx Roger! I got that to work and once I saw how that worked, I figured out how to get

[htmltmpl] ?'s regarding DBI and HTML::Pager

2002-08-18 Thread Jeff Pelkey
  get_data_callback => $get_data_sub,    rows => 52,    page_size => 5       );    print $pager->output;   Any help would be greatly appreciated. Thanx, Jeff Pelkey