473,387 Members | 1,700 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Begin asp

I can't seem to get started. I cannot run an asp script on my personal web
server (my laptop) I can go to it's home page ok but to run an asp page it
just sits there and says web page found waitng for reply, with an horglass.
Where do I begin?

Thanks
Paul
Jul 19 '05 #1
10 1433
What does your code look like?

Ray at work

"Paul Ilacqua" <pi******@twcny.rr.com> wrote in message
news:OB**************@tk2msftngp13.phx.gbl...
I can't seem to get started. I cannot run an asp script on my personal web
server (my laptop) I can go to it's home page ok but to run an asp page it
just sits there and says web page found waitng for reply, with an horglass. Where do I begin?

Thanks
Paul

Jul 19 '05 #2
Ray,
I have a working machine where the code I'm using is working just fine.
It's just canned examples from a book. I connect to SQL Server or Access
just fine.
That's why I'm frustrated. It's my development machine that has this
problem. The setup looks identical to the "working" machine. I don't mind
the work to troubleshoot it, I just don't know where to start.

Thanks
Paul


"Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
message news:u5**************@tk2msftngp13.phx.gbl...
What does your code look like?

Ray at work

"Paul Ilacqua" <pi******@twcny.rr.com> wrote in message
news:OB**************@tk2msftngp13.phx.gbl...
I can't seem to get started. I cannot run an asp script on my personal web server (my laptop) I can go to it's home page ok but to run an asp page it just sits there and says web page found waitng for reply, with an

horglass.
Where do I begin?

Thanks
Paul


Jul 19 '05 #3
"Paul Ilacqua" <pi******@twcny.rr.com> wrote in message
news:uJ*************@TK2MSFTNGP09.phx.gbl...
Ray,
I have a working machine where the code I'm using is working just fine. It's just canned examples from a book. I connect to SQL Server or Access just fine.
That's why I'm frustrated. It's my development machine that has this
problem. The setup looks identical to the "working" machine. I don't mind the work to troubleshoot it, I just don't know where to start.


A good place to start would be to show us the code, as Ray suggested. It
sounds like you forgot a Recordset.MoveNext call, but without seeing the
code, we'll never know.

-Chris Hohmann
Jul 19 '05 #4
Paul Ilacqua wrote:
Ray,
I have a working machine where the code I'm using is working just
fine. It's just canned examples from a book. I connect to SQL Server
or Access just fine.
That's why I'm frustrated. It's my development machine that has this
problem. The setup looks identical to the "working" machine. I don't
mind the work to troubleshoot it, I just don't know where to start.


A good place to start is to create a simple HelloWorld.asp page and see if
that runs:

<%
Response.Write "Hello World"
%>

HTH,
Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '05 #5
No... the hello world script does not run. it just sits there with the
status bar barely moving saying opening... Like I said I'm sure the code is
OK because it works fine on another machine.

Thanks so far
Paul

"Bob Barrows" <re******@NOyahoo.SPAMcom> wrote in message
news:OR****************@TK2MSFTNGP09.phx.gbl...
Paul Ilacqua wrote:
Ray,
I have a working machine where the code I'm using is working just
fine. It's just canned examples from a book. I connect to SQL Server
or Access just fine.
That's why I'm frustrated. It's my development machine that has this
problem. The setup looks identical to the "working" machine. I don't
mind the work to troubleshoot it, I just don't know where to start.


A good place to start is to create a simple HelloWorld.asp page and see if
that runs:

<%
Response.Write "Hello World"
%>

HTH,
Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Jul 19 '05 #6
OK, now we are getting somewhere. We have now determined that no outside
dll's are involved in this problem. ASP is simply not running. Without
details about your OS or IIS version it's hard to provide further
assistance. Here's an article over at aspfaq that may contain your answer:
http://www.aspfaq.com/show.asp?id=2147

Here is another:
http://www.aspfaq.com/show.asp?id=2476

HTH,
Bob Barrows

Paul Ilacqua wrote:
No... the hello world script does not run. it just sits there with the
status bar barely moving saying opening... Like I said I'm sure the
code is OK because it works fine on another machine.

Thanks so far
Paul


--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '05 #7
On Mon, 22 Mar 2004 19:58:55 -0500, "Paul Ilacqua"
<pi******@twcny.rr.com> wrote:
No... the hello world script does not run. it just sits there with the
status bar barely moving saying opening... Like I said I'm sure the code is
OK because it works fine on another machine.
The code may or may not be okay. There are differences between the
systems, so the code may need changes. Or permissions may need to be
changed on the system. Without specifics, we can't really point to
much, we don't even know what operating system you use.

Start with the Hello World! script and don't even attempt your other
code until it works. Tell us how you're running it, what URL you use
in the browser, error messages that appear if any, whether a plain
HTML file works and so on. And please at least clue us in on your
operating system on the laptop.

Jeff
"Bob Barrows" <re******@NOyahoo.SPAMcom> wrote in message
news:OR****************@TK2MSFTNGP09.phx.gbl...
Paul Ilacqua wrote:
> Ray,
> I have a working machine where the code I'm using is working just
> fine. It's just canned examples from a book. I connect to SQL Server
> or Access just fine.
> That's why I'm frustrated. It's my development machine that has this
> problem. The setup looks identical to the "working" machine. I don't
> mind the work to troubleshoot it, I just don't know where to start.
>


A good place to start is to create a simple HelloWorld.asp page and see if
that runs:

<%
Response.Write "Hello World"
%>

HTH,
Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


