[wdvltalk] RE:Re: was css now Wooo-Hooo

2003-07-31 Thread Jurgen Haug
Hello Jan, Thursday, July 31, 2003, 9:49:46 PM, you wrote: 1. I'm using the background: url() as you did, but I'm wondering if that automatically sets the imagelink below the textlink and that's why I can see the textlink? 2. I've tried using using other css properties, and variations

[wdvltalk] RE: Help getting auto-increment field data in SQL

2003-07-31 Thread Diane Schips
Still having problems. If I add the SET NOCOUNT ON, it won't allow me to add a new record! Diane -Original Message- From: Linden, Todd [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 1:30 PM To: [EMAIL PROTECTED] Subject: [wdvltalk] RE: Help getting auto-increment field data in

[wdvltalk] RE: Help getting auto-increment field data in SQL

2003-07-31 Thread Linden, Todd
What does it do if you take the NOCOUNT off? -Original Message- From: Diane Schips [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 7:30 PM To: [EMAIL PROTECTED] Subject: [wdvltalk] RE: Help getting auto-increment field data in SQL Still having problems. If I add the SET NOCOUNT

[wdvltalk] SQL POINTERS

2003-07-31 Thread Erich D. Mansell
I am trying to establish an alert system that will notify userA by email if a system is failing or userB if the system did not bring down all of the required elements. Here is a summary of what I am trying to achieve. Using a stored procedure Get the curdate, curtime, and last polled hour. A.

[wdvltalk] RE: Help getting auto-increment field data in SQL

2003-07-31 Thread Diane Schips
The same as before - the record is added, but I can't get the ID number Diane -Original Message- From: Linden, Todd [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 2:35 PM To: [EMAIL PROTECTED] Subject: [wdvltalk] RE: Help getting auto-increment field data in SQL What does it

[wdvltalk] Re: SQL POINTERS

2003-07-31 Thread rudy
Can this be performed in MSSQL2k yes, everything up to the send email part you need a script (ASP?) or scheduled task to call the database, exec the stored proc, handle the query results, decide who gets email, and then hand the email over to some other windows network task, or server,

[wdvltalk] Re: was css now Wooo-Hooo

2003-07-31 Thread Jan
David Barnes wrote: Hi Jan, I am a list lurker, because I am intrigued with web design and try to dabble in it, but I work full time, and I also go to school at night, plus with a family and all, just don't have much time so I don't have the expertise knowledge that you might need, however I

[wdvltalk] Re: Help getting auto-increment field data in SQL

2003-07-31 Thread Robert M. Teague
First, don't do dynamic SQL statements!!! Bad form, you are just opening yourself up for SQL injection attacks. Write a stored procedure, adding return @@IDENTITY or @@SCOPE_IDENTITY. Robert M. Teague - Original Message - From: Diane Schips [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

[wdvltalk] Re: SSL on part of website

2003-07-31 Thread Robert M. Teague
Yes, but I only know how to do it with IIS. Robert M. Teague - Original Message - From: Furry, Tim [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 31, 2003 9:39 AM Subject: [wdvltalk] SSL on part of website Any of you guys/gals ever worked with SSL? Is it possible to put

[wdvltalk] (OT) IRC client

2003-07-31 Thread K. F. Wu
Hi, Could anyone recommend a good, free IRC client for Windows machine? Thanks in advance. KoaFar • The WDVL Discussion List from WDVL.COM • To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] Send Your Posts To: [EMAIL PROTECTED] To set a personal password send an

[wdvltalk] Re: (OT) IRC client

2003-07-31 Thread rudy
Could anyone recommend a good, free IRC client for Windows machine? mozilla you also get a free browser with it ;o) rudy • The WDVL Discussion List from WDVL.COM • To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] Send Your Posts To: [EMAIL PROTECTED] To set a

[wdvltalk] Re: (OT) IRC client

2003-07-31 Thread K. F. Wu
Thanks, Rudy. But I am looking for a small download (Mozilla is like 13MB monster!). I think I need a standalone IRC client with better functions than WinIRC (I have it, but couldn't make it work. Seems too simple, even without Help or Instruction function...). Any other suggestions? KoaFar

[wdvltalk] Re: (OT) IRC client

2003-07-31 Thread Mark M
mIRC is what I have been using for many years without a hitch www.mirc.com Mark --- [EMAIL PROTECTED] ICQ: 3094740 Safe From Bees [www.safefrombees.com] • The WDVL Discussion List from WDVL.COM • To Join wdvltalk, Send An Email To: mailto:[EMAIL

[wdvltalk] Re: (OT) IRC client

2003-07-31 Thread K. F. Wu
Mark, I know mIRC is good, but it's not free. Can anyone recommend one free? KoaFar At 07:11 PM 7/31/2003, you wrote: mIRC is what I have been using for many years without a hitch www.mirc.com Mark • The WDVL Discussion List from WDVL.COM • To Join wdvltalk, Send An Email To:

[wdvltalk] Re: Automatic form posting

2003-07-31 Thread Mark Groen
On July 31, 2003 at 19:24, Hugh Blair wrote: form action=http://www.foreigndomain.com/cgi-bin/do_it.cgi; method=post input name=somename value=something input type=submit name=submit value=submit/form He wants to trigger this .cgi - that's not on his server - every so many

[wdvltalk] Re: (OT) IRC client

2003-07-31 Thread Mark M
I know mIRC is good, but it's not free. Can anyone recommend one free? It isn't free? Woah.. they changed their licencing. My Bad. Didnt' know that! Mark --- [EMAIL PROTECTED] ICQ: 3094740 Safe From Bees [www.safefrombees.com] • The WDVL

[wdvltalk] Re: Automatic form posting

2003-07-31 Thread Robert M. Teague
Think about this a minute, would you want someone to burn up your own server anonymously like that? That's why a properly configured web server will only run a cgi/perl file that's called from it's own domain via #!/usr/bin/perl (or something like that). Try to find out more specifly what

[wdvltalk] Re: Automatic form posting

2003-07-31 Thread Mark Groen
On July 31, 2003 at 19:31, Robert M. Teague wrote: Why not? Isn't this essentially what a web browser does? That is what Hugh said it does now which is not what he wants if I understand correctly, but to do it automatically without having to use POST or GET: Hugh said: He wants to trigger

[wdvltalk] Re: Automatic form posting

2003-07-31 Thread Robert M. Teague
That is what Hugh said it does now which is not what he wants if I understand correctly, but to do it automatically without having to use POST or GET: Hugh said: He wants to trigger this .cgi - that's not on his server - every so many minutes. The script running on domain #1 cannot