OT: ASP!

2000-06-04 Thread David Shadovitz

Can any of you ASP programmers tell me whether the following code will
work?

It is the action page of a login form.  It should get the user's record
from a database and display the user's first name and chosen color.  I'm
not too concerned that it should be graceful, I just want working code.

Thanks.
-David 

===
(I've omitted the beginning and ending HTML tag)


User Info


User Info

<%
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "demo"
set RS = Conn.Execute("select * from [UserInfo] where [username]=" &
request.form("username") & " and [password] = request.form("password"))
%>
">
Hello, <% =RS("f_name") %>!


Additional page content goes here.


YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: ASP

2000-06-15 Thread vinicius

hi there! I know this is a CF list, but my boss asked me to create a template 
in ASP and I've never worked with it.
I have a few easy questions:

1st. Where can I find a good tutorial on the net?

2nd. How do I return the "RecordCount" of a query?

3rd. How can I set the maxrows so I can create broken templates in a search 
(like next, and previous buttons, page1, 2, 3, 4)

Thanks a lot

Vinicius Carvalho
Digicadd - Official Autodesk Reseller



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: ASP

2004-09-09 Thread Kristopher Pilles
Anyone an ASP guru have time to look at some code for me?

Kristopher Pilles
Website Manager
Western Suffolk BOCES
507 Deer Park Rd., Building C
Phone: 631-549-4900 x 267
E-mail: [EMAIL PROTECTED]
 <>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




OT: ASP help

2002-09-30 Thread Kris Pilles

Anyone know how to generate an HTML file from ASP then save it to
diskbasically doing content management with ASP but website lives on
a Unix box  

Flame me if you will but I need an answer and the people on the ASP
boards aren't as smart as you guys are

Thanks for your help...

Kris Pilles
Website Manager
Western Suffolk BOCES
507 Deer Park Rd., Building C
Phone: 631-549-4900 x 267
E-mail: [EMAIL PROTECTED]


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: ASP List?

2003-02-05 Thread Mark Stephenson - Evolution Internet
Hey,

Trying to fill a skills gap...

Can anyone recommend a good ASP list... As good as this one is.

Kind Regards,



Mark Stephenson
New Media Director
Evolution Internet
T: 0870 757 1631
F: 0870 757 1632
W: www.evolutioninternet.co.uk
E: [EMAIL PROTECTED]


WARNING:
---
The information contained in this document and attachments is confidential
and intended only for the person(s) named above.  If you are not the
intended recipient you are hereby notified that any disclosure, copying,
distribution, or any other use of the information is strictly prohibited.
If you have received this document by mistake, please notify the sender
immediately and destroy this document and attachments without making any
copy of any kind.

AVIS IMPORTANT:
---
Les informations contenues dans le present document et ses pieces jointes
sont strictement confidentielles et reservees a l'usage de la (des)
personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez
avise que toute divulgation, distribution, copie, ou autre utilisation de
ces informations est strictement prohibee.  Si vous avez recu ce document
par erreur, veuillez s'il vous plait communiquer immediatement avec
l'expediteur et detruire ce document sans en faire de copie sous quelque
forme.



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




OT: Asp Developers

2000-05-19 Thread paul smith

G'Day!

You might remember my recent post here about my client
who asked me to convert his ASP-based website to
ColdFusion.

Although I told him at the time his least-cost route
was to get a responsible, fair ASP developer to take
over his website, he still wanted to go with me,
apparently because I gave him straight talk and he
was confident I would treat him right and fair.

I've concluded that for ME to convert his site from
ASP to ColdFusion will probably exceed his budget.
I haven't told him yet because I'd like to present
him with options.  It's clear he spent a LOT to
someone to develop his current websites.  (There
are two websites, and probably more.)

If you're an ASP-capable-developer, and can be
responsive and fair, please contact me off-list,
including your location, business website, and
telephone number.

I do not want a fee from you, as I want to
make an unbiased recommendation to him.

best,  paul

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT: ASP!

2000-06-11 Thread Heather Haindel

It'll puke if they put in an invalid user name and
password. Check for rs.eof before you display their
name and color.
--- David Shadovitz <[EMAIL PROTECTED]> wrote:
> Can any of you ASP programmers tell me whether the
> following code will
> work?
> 
> It is the action page of a login form.  It should
> get the user's record
> from a database and display the user's first name
> and chosen color.  I'm
> not too concerned that it should be graceful, I just
> want working code.
> 
> Thanks.
> -David 
> 
> ===
> (I've omitted the beginning and ending HTML tag)
> 
> 
> User Info
> 
> 
> User Info
> 
> <%
> Set Conn = Server.CreateObject("ADODB.Connection")
> Conn.Open "demo"
> set RS = Conn.Execute("select * from [UserInfo]
> where [username]=" &
> request.form("username") & " and [password] =
> request.form("password"))
> %>
>  bgcolor="<%
> =RS("color") %>">
> Hello, <% =RS("f_name") %>!
> 
> 
> Additional page content goes here.
> 
>

> YOU'RE PAYING TOO MUCH FOR THE INTERNET!
> Juno now offers FREE Internet Access!
> Try it today - there's no risk!  For your FREE
> software, visit:
> http://dl.www.juno.com/get/tagj.
>
--
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
>
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or send a message to
> [EMAIL PROTECTED] with 'unsubscribe'
> in the body.
> 
>
--
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
>
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or send a message to
> [EMAIL PROTECTED] with 'unsubscribe'
> in the body.


__
Do You Yahoo!?
Yahoo! Photos -- now, 100 FREE prints!
http://photos.yahoo.com
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT: ASP

2000-06-15 Thread Ian Potts

Haven't messed with ASP much myself, however I hear from an ASP
Developer I know that www.asptoday.com is a great place.

Ian

[EMAIL PROTECTED] wrote:
> 
> hi there! I know this is a CF list, but my boss asked me to create a template
> in ASP and I've never worked with it.
> I have a few easy questions:
> 
> 1st. Where can I find a good tutorial on the net?
> 
> 2nd. How do I return the "RecordCount" of a query?
> 
> 3rd. How can I set the maxrows so I can create broken templates in a search
> (like next, and previous buttons, page1, 2, 3, 4)
> 
> Thanks a lot
> 
> Vinicius Carvalho
> Digicadd - Official Autodesk Reseller
> 
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT: ASP!

2000-06-16 Thread David Shadovitz

Heather,
Thanks for taking a look.  The code was to help my sister, who is writing
a book on Adobe Go Live.
-David

On Tue, 6 Jun 2000 09:06:54 -0700 (PDT) Heather Haindel
<[EMAIL PROTECTED]> writes:
> It'll puke if they put in an invalid user name and
> password. Check for rs.eof before you display their
> name and color.
> --- David Shadovitz <[EMAIL PROTECTED]> wrote:
> > Can any of you ASP programmers tell me whether the
> > following code will
> > work?
> > 
> > It is the action page of a login form.  It should
> > get the user's record
> > from a database and display the user's first name
> > and chosen color.  I'm
> > not too concerned that it should be graceful, I just
> > want working code.
> > 
> > Thanks.
> > -David 
> > 
> > ===
> > (I've omitted the beginning and ending HTML tag)
> > 
> > 
> > User Info
> > 
> > 
> > User Info
> > 
> > <%
> > Set Conn = Server.CreateObject("ADODB.Connection")
> > Conn.Open "demo"
> > set RS = Conn.Execute("select * from [UserInfo]
> > where [username]=" &
> > request.form("username") & " and [password] =
> > request.form("password"))
> > %>
> >  > bgcolor="<%
> > =RS("color") %>">
> > Hello, <% =RS("f_name") %>!
> > 
> > 
> > Additional page content goes here.
> > 
> >
> 
> > YOU'RE PAYING TOO MUCH FOR THE INTERNET!
> > Juno now offers FREE Internet Access!
> > Try it today - there's no risk!  For your FREE
> > software, visit:
> > http://dl.www.juno.com/get/tagj.
> >
>
-
-
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> >
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > or send a message to
> > [EMAIL PROTECTED] with 'unsubscribe'
> > in the body.
> > 
> >
>
-
-
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> >
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > or send a message to
> > [EMAIL PROTECTED] with 'unsubscribe'
> > in the body.
> 
> 
> __
> Do You Yahoo!?
> Yahoo! Photos -- now, 100 FREE prints!
> http://photos.yahoo.com
>
-
-
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit 
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk

> or send a message to [EMAIL PROTECTED] with 
> 'unsubscribe' in the body.


YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT: ASP

2000-06-16 Thread Shally Kon

Free Tutorials on ASP
http://www.learnasp.com/
http://www.asp101.com/
Shally-

-Original Message--
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: June 15, 2000 8:19:26 AM GMT
Subject: OT: ASP


hi there! I know this is a CF list, but my boss asked me to create a template 
in ASP and I've never worked with it.
I have a few easy questions:

1st. Where can I find a good tutorial on the net?

2nd. How do I return the "RecordCount" of a query?

3rd. How can I set the maxrows so I can create broken templates in a search 
(like next, and previous buttons, page1, 2, 3, 4)

Thanks a lot

Vinicius Carvalho
Digicadd - Official Autodesk Reseller



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
---
FREE! The World's Best Email Address @email.com
Reserve your name now at http://www.email.com


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT: ASP

2000-06-16 Thread Shally Kon

Free Tutorials on ASP
http://www.learnasp.com/
http://www.asp101.com/
Shally-

-Original Message--
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: June 15, 2000 8:19:26 AM GMT
Subject: OT: ASP


hi there! I know this is a CF list, but my boss asked me to create a template 
in ASP and I've never worked with it.
I have a few easy questions:

1st. Where can I find a good tutorial on the net?

2nd. How do I return the "RecordCount" of a query?

3rd. How can I set the maxrows so I can create broken templates in a search 
(like next, and previous buttons, page1, 2, 3, 4)

Thanks a lot

Vinicius Carvalho
Digicadd - Official Autodesk Reseller



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
---
FREE! The World's Best Email Address @email.com
Reserve your name now at http://www.email.com


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



(OT) ASP Question

2000-07-11 Thread Eric Dawson

Does anyone know a good resource for ASP. just a reference guide to see how 
to access url.variables, do file includes etc.

Thanks
Eric

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



ot: asp lists :)

2000-10-05 Thread lsellers

I was a looking for a good asp list. Pages of them... most seem dead though.
Anyone know of a good, active list?

--min

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: ASP NumberFormat

2001-05-08 Thread Bernd VanSkiver

Sorry about bringing ASP in to the list but am having
troubles finding the solution and was hoping someone
here might know the answer.  I am needing a way to
format a number in ASP similar to the CF function
NumberFormat()  Is there a function or something in
ASP for this?  I'm not sure if ASP even has built in
support for this.  I am programming the ASP in
VBScript.


=
Bernd VanSkiver
[EMAIL PROTECTED]
ColdFusion Developer
ICQ UIN: 916324
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: ASP

2004-09-09 Thread Mark Drew
Not quite a guru but I am a dab hand :)

On Thu, 9 Sep 2004 15:19:31 -0400, Kristopher Pilles
<[EMAIL PROTECTED]> wrote:
> Anyone an ASP guru have time to look at some code for me?
> 
> Kristopher Pilles
> Website Manager
> Western Suffolk BOCES
> 507 Deer Park Rd., Building C
> Phone: 631-549-4900 x 267
> E-mail: [EMAIL PROTECTED]
> <>
> 
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




OT-ASP pagination

2004-12-16 Thread Eric Creese
Ok I have not touched ASP in a few years. I have been using nothing but 
ColdFusion for 4 years. Now the company I am with I have unsuccessfully been 
unable to convince them to use CF. So They have taked me to create a page in 
which I have comeup with the idea to use pagination. Basically we have a this 
happened on this day in history database. There can be several things that 
happen on any particular day. What I want to do is paginate between months. 
Each month page will list all entries for that month. Does anyone have some 
code or pointer to get me going in the right direction.


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187894
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: ASP help

2002-09-30 Thread Samuel R. Neff

Set up a CF server and then use CFHTTP to download the content from the ASP
server and then CFFILE to save it to disk.  Can even use free CF Developer
edition for this.  ASP equivalent would be using WinHttp.WinHttpRequest and
Scripting.FileSystemObject.

Also remember you have to fix your links.  Everything will point to .asp
pages and you need to change them to .html.  Pages with URL parameters will
take a little more creativity.

Now, get off our list!  :D

Sam


Samuel R. Neff
Senior Software Engineer
B-Line Express
Advanced ColdFusion 5.0 Certified
Team Macromedia Volunteer for ColdFusion



Date: Mon, 30 Sep 2002 16:24:24 -0400
From: "Kris Pilles" <[EMAIL PROTECTED]>
Subject: OT: ASP help
Message-ID: <[EMAIL PROTECTED]>

Anyone know how to generate an HTML file from ASP then save it to
diskbasically doing content management with ASP but website lives on
a Unix box

Flame me if you will but I need an answer and the people on the ASP
boards aren't as smart as you guys are

Thanks for your help...

Kris Pilles

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: ASP List?

2003-02-05 Thread Jeffry Houser
http://aspalliance.com/lists/

  I'm on a few of them.  More traffic than the CF lists on some days.


At 10:46 AM 2/5/2003 +, you wrote:

>Hey,
>
>Trying to fill a skills gap...
>
>Can anyone recommend a good ASP list... As good as this one is.
>
>Kind Regards,
>
>
>
>Mark Stephenson
>New Media Director
>Evolution Internet
>T: 0870 757 1631
>F: 0870 757 1632
>W: www.evolutioninternet.co.uk
>E: [EMAIL PROTECTED]
>
>
>WARNING:
>---
>The information contained in this document and attachments is confidential
>and intended only for the person(s) named above.  If you are not the
>intended recipient you are hereby notified that any disclosure, copying,
>distribution, or any other use of the information is strictly prohibited.
>If you have received this document by mistake, please notify the sender
>immediately and destroy this document and attachments without making any
>copy of any kind.
>
>AVIS IMPORTANT:
>---
>Les informations contenues dans le present document et ses pieces jointes
>sont strictement confidentielles et reservees a l'usage de la (des)
>personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez
>avise que toute divulgation, distribution, copie, ou autre utilisation de
>ces informations est strictement prohibee.  Si vous avez recu ce document
>par erreur, veuillez s'il vous plait communiquer immediatement avec
>l'expediteur et detruire ce document sans en faire de copie sous quelque
>forme.
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: OT: Asp Developers

2000-05-21 Thread Mark Ireland


I am assuming you are Australian. An ASP developer I have met
works in Sydney for GlassOnion

I never actually worked with them.

At 11:04 AM 19/05/00 -0700, you wrote:
>G'Day!
>
>You might remember my recent post here about my client
>who asked me to convert his ASP-based website to
>ColdFusion.
>
>Although I told him at the time his least-cost route
>was to get a responsible, fair ASP developer to take
>over his website, he still wanted to go with me,
>apparently because I gave him straight talk and he
>was confident I would treat him right and fair.
>
>I've concluded that for ME to convert his site from
>ASP to ColdFusion will probably exceed his budget.
>I haven't told him yet because I'd like to present
>him with options.  It's clear he spent a LOT to
>someone to develop his current websites.  (There
>are two websites, and probably more.)
>
>If you're an ASP-capable-developer, and can be
>responsive and fair, please contact me off-list,
>including your location, business website, and
>telephone number.
>
>I do not want a fee from you, as I want to
>make an unbiased recommendation to him.
>
>best,  paul
>

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT: Asp Developers

2000-05-21 Thread paul smith

Wrong.  I live in the San Francisco Bay Area.

best,  paul

At 10:01 AM 5/22/00 +1000, you wrote:

>I am assuming you are Australian. An ASP developer I have met
>works in Sydney for GlassOnion
>
>I never actually worked with them.
>
>At 11:04 AM 19/05/00 -0700, you wrote:
> >G'Day!
> >
> >You might remember my recent post here about my client
> >who asked me to convert his ASP-based website to
> >ColdFusion.
> >
> >Although I told him at the time his least-cost route
> >was to get a responsible, fair ASP developer to take
> >over his website, he still wanted to go with me,
> >apparently because I gave him straight talk and he
> >was confident I would treat him right and fair.
> >
> >I've concluded that for ME to convert his site from
> >ASP to ColdFusion will probably exceed his budget.
> >I haven't told him yet because I'd like to present
> >him with options.  It's clear he spent a LOT to
> >someone to develop his current websites.  (There
> >are two websites, and probably more.)
> >
> >If you're an ASP-capable-developer, and can be
> >responsive and fair, please contact me off-list,
> >including your location, business website, and
> >telephone number.
> >
> >I do not want a fee from you, as I want to
> >make an unbiased recommendation to him.
> >
> >best,  paul
> >
>
>--
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: (OT) ASP Question

2000-07-11 Thread Jonathan Broome


www.4guysfromrolla.com
www.learnasp.com
www.15seconds.com
www.asptoday.com

All good places, and certainly not the only good ones.  If you're looking
for useful email lists, try www.asplists.com

Jonathan


-Original Message-
From: Eric Dawson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 11, 2000 12:42 PM
To: [EMAIL PROTECTED]
Subject: (OT) ASP Question


Does anyone know a good resource for ASP. just a reference guide to see how 
to access url.variables, do file includes etc.

Thanks
Eric

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: ot: asp lists :)

2000-10-05 Thread Billy Cravens

I like http://www.devdex.com ... it's not email mailing lists, but they
do give web access to ASP newsgroups.  

-- 
Billy Cravens
[EMAIL PROTECTED]

lsellers wrote:
> 
> I was a looking for a good asp list. Pages of them... most seem dead though.
> Anyone know of a good, active list?
> 
> --min
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT-ASP pagination

2004-12-16 Thread Burns, John D
Perhaps an ASP list would be more appropriate for specific ASP
questions. 


John Burns
Certified Advanced ColdFusion MX Developer
AI-ES Aeronautics, Web Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 10:56 AM
To: CF-Talk
Subject: OT-ASP pagination

Ok I have not touched ASP in a few years. I have been using nothing but
ColdFusion for 4 years. Now the company I am with I have unsuccessfully
been unable to convince them to use CF. So They have taked me to create
a page in which I have comeup with the idea to use pagination. Basically
we have a this happened on this day in history database. There can be
several things that happen on any particular day. What I want to do is
paginate between months. Each month page will list all entries for that
month. Does anyone have some code or pointer to get me going in the
right direction.




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187895
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT-ASP pagination

2004-12-16 Thread Mark Drew
Is it ASP.NET? or plain ASP?



On Thu, 16 Dec 2004 09:55:48 -0600, Eric Creese <[EMAIL PROTECTED]> wrote:
> Ok I have not touched ASP in a few years. I have been using nothing but 
> ColdFusion for 4 years. Now the company I am with I have unsuccessfully been 
> unable to convince them to use CF. So They have taked me to create a page in 
> which I have comeup with the idea to use pagination. Basically we have a this 
> happened on this day in history database. There can be several things that 
> happen on any particular day. What I want to do is paginate between months. 
> Each month page will list all entries for that month. Does anyone have some 
> code or pointer to get me going in the right direction.
> 
> 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187896
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread COLLIE David
4guysfromrolla.com

Terminology to do most things in a web application is the same
regardless of the language so just search their archives for terms that
describe what you are trying to do and prolly be a tutorial on how to do
it.

-- 
dc

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187900
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread Eric Creese
Active Server Pages

-Original Message-
From: Micha Schopman [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:10 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


ASP as in Active Server Pages? , or ASP.NET ( or even C# .NET) .. 

Micha Schopman
Software Engineer

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187901
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread Eric Creese
I figured most on this board would have more knowledge of other things than CF. 
Sorry you are so limited.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:05 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


Perhaps an ASP list would be more appropriate for specific ASP
questions. 


John Burns
Certified Advanced ColdFusion MX Developer
AI-ES Aeronautics, Web Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 10:56 AM
To: CF-Talk
Subject: OT-ASP pagination

Ok I have not touched ASP in a few years. I have been using nothing but
ColdFusion for 4 years. Now the company I am with I have unsuccessfully
been unable to convince them to use CF. So They have taked me to create
a page in which I have comeup with the idea to use pagination. Basically
we have a this happened on this day in history database. There can be
several things that happen on any particular day. What I want to do is
paginate between months. Each month page will list all entries for that
month. Does anyone have some code or pointer to get me going in the
right direction.






~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187902
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread COLLIE David
> I figured most on this board would have more knowledge of 
> other things than CF. Sorry you are so limited.

Ain't limited mate, just wanting you to do your own legwork instead of
one of us

-- 
dc

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187904
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread Burns, John D
I'm not limited, I could answer your question. I just think there are
plenty of ASP lists out there and this list is called CF-talk for a
reason.  I think there are plenty of people who _could_ answer your
question, but that doesn't mean that they should.  Filling up this list
with OT posts makes it harder for people to use this list for the reason
that it is intended. It's one thing to ask an off topic question
regarding the use of JS or something with CF but to get to talking about
ASP or ASP.net specific code, I just don't think this is the place.

John Burns
Certified Advanced ColdFusion MX Developer
AI-ES Aeronautics, Web Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 11:29 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

I figured most on this board would have more knowledge of other things
than CF. Sorry you are so limited.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:05 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


Perhaps an ASP list would be more appropriate for specific ASP
questions. 


John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:56 AM
To: CF-Talk
Subject: OT-ASP pagination

Ok I have not touched ASP in a few years. I have been using nothing but
ColdFusion for 4 years. Now the company I am with I have unsuccessfully
been unable to convince them to use CF. So They have taked me to create
a page in which I have comeup with the idea to use pagination. Basically
we have a this happened on this day in history database. There can be
several things that happen on any particular day. What I want to do is
paginate between months. Each month page will list all entries for that
month. Does anyone have some code or pointer to get me going in the
right direction.








~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187905
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT-ASP pagination

2004-12-16 Thread Spike
I'm inclined to agree with the responses of a few people here. I did a 
simple search in google and came up with a full page of answers to your 
question.

http://www.google.com/search?query=asp+pagination+tutorial

Did you try searching online before asking here?

If so, what is wrong with the tutorials in that page of results?

Spike

Eric Creese wrote:
> Ok I have not touched ASP in a few years. I have been using nothing but 
> ColdFusion for 4 years. Now the company I am with I have unsuccessfully been 
> unable to convince them to use CF. So They have taked me to create a page in 
> which I have comeup with the idea to use pagination. Basically we have a this 
> happened on this day in history database. There can be several things that 
> happen on any particular day. What I want to do is paginate between months. 
> Each month page will list all entries for that month. Does anyone have some 
> code or pointer to get me going in the right direction.
> 
> 
> 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187909
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT-ASP pagination

2004-12-16 Thread Mark Drew
Not limited.. there is a way to do this very easily in ASP.NET  as
there is a DataGrid Component with pagination.


Where you might want to head to find out how to do this is www.15seconds.com 

(and no I am not limited, its more about appropriateness)

MD


On Thu, 16 Dec 2004 10:29:02 -0600, Eric Creese <[EMAIL PROTECTED]> wrote:
> I figured most on this board would have more knowledge of other things than 
> CF. Sorry you are so limited.
> 
> -Original Message-
> From: Burns, John D [mailto:[EMAIL PROTECTED]
> Sent: Thursday, December 16, 2004 10:05 AM
> To: CF-Talk
> Subject: RE: OT-ASP pagination
> 
> Perhaps an ASP list would be more appropriate for specific ASP
> questions.
> 
> John Burns
> Certified Advanced ColdFusion MX Developer
> AI-ES Aeronautics, Web Developer
> 
> -Original Message-
> From: Eric Creese [mailto:[EMAIL PROTECTED]
> Sent: Thursday, December 16, 2004 10:56 AM
> To: CF-Talk
> Subject: OT-ASP pagination
> 
> Ok I have not touched ASP in a few years. I have been using nothing but
> ColdFusion for 4 years. Now the company I am with I have unsuccessfully
> been unable to convince them to use CF. So They have taked me to create
> a page in which I have comeup with the idea to use pagination. Basically
> we have a this happened on this day in history database. There can be
> several things that happen on any particular day. What I want to do is
> paginate between months. Each month page will list all entries for that
> month. Does anyone have some code or pointer to get me going in the
> right direction.
> 
> 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187903
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread kola.oyedeji
Anyone know where I can catch a 53 bus? :)


(Just kidding)


Kola
-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED] 
Sent: 16 December 2004 17:53
To: CF-Talk
Subject: RE: OT-ASP pagination

I'm actually not the self appointed "gate keeper".  It's more of a
community effort.  Lots of people complain about the off-topic and
stupid (lazy) posts that get put on this list.  I myself have been
reminded when I was being lazy to do a little work myself.  For
instance, your request was quite simple if you did a google search for
"asp.net pagination".  I got tons of results and got the info needed in
about 15 seconds.

I'm also into classic cars and do lots of stuff with hot rods and such.
I'm sure that someone else on this list probably has knowledge/expertise
in this area, but that does't mean I'm going to ask the list about that.
There are times when OT questions are posted and nothing is said, but in
general, the list as a whole tries to remind everyone to stay on topic.

If you want to see examples of how these reminders are stated, look at
the responses to last week's firefox arguments.  I was trying to be
civil and just send it to you as a reminder but it appears that I
somehow hurt your feelings by doing so. I'm sorry to hear that you're
easily upset and hope you find your answers to your questions.


John Burns
Certified Advanced ColdFusion MX Developer
AI-ES Aeronautics, Web Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 11:58 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

That is cool with me. I have not done ASP in a while so I was simply
asking from the this list cause others have in the past. From what I
gather this list has quite the diverse community.  I hope you correct
all future posters as well and make it known that you are the
"self-appointed gate keeper" when a poster asks non-specific CF question
is absolutely unappropriate.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:41 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


I'm not limited, I could answer your question. I just think there are
plenty of ASP lists out there and this list is called CF-talk for a
reason.  I think there are plenty of people who _could_ answer your
question, but that doesn't mean that they should.  Filling up this list
with OT posts makes it harder for people to use this list for the reason
that it is intended. It's one thing to ask an off topic question
regarding the use of JS or something with CF but to get to talking about
ASP or ASP.net specific code, I just don't think this is the place.

John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 11:29 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

I figured most on this board would have more knowledge of other things
than CF. Sorry you are so limited.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:05 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


Perhaps an ASP list would be more appropriate for specific ASP
questions. 


John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:56 AM
To: CF-Talk
Subject: OT-ASP pagination

Ok I have not touched ASP in a few years. I have been using nothing but
ColdFusion for 4 years. Now the company I am with I have unsuccessfully
been unable to convince them to use CF. So They have taked me to create
a page in which I have comeup with the idea to use pagination. Basically
we have a this happened on this day in history database. There can be
several things that happen on any particular day. What I want to do is
paginate between months. Each month page will list all entries for that
month. Does anyone have some code or pointer to get me going in the
right direction.














~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187926
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread Michael Dinowitz
There is a .Net list on House of Fusion where .Net questions are on topic. 
http://www.houseoffusion.com/cf_lists/threads.cfm/44

Lets move the tech question there and the discussion about posting etiquette
to one of the non-tech lists (CF-OT, CF-Community, etc.)
Thanks

> I'm actually not the self appointed "gate keeper".  It's more of a
> community effort.  Lots of people complain about the off-topic and
> stupid (lazy) posts that get put on this list.  I myself have been
> reminded when I was being lazy to do a little work myself.  For
> instance, your request was quite simple if you did a google search for
> "asp.net pagination".  I got tons of results and got the info needed in
> about 15 seconds.
> 
> I'm also into classic cars and do lots of stuff with hot rods and such.
> I'm sure that someone else on this list probably has knowledge/expertise
> in this area, but that does't mean I'm going to ask the list about that.
> There are times when OT questions are posted and nothing is said, but in
> general, the list as a whole tries to remind everyone to stay on topic.
> 
> If you want to see examples of how these reminders are stated, look at
> the responses to last week's firefox arguments.  I was trying to be
> civil and just send it to you as a reminder but it appears that I
> somehow hurt your feelings by doing so. I'm sorry to hear that you're
> easily upset and hope you find your answers to your questions.
> 
> 
> John Burns
> Certified Advanced ColdFusion MX Developer
> AI-ES Aeronautics, Web Developer
> 
> -Original Message-
> From: Eric Creese [mailto:[EMAIL PROTECTED]
> Sent: Thursday, December 16, 2004 11:58 AM
> To: CF-Talk
> Subject: RE: OT-ASP pagination
> 
> That is cool with me. I have not done ASP in a while so I was simply
> asking from the this list cause others have in the past. From what I
> gather this list has quite the diverse community.  I hope you correct
> all future posters as well and make it known that you are the
> "self-appointed gate keeper" when a poster asks non-specific CF question
> is absolutely unappropriate.
> 
> -Original Message-
> From: Burns, John D [mailto:[EMAIL PROTECTED]
> Sent: Thursday, December 16, 2004 10:41 AM
> To: CF-Talk
> Subject: RE: OT-ASP pagination
> 
> 
> I'm not limited, I could answer your question. I just think there are
> plenty of ASP lists out there and this list is called CF-talk for a
> reason.  I think there are plenty of people who _could_ answer your
> question, but that doesn't mean that they should.  Filling up this list
> with OT posts makes it harder for people to use this list for the reason
> that it is intended. It's one thing to ask an off topic question
> regarding the use of JS or something with CF but to get to talking about
> ASP or ASP.net specific code, I just don't think this is the place.
> 
> John Burns
> Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
> Developer
> 
> -Original Message-
> From: Eric Creese [mailto:[EMAIL PROTECTED]
> Sent: Thursday, December 16, 2004 11:29 AM
> To: CF-Talk
> Subject: RE: OT-ASP pagination
> 
> I figured most on this board would have more knowledge of other things
> than CF. Sorry you are so limited.
> 
> -Original Message-
> From: Burns, John D [mailto:[EMAIL PROTECTED]
> Sent: Thursday, December 16, 2004 10:05 AM
> To: CF-Talk
> Subject: RE: OT-ASP pagination
> 
> 
> Perhaps an ASP list would be more appropriate for specific ASP
> questions.
> 
> 
> John Burns
> Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
> Developer
> 
> -Original Message-
> From: Eric Creese [mailto:[EMAIL PROTECTED]
> Sent: Thursday, December 16, 2004 10:56 AM
> To: CF-Talk
> Subject: OT-ASP pagination
> 
> Ok I have not touched ASP in a few years. I have been using nothing but
> ColdFusion for 4 years. Now the company I am with I have unsuccessfully
> been unable to convince them to use CF. So They have taked me to create
> a page in which I have comeup with the idea to use pagination. Basically
> we have a this happened on this day in history database. There can be
> several things that happen on any particular day. What I want to do is
> paginate between months. Each month page will list all entries for that
> month. Does anyone have some code or pointer to get me going in the
> right direction.
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187929
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread Eric Creese
Not upset at all, not lazy nor stupid or anything else you mentioned. All I was 
looking for was a push in the right direction or some code for insight to get 
started with. Sure I googled and came up with plenty of sites and it was ASP I 
needed not asp.net, which is a bit easier with DataGrid. And because of some 
many sites and information I was posting to this site cause I trust the info I 
get from the list and did not want to waste alot of times spinning my wheels. 
And since this is "web" related like ColdFusion, and that we have a "web" 
diverse and knowledgable "web" crowd I did not think it was much to ask. Sure 
if I was asking about things I personally think are geeky like "hot-rods" I 
could see your point but I wasn't. 

But since I am a lowly "uncertified" hot-rod buff I will yield to you sire, 
please flog me no more.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 11:53 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


I'm actually not the self appointed "gate keeper".  It's more of a
community effort.  Lots of people complain about the off-topic and
stupid (lazy) posts that get put on this list.  I myself have been
reminded when I was being lazy to do a little work myself.  For
instance, your request was quite simple if you did a google search for
"asp.net pagination".  I got tons of results and got the info needed in
about 15 seconds.

I'm also into classic cars and do lots of stuff with hot rods and such.
I'm sure that someone else on this list probably has knowledge/expertise
in this area, but that does't mean I'm going to ask the list about that.
There are times when OT questions are posted and nothing is said, but in
general, the list as a whole tries to remind everyone to stay on topic.

If you want to see examples of how these reminders are stated, look at
the responses to last week's firefox arguments.  I was trying to be
civil and just send it to you as a reminder but it appears that I
somehow hurt your feelings by doing so. I'm sorry to hear that you're
easily upset and hope you find your answers to your questions.


John Burns
Certified Advanced ColdFusion MX Developer
AI-ES Aeronautics, Web Developer

-Original Message-----
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 11:58 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

That is cool with me. I have not done ASP in a while so I was simply
asking from the this list cause others have in the past. From what I
gather this list has quite the diverse community.  I hope you correct
all future posters as well and make it known that you are the
"self-appointed gate keeper" when a poster asks non-specific CF question
is absolutely unappropriate.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:41 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


I'm not limited, I could answer your question. I just think there are
plenty of ASP lists out there and this list is called CF-talk for a
reason.  I think there are plenty of people who _could_ answer your
question, but that doesn't mean that they should.  Filling up this list
with OT posts makes it harder for people to use this list for the reason
that it is intended. It's one thing to ask an off topic question
regarding the use of JS or something with CF but to get to talking about
ASP or ASP.net specific code, I just don't think this is the place.

John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 11:29 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

I figured most on this board would have more knowledge of other things
than CF. Sorry you are so limited.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:05 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


Perhaps an ASP list would be more appropriate for specific ASP
questions. 


John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:56 AM
To: CF-Talk
Subject: OT-ASP pagination

Ok I have not touched ASP in a few years. I have been using nothing but
ColdFusion for 4 years. Now the company I am with I have unsuccessfully
been unable to convince them to use CF. So They have taked me to create
a page in which I have comeup with the idea to use pagination. Basically
we have a this happened on this day in history database. There can be
several things that happen on any particular day. What I want to do is
paginate between months. Each month page will list all entries for that
month. Does anyone have some code 

RE: OT-ASP pagination

2004-12-16 Thread Burns, John D
I'm actually not the self appointed "gate keeper".  It's more of a
community effort.  Lots of people complain about the off-topic and
stupid (lazy) posts that get put on this list.  I myself have been
reminded when I was being lazy to do a little work myself.  For
instance, your request was quite simple if you did a google search for
"asp.net pagination".  I got tons of results and got the info needed in
about 15 seconds.

I'm also into classic cars and do lots of stuff with hot rods and such.
I'm sure that someone else on this list probably has knowledge/expertise
in this area, but that does't mean I'm going to ask the list about that.
There are times when OT questions are posted and nothing is said, but in
general, the list as a whole tries to remind everyone to stay on topic.

If you want to see examples of how these reminders are stated, look at
the responses to last week's firefox arguments.  I was trying to be
civil and just send it to you as a reminder but it appears that I
somehow hurt your feelings by doing so. I'm sorry to hear that you're
easily upset and hope you find your answers to your questions.


John Burns
Certified Advanced ColdFusion MX Developer
AI-ES Aeronautics, Web Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 11:58 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

That is cool with me. I have not done ASP in a while so I was simply
asking from the this list cause others have in the past. From what I
gather this list has quite the diverse community.  I hope you correct
all future posters as well and make it known that you are the
"self-appointed gate keeper" when a poster asks non-specific CF question
is absolutely unappropriate.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:41 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


I'm not limited, I could answer your question. I just think there are
plenty of ASP lists out there and this list is called CF-talk for a
reason.  I think there are plenty of people who _could_ answer your
question, but that doesn't mean that they should.  Filling up this list
with OT posts makes it harder for people to use this list for the reason
that it is intended. It's one thing to ask an off topic question
regarding the use of JS or something with CF but to get to talking about
ASP or ASP.net specific code, I just don't think this is the place.

John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 11:29 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

I figured most on this board would have more knowledge of other things
than CF. Sorry you are so limited.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:05 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


Perhaps an ASP list would be more appropriate for specific ASP
questions. 


John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:56 AM
To: CF-Talk
Subject: OT-ASP pagination

Ok I have not touched ASP in a few years. I have been using nothing but
ColdFusion for 4 years. Now the company I am with I have unsuccessfully
been unable to convince them to use CF. So They have taked me to create
a page in which I have comeup with the idea to use pagination. Basically
we have a this happened on this day in history database. There can be
several things that happen on any particular day. What I want to do is
paginate between months. Each month page will list all entries for that
month. Does anyone have some code or pointer to get me going in the
right direction.












~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187923
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread Eric Creese
That is cool with me. I have not done ASP in a while so I was simply asking 
from the this list cause others have in the past. From what I gather this list 
has quite the diverse community.  I hope you correct all future posters as well 
and make it known that you are the "self-appointed gate keeper" when a poster 
asks non-specific CF question is absolutely unappropriate.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:41 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


I'm not limited, I could answer your question. I just think there are
plenty of ASP lists out there and this list is called CF-talk for a
reason.  I think there are plenty of people who _could_ answer your
question, but that doesn't mean that they should.  Filling up this list
with OT posts makes it harder for people to use this list for the reason
that it is intended. It's one thing to ask an off topic question
regarding the use of JS or something with CF but to get to talking about
ASP or ASP.net specific code, I just don't think this is the place.

John Burns
Certified Advanced ColdFusion MX Developer
AI-ES Aeronautics, Web Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 11:29 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

I figured most on this board would have more knowledge of other things
than CF. Sorry you are so limited.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:05 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


Perhaps an ASP list would be more appropriate for specific ASP
questions. 


John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:56 AM
To: CF-Talk
Subject: OT-ASP pagination

Ok I have not touched ASP in a few years. I have been using nothing but
ColdFusion for 4 years. Now the company I am with I have unsuccessfully
been unable to convince them to use CF. So They have taked me to create
a page in which I have comeup with the idea to use pagination. Basically
we have a this happened on this day in history database. There can be
several things that happen on any particular day. What I want to do is
paginate between months. Each month page will list all entries for that
month. Does anyone have some code or pointer to get me going in the
right direction.










~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187908
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-17 Thread COLLIE David
Eric, go and join the other thread about 'What is it &£"$&"*£&$ about' 

-- 
dc

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187976
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT-ASP pagination

2004-12-16 Thread Joe Rinehart
Eric,

ASP or ASP.NET?


On Thu, 16 Dec 2004 09:55:48 -0600, Eric Creese <[EMAIL PROTECTED]> wrote:
> Ok I have not touched ASP in a few years. I have been using nothing but 
> ColdFusion for 4 years. Now the company I am with I have unsuccessfully been 
> unable to convince them to use CF. So They have taked me to create a page in 
> which I have comeup with the idea to use pagination. Basically we have a this 
> happened on this day in history database. There can be several things that 
> happen on any particular day. What I want to do is paginate between months. 
> Each month page will list all entries for that month. Does anyone have some 
> code or pointer to get me going in the right direction.
> 
> 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187897
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread Micha Schopman
ASP as in Active Server Pages? , or ASP.NET ( or even C# .NET) .. 

Micha Schopman
Software Engineer

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187898
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT-ASP pagination

2004-12-16 Thread Burns, John D
Wow, you need some help.  Please take Mike D's advice and move this to
another list or place.  I had no clue that people on this list would
have certification envy. Sad.


John Burns
Certified Advanced ColdFusion MX Developer
AI-ES Aeronautics, Web Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 1:11 PM
To: CF-Talk
Subject: RE: OT-ASP pagination

Not upset at all, not lazy nor stupid or anything else you mentioned.
All I was looking for was a push in the right direction or some code for
insight to get started with. Sure I googled and came up with plenty of
sites and it was ASP I needed not asp.net, which is a bit easier with
DataGrid. And because of some many sites and information I was posting
to this site cause I trust the info I get from the list and did not want
to waste alot of times spinning my wheels. And since this is "web"
related like ColdFusion, and that we have a "web" diverse and
knowledgable "web" crowd I did not think it was much to ask. Sure if I
was asking about things I personally think are geeky like "hot-rods" I
could see your point but I wasn't. 

But since I am a lowly "uncertified" hot-rod buff I will yield to you
sire, please flog me no more.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 11:53 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


I'm actually not the self appointed "gate keeper".  It's more of a
community effort.  Lots of people complain about the off-topic and
stupid (lazy) posts that get put on this list.  I myself have been
reminded when I was being lazy to do a little work myself.  For
instance, your request was quite simple if you did a google search for
"asp.net pagination".  I got tons of results and got the info needed in
about 15 seconds.

I'm also into classic cars and do lots of stuff with hot rods and such.
I'm sure that someone else on this list probably has knowledge/expertise
in this area, but that does't mean I'm going to ask the list about that.
There are times when OT questions are posted and nothing is said, but in
general, the list as a whole tries to remind everyone to stay on topic.

If you want to see examples of how these reminders are stated, look at
the responses to last week's firefox arguments.  I was trying to be
civil and just send it to you as a reminder but it appears that I
somehow hurt your feelings by doing so. I'm sorry to hear that you're
easily upset and hope you find your answers to your questions.


John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 11:58 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

That is cool with me. I have not done ASP in a while so I was simply
asking from the this list cause others have in the past. From what I
gather this list has quite the diverse community.  I hope you correct
all future posters as well and make it known that you are the
"self-appointed gate keeper" when a poster asks non-specific CF question
is absolutely unappropriate.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:41 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


I'm not limited, I could answer your question. I just think there are
plenty of ASP lists out there and this list is called CF-talk for a
reason.  I think there are plenty of people who _could_ answer your
question, but that doesn't mean that they should.  Filling up this list
with OT posts makes it harder for people to use this list for the reason
that it is intended. It's one thing to ask an off topic question
regarding the use of JS or something with CF but to get to talking about
ASP or ASP.net specific code, I just don't think this is the place.

John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 11:29 AM
To: CF-Talk
Subject: RE: OT-ASP pagination

I figured most on this board would have more knowledge of other things
than CF. Sorry you are so limited.

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:05 AM
To: CF-Talk
Subject: RE: OT-ASP pagination


Perhaps an ASP list would be more appropriate for specific ASP
questions. 


John Burns
Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web
Developer

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 10:56 AM
To: CF-Talk
Subject: OT-ASP pagination

Ok I have not touched ASP in a few years. I have been using nothing but
ColdFusion for 4 years. Now the company I am with 

OT: ASP mailing list(s)

2002-10-30 Thread Ben Arledge
Hey...

Can you guys/gals recommend or point me towards any ASP (not ASP.NET)
mailing lists? 

Thanks,
Ben

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



OT: ASP version of onRequestEnd.cfm

2003-03-25 Thread Jeff Chastain
Does anybody know how to simulate the function of onRequestEnd.cfm in ASP?
I have an ASP app (that has to stay in ASP) where I need to add a footer to
the bottom of a bunch (100+) pages.  Rather than attempting to find and edit
each of these pages, it would be much nicer to put the footer code in an
onRequestEnd type function.
 
Thanks
-- Jeff

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



OT ASP Equivalent to CFHTTP?

2000-09-09 Thread Dick Applebaum

I need to  code part of an application in ASP (yeah, I know, but...).

Anyway, I would like to be able to issue the equivalent of of a 
CFHTTP tag to retrieve a page from another server from within the ASP 
program.

... it's just cleaner to do this within the ASP code.

Any ideas?

TIA

Dick
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: ASP Message Boards / Forums

2003-01-06 Thread Chris Alvarado
Hello all,

I know ASP is a bit off topic on this list but I figured I would ask
since many people here are also familiar with ASP.

A client of ours is looking for a forum solution built in ASP. I am
looking for some recommendations ranging from the most simpler / free to
the most complex feature rich and expensive forums I can find.

URLs would be really helpful so I can do some research on my end.

Thanks a million all,

-chris.alvarado
[ application developer ]
4 Guys Interactive, Inc.
http://www.4guys.com 

"We create websites that make you a hero."



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



OT: ASP Service Pricing Structure

2003-01-29 Thread S . Isaac Dealey
Hi All,

I'm planning to launch an ASP Service soon which will allow subscribers to
manage content hosted on the New Epoch server or their own site hosted
elsewhere. The service launch won't occur until after we've fleshed out some
of the details of the next release of our CMS which will include support for
multiple languages. In the mean time I need to consider pricing structures
for the service.

I know a lot of services charge monthly fees per seat or login and I don't
have any problem doing this in particular. I also know that it wouldn't be
especially difficult for me to automate a pricing structure based on volume
of published content in MB's which would offer greater accuracy and
eliminate the need or desire for login sharing. I'm not worried about login
sharing if I charge per seat -- the client loses some functionality in the
process so it's a trade-off.

So my question is this: if you're subscribing to an ASP hosting service or
to manage content on your web site, would you prefer to pay per seat or per
MB, or are there other options I should consider that you'd like to see.

s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

tapestry api is opensource http://www.turnkey.to/tapi

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




WAY WAY OT ASP QUESTION

2002-06-06 Thread Joshua Tipton

Using the FSO I would like to get the last modified date of a file.  Can
anyone help me?

Josh

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



[OT] ASP equivalent of CFCONTENT?

2000-05-12 Thread ron

Sorry for the OT post, but does anyone know the ASP equivalent of the
CFCONTENT tag? A client of ours (who only has ASP) needs to serve up
files securely, and keep them off the webroot.

tia,
ron


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT ASP Equivalent to CFHTTP?

2000-09-09 Thread ron

> I need to  code part of an application in ASP (yeah, I know, but...).
>
> Anyway, I would like to be able to issue the equivalent of of a
> CFHTTP tag to retrieve a page from another server from within the ASP
> program.
>
> ... it's just cleaner to do this within the ASP code.

http://www.alphasierrapapa.com/iisdev/components/asptear/


Ron Allen Hornbaker
President/CTO
Humankind Systems, Inc.
http://humankindsystems.com
mailto:[EMAIL PROTECTED]



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT ASP Equivalent to CFHTTP?

2000-09-09 Thread Dick Applebaum

Ron

Thanks much... that's *exactly* what I wanted.

I never know what words to search for when looking for ASP/VBS solutions.

Dick

At 3:04 PM -0500 9/9/00, <[EMAIL PROTECTED]> wrote:
>  > I need to  code part of an application in ASP (yeah, I know, but...).
>>
>>  Anyway, I would like to be able to issue the equivalent of of a
>>  CFHTTP tag to retrieve a page from another server from within the ASP
>>  program.
>>
>>  ... it's just cleaner to do this within the ASP code.
>
>http://www.alphasierrapapa.com/iisdev/components/asptear/
>
>
>Ron Allen Hornbaker
>President/CTO
>Humankind Systems, Inc.
>http://humankindsystems.com
>mailto:[EMAIL PROTECTED]
>
>
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_tal 
>k or send a message to [EMAIL PROTECTED] with 
>'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT ASP Equivalent to CFHTTP?

2000-09-11 Thread JustinMacCarthy

Look for the aspTear com.

~Justin MacCarthy


- Original Message -
From: "Dick Applebaum" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, September 09, 2000 10:02 PM
Subject: RE: OT ASP Equivalent to CFHTTP?


> Ron
>
> Thanks much... that's *exactly* what I wanted.
>
> I never know what words to search for when looking for ASP/VBS solutions.
>
> Dick
>
> At 3:04 PM -0500 9/9/00, <[EMAIL PROTECTED]> wrote:
> >  > I need to  code part of an application in ASP (yeah, I know, but...).
> >>
> >>  Anyway, I would like to be able to issue the equivalent of of a
> >>  CFHTTP tag to retrieve a page from another server from within the ASP
> >>  program.
> >>
> >>  ... it's just cleaner to do this within the ASP code.
> >
> >http://www.alphasierrapapa.com/iisdev/components/asptear/
> >
> >
> >Ron Allen Hornbaker
> >President/CTO
> >Humankind Systems, Inc.
> >http://humankindsystems.com
> >mailto:[EMAIL PROTECTED]
> >
> >
> >
>
>---
---
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit
> >http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_tal
> >k or send a message to [EMAIL PROTECTED] with
> >'unsubscribe' in the body.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: ASP Mailing Lists (asp-talk?)

2000-06-23 Thread Billy Cravens

I've recently begun a contract where the skillset requires both ASP and
CF.  In addition to brushing up on my ASP skills (been over a year since
I did serious development), I'd like to find a list of the same quality
as this one for ASP.  There's so many of them out there, I thought I'd
ask for suggestions before I start wasting space on the mail server.
Thanks.

--
Billy Cravens
[EMAIL PROTECTED]


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: ASP and GROUP BY problem

2002-05-27 Thread cf-talk

Hi list,
I want to do a GROUP BY statement in
an ASP-Page.
In CF I can do something like:


When I try to do this in ASP included in the SQL-statement
I get an aggregate function error.
(unfortunately in german, so it doesn't make sense to post).

Can s.o. post his ASP-Coding using group BY ?
Thank you

Uwe

  

-- 
Best regards,
 cf-talk  mailto:[EMAIL PROTECTED]

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: WAY WAY OT ASP QUESTION

2002-06-06 Thread Jochem van Dieten

Joshua Tipton wrote:
> Using the FSO I would like to get the last modified date of a file.  Can
> anyone help me?

Google can. http://www.google.com/search?q=FSO+last+modified+date+ASP

Jochem

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: WAY WAY OT ASP QUESTION

2002-06-06 Thread Bosky, Dave



Thanks,
Dave Bosky
 
-Original Message-
From: Joshua Tipton [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, June 06, 2002 11:02 AM
To: CF-Talk
Subject: WAY WAY OT ASP QUESTION

Using the FSO I would like to get the last modified date of a file.  Can
anyone help me?

Josh


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: [OT] ASP equivalent of CFCONTENT?

2000-05-12 Thread Justin MacCarthy

You need to use the  FileSystem Object with
<% Response.ContentType = "Whatever" %>

~Justin MacCarthy

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 12, 2000 5:19 PM
Subject: [OT] ASP equivalent of CFCONTENT?


> Sorry for the OT post, but does anyone know the ASP equivalent of the
> CFCONTENT tag? A client of ours (who only has ASP) needs to serve up
> files securely, and keep them off the webroot.
>
> tia,
> ron
>
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT - ASP (vbscript) equivalent for #JSStringFormat#

2004-09-15 Thread CFDEV
Hi, does anybody knows if there is an equivalent in ASP (vbscript) for the
CF function #JSStringFormat#?

 
Thanks

 
Pat
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE:(OT) ASP equivelant of CFHTTP (& per & php)..

2000-05-09 Thread Leong Yew

I don't think ASP has native support for this. You'll have to use a third
party component like AspHTTP. You can find a listing of the others in
http://www.aspin.com .

Leong

-Original Message-
From: Ben Lowndes [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 10, 2000 1:31 AM
To: CF-Talk
Subject: ASP equivelant of CFHTTP (& per & php)..


Hi

I was hoping you knowledgable people would be able to tell me what various
other scripting languages equivelants are to CFHTTP. I'm writting up a
specification for an XML feed and want to make it as easy as possible for
other developers to get the XML

So if anyone can tell me the equivelant for ASP, PHP and Perl I'd appreciate
it.


Thanks
Ben


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: RE:(OT) ASP equivelant of CFHTTP (& per & php)..

2000-05-10 Thread Ben Lowndes

So ASP doesn't have any native equivelant function to CFHTTP???

So if I'm providing an XML feed and would reccommend CF-ers to use CFHTTP &
CFHTTPPRARM to fetch it, how would I recommend ASP-ers do it??

Ben.



> I don't think ASP has native support for this. You'll have to use a third
> party component like AspHTTP. You can find a listing of the others in
> http://www.aspin.com .
>
> Leong
>
> -Original Message-
> From: Ben Lowndes [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, May 10, 2000 1:31 AM
> To: CF-Talk
> Subject: ASP equivelant of CFHTTP (& per & php)..
>
>
> Hi
>
> I was hoping you knowledgable people would be able to tell me what various
> other scripting languages equivelants are to CFHTTP. I'm writting up a
> specification for an XML feed and want to make it as easy as possible for
> other developers to get the XML
>
> So if anyone can tell me the equivelant for ASP, PHP and Perl I'd
appreciate
> it.
>
>
> Thanks
> Ben
>
> --
--
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.