Jul 19 '05 #8
OS is Win2K with all updates. Call is http://barcodehome/w.asp where w.asp
is the Hello World Script File.
http://barcodehome/ brings up my home page, that does not contain any ASP.
So it looks like ASP is the
culprit. When I enter http://barcodehome/w.asp in the Start - run box I get
web site found. Waiting for reply... in the bottom left status bar. The
progress bar creeps along on the bottom right, and will run on forever.
I appreciate all your help.

Paul

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40****************@msnews.microsoft.com...
On Mon, 22 Mar 2004 19:58:55 -0500, "Paul Ilacqua"
<pi******@twcny.rr.com> wrote:
No... the hello world script does not run. it just sits there with the
status bar barely moving saying opening... Like I said I'm sure the code isOK because it works fine on another machine.


The code may or may not be okay. There are differences between the
systems, so the code may need changes. Or permissions may need to be
changed on the system. Without specifics, we can't really point to
much, we don't even know what operating system you use.

Start with the Hello World! script and don't even attempt your other
code until it works. Tell us how you're running it, what URL you use
in the browser, error messages that appear if any, whether a plain
HTML file works and so on. And please at least clue us in on your
operating system on the laptop.

Jeff
"Bob Barrows" <re******@NOyahoo.SPAMcom> wrote in message
news:OR****************@TK2MSFTNGP09.phx.gbl...
Paul Ilacqua wrote:
> Ray,
> I have a working machine where the code I'm using is working just
> fine. It's just canned examples from a book. I connect to SQL Server
> or Access just fine.
> That's why I'm frustrated. It's my development machine that has this
> problem. The setup looks identical to the "working" machine. I don't
> mind the work to troubleshoot it, I just don't know where to start.
>

A good place to start is to create a simple HelloWorld.asp page and see if that runs:

<%
Response.Write "Hello World"
%>

HTH,
Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Jul 19 '05 #9
> "Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40****************@msnews.microsoft.com...
On Mon, 22 Mar 2004 19:58:55 -0500, "Paul Ilacqua"
<pi******@twcny.rr.com> wrote:
No... the hello world script does not run. it just sits there with the
status bar barely moving saying opening... Like I said I'm sure the

code

Do you have Norton Antivirus? Have you enabled script blocking? If so,
disable it.
--
John Blessing

http://www.LbeHelpdesk.com - Help Desk software priced to suit all
businesses
http://www.free-helpdesk.com - Completely free help desk software !
http://www.lbetoolbox.com - Remove Duplicates from MS Outlook
Jul 19 '05 #10
John ,
I have MCaffe and I disabled script blocking and that was it. Thanks to
all.
Paul

"John Blessing" <jb@**REMOVE**THIS**LbeHelpdesk.com> wrote in message
news:Ko******************@newsfep4-glfd.server.ntli.net...
"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40****************@msnews.microsoft.com...
On Mon, 22 Mar 2004 19:58:55 -0500, "Paul Ilacqua"
<pi******@twcny.rr.com> wrote:

>No... the hello world script does not run. it just sits there with the >status bar barely moving saying opening... Like I said I'm sure the

code

Do you have Norton Antivirus? Have you enabled script blocking? If so,
disable it.
--
John Blessing

http://www.LbeHelpdesk.com - Help Desk software priced to suit all
businesses
http://www.free-helpdesk.com - Completely free help desk software !
http://www.lbetoolbox.com - Remove Duplicates from MS Outlook

Jul 19 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Steve Thorpe | last post by:
Hi have have two linked SQL Servers and I am trying to get things working smootly/quickly. Should I be using 'BEGIN TRANSACTION' or 'BEGIN DISTRIBUTED TRANSACTION' ? Basicly, these SPs update...
11
by: snnn | last post by:
On the book <Generic Programming and the STL>( Matthew . H . Austern ),this function is defined as iterator set::begin() const. However, why should a const object returns a non-const iterator?...
2
by: diadia | last post by:
string s = "hello"; const char *p = s.begin(); cout << p << endl; // print hello s = ""; char *p2= s.begin(); cout << p2 << endl; // print hello why?????
18
by: pmatos | last post by:
Hi, If I have set<unsigned int> s; will *(s.begin()) give me the minimum element of the set? If not, how can I retrieve it? Cheers, Paulo Matos
2
by: gabriel | last post by:
Greetings, I am adding foreign keys to a database and saving the generated scripts. What I do not understand is that all script begin with empty transactions. Why ? Example follows : /*
2
by: Nick Keighley | last post by:
Hi, I'm trying to iterate over a container class. The class actually contains a std::map, so I thought all I'd have to implement begin() and end(). The example code has a problem in begin() ...
1
by: Karl O. Pinc | last post by:
FYI, mostly. But I do have questions as to how to write code that will continue to work in subsequent postgresql versions. See code below. begintest() uses EXIT to exit a BEGIN block from...
2
by: serge | last post by:
/* Subject: How best to use BETWEEN Begin and End Dates to find out if an employee was/is member of any group for a certain date range? You can copy/paste this whole post in SQL Query Analyzer...
11
by: food4uk | last post by:
Dear all : I am not good at programming, please give a hand. My data structure is very similar as an array. I actually can use the std::vector as container to organize my data objects. However,...
5
by: Andrew Wingorodov | last post by:
im made subj like this: inline bool isnt_space (int sp) { return (::isspace (sp)) ? false : true; } str.erase ( std.begin () , std::find_if ( str.begin(), str.end(), isnt_space) );
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.