473,402 Members | 2,072 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,402 software developers and data experts.

something funky

I currently have my website on a NT4 box, all pages work fine.
I am working on moving it over to a win200k web edition server.
I have my connection to my SQL working, copied all the pages to the new
machine without making ANY changes to the pages.
Now when my .asp page queries the database, it takes forever for it to
return any data, and not only does it display incorrectly, it does it
without putting anything in any of the tables that the data is suppose to be
in.

I have the data displayed in a table so it's all nice and neat, but the
table is not being written. When I view the source code after the data is
returned, it only has the data from the database, no mention of any tables,
or the pictures or anything else.

Is there something that has to get done so 2003 will write the tables
properly??
May 2 '06 #1
9 1229
Johnfli wrote:
I currently have my website on a NT4 box, all pages work fine.
I am working on moving it over to a win200k web edition server.
I have my connection to my SQL working, copied all the pages to the
new machine without making ANY changes to the pages.
Now when my .asp page queries the database, it takes forever for it to
return any data, and not only does it display incorrectly, it does it
without putting anything in any of the tables that the data is
suppose to be in.

I have the data displayed in a table so it's all nice and neat, but
the table is not being written. When I view the source code after
the data is returned, it only has the data from the database, no
mention of any tables, or the pictures or anything else.

Is there something that has to get done so 2003 will write the tables
properly??


Suggestions:

Use SQL Profiler to verify that the proper queries are being executed by the
SQL Server

Use a tool such as described here to track what is going on:
http://support.microsoft.com/kb/299986/EN-US/
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
May 2 '06 #2
I will try that, but that still doesn't explain why the rest of the page
isn't being displayed.

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:ur*************@TK2MSFTNGP02.phx.gbl...
Johnfli wrote:
I currently have my website on a NT4 box, all pages work fine.
I am working on moving it over to a win200k web edition server.
I have my connection to my SQL working, copied all the pages to the
new machine without making ANY changes to the pages.
Now when my .asp page queries the database, it takes forever for it to
return any data, and not only does it display incorrectly, it does it
without putting anything in any of the tables that the data is
suppose to be in.

I have the data displayed in a table so it's all nice and neat, but
the table is not being written. When I view the source code after
the data is returned, it only has the data from the database, no
mention of any tables, or the pictures or anything else.

Is there something that has to get done so 2003 will write the tables
properly??


Suggestions:

Use SQL Profiler to verify that the proper queries are being executed by
the
SQL Server

Use a tool such as described here to track what is going on:
http://support.microsoft.com/kb/299986/EN-US/
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

May 2 '06 #3
As you won't have any DB data in your page my guess would be that you have
some kind of error that gets unnoticed. As suggested SQL profiler would be a
good start to see if the right DB is hit and if the query is supposed to
return data...

--
Patrice

"Johnfli" <jo**@ivhs.us> a écrit dans le message de news:
eJ**************@TK2MSFTNGP03.phx.gbl...
I will try that, but that still doesn't explain why the rest of the page
isn't being displayed.

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:ur*************@TK2MSFTNGP02.phx.gbl...
Johnfli wrote:
I currently have my website on a NT4 box, all pages work fine.
I am working on moving it over to a win200k web edition server.
I have my connection to my SQL working, copied all the pages to the
new machine without making ANY changes to the pages.
Now when my .asp page queries the database, it takes forever for it to
return any data, and not only does it display incorrectly, it does it
without putting anything in any of the tables that the data is
suppose to be in.

I have the data displayed in a table so it's all nice and neat, but
the table is not being written. When I view the source code after
the data is returned, it only has the data from the database, no
mention of any tables, or the pictures or anything else.

Is there something that has to get done so 2003 will write the tables
properly??


Suggestions:

Use SQL Profiler to verify that the proper queries are being executed by
the
SQL Server

Use a tool such as described here to track what is going on:
http://support.microsoft.com/kb/299986/EN-US/
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


May 2 '06 #4
Building on Patrice's reply, if there is an ado error, sometimes when
writing to tables, the error is only visible in View Source. This is
because the table cell or row doesn't finish rendering. I know you
have already viewed source, and you can't see any tables being
rendered, but it may just be worth a closer inspection.

--
Mike Brind

Johnfli wrote:
I will try that, but that still doesn't explain why the rest of the page
isn't being displayed.

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:ur*************@TK2MSFTNGP02.phx.gbl...
Johnfli wrote:
I currently have my website on a NT4 box, all pages work fine.
I am working on moving it over to a win200k web edition server.
I have my connection to my SQL working, copied all the pages to the
new machine without making ANY changes to the pages.
Now when my .asp page queries the database, it takes forever for it to
return any data, and not only does it display incorrectly, it does it
without putting anything in any of the tables that the data is
suppose to be in.

I have the data displayed in a table so it's all nice and neat, but
the table is not being written. When I view the source code after
the data is returned, it only has the data from the database, no
mention of any tables, or the pictures or anything else.

Is there something that has to get done so 2003 will write the tables
properly??


Suggestions:

Use SQL Profiler to verify that the proper queries are being executed by
the
SQL Server

Use a tool such as described here to track what is going on:
http://support.microsoft.com/kb/299986/EN-US/
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


May 2 '06 #5
There are not any errors, I did go to the web page suggested and ran what it
said, everything works fine.
As far as viewing the source code: I have done that, and not only does it
not draw any of the tables it is suppose to, it does not display any of the
other information that would be displayed before it even gets to the tables.
"Mike Brind" <pa*******@hotmail.com> wrote in message
news:11*********************@y43g2000cwc.googlegro ups.com...
Building on Patrice's reply, if there is an ado error, sometimes when
writing to tables, the error is only visible in View Source. This is
because the table cell or row doesn't finish rendering. I know you
have already viewed source, and you can't see any tables being
rendered, but it may just be worth a closer inspection.

--
Mike Brind

Johnfli wrote:
I will try that, but that still doesn't explain why the rest of the page
isn't being displayed.

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:ur*************@TK2MSFTNGP02.phx.gbl...
> Johnfli wrote:
>> I currently have my website on a NT4 box, all pages work fine.
>> I am working on moving it over to a win200k web edition server.
>> I have my connection to my SQL working, copied all the pages to the
>> new machine without making ANY changes to the pages.
>> Now when my .asp page queries the database, it takes forever for it to
>> return any data, and not only does it display incorrectly, it does it
>> without putting anything in any of the tables that the data is
>> suppose to be in.
>>
>> I have the data displayed in a table so it's all nice and neat, but
>> the table is not being written. When I view the source code after
>> the data is returned, it only has the data from the database, no
>> mention of any tables, or the pictures or anything else.
>>
>> Is there something that has to get done so 2003 will write the tables
>> properly??
>
> Suggestions:
>
> Use SQL Profiler to verify that the proper queries are being executed
> by
> the
> SQL Server
>
> Use a tool such as described here to track what is going on:
> http://support.microsoft.com/kb/299986/EN-US/
> --
> Microsoft MVP -- ASP/ASP.NET
> Please reply to the newsgroup. The email account listed in my From
> header is my spam trap, so I don't check it very often. You will get a
> quicker response by posting to the newsgroup.
>
>

May 2 '06 #6
it also doesn't even display the response.write I entered for it to show my
the sql query it is running.

"Mike Brind" <pa*******@hotmail.com> wrote in message
news:11*********************@y43g2000cwc.googlegro ups.com...
Building on Patrice's reply, if there is an ado error, sometimes when
writing to tables, the error is only visible in View Source. This is
because the table cell or row doesn't finish rendering. I know you
have already viewed source, and you can't see any tables being
rendered, but it may just be worth a closer inspection.

--
Mike Brind

Johnfli wrote:
I will try that, but that still doesn't explain why the rest of the page
isn't being displayed.

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:ur*************@TK2MSFTNGP02.phx.gbl...
> Johnfli wrote:
>> I currently have my website on a NT4 box, all pages work fine.
>> I am working on moving it over to a win200k web edition server.
>> I have my connection to my SQL working, copied all the pages to the
>> new machine without making ANY changes to the pages.
>> Now when my .asp page queries the database, it takes forever for it to
>> return any data, and not only does it display incorrectly, it does it
>> without putting anything in any of the tables that the data is
>> suppose to be in.
>>
>> I have the data displayed in a table so it's all nice and neat, but
>> the table is not being written. When I view the source code after
>> the data is returned, it only has the data from the database, no
>> mention of any tables, or the pictures or anything else.
>>
>> Is there something that has to get done so 2003 will write the tables
>> properly??
>
> Suggestions:
>
> Use SQL Profiler to verify that the proper queries are being executed
> by
> the
> SQL Server
>
> Use a tool such as described here to track what is going on:
> http://support.microsoft.com/kb/299986/EN-US/
> --
> Microsoft MVP -- ASP/ASP.NET
> Please reply to the newsgroup. The email account listed in my From
> header is my spam trap, so I don't check it very often. You will get a
> quicker response by posting to the newsgroup.
>
>

May 2 '06 #7
Does it work if you just Response.Write something at the very beginning and
then Response.End to terminate ? From there you should be able to find out
by trials and displays at which point it seems to stop.

If it doesn't work at all seems like you see something cached or you don't
run the expected page...

Good luck.

--
Patrice

"Johnfli" <jo**@ivhs.us> a écrit dans le message de news:
O4**************@TK2MSFTNGP03.phx.gbl...
it also doesn't even display the response.write I entered for it to show
my the sql query it is running.

"Mike Brind" <pa*******@hotmail.com> wrote in message
news:11*********************@y43g2000cwc.googlegro ups.com...
Building on Patrice's reply, if there is an ado error, sometimes when
writing to tables, the error is only visible in View Source. This is
because the table cell or row doesn't finish rendering. I know you
have already viewed source, and you can't see any tables being
rendered, but it may just be worth a closer inspection.

--
Mike Brind

Johnfli wrote:
I will try that, but that still doesn't explain why the rest of the page
isn't being displayed.

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:ur*************@TK2MSFTNGP02.phx.gbl...
> Johnfli wrote:
>> I currently have my website on a NT4 box, all pages work fine.
>> I am working on moving it over to a win200k web edition server.
>> I have my connection to my SQL working, copied all the pages to the
>> new machine without making ANY changes to the pages.
>> Now when my .asp page queries the database, it takes forever for it
>> to
>> return any data, and not only does it display incorrectly, it does it
>> without putting anything in any of the tables that the data is
>> suppose to be in.
>>
>> I have the data displayed in a table so it's all nice and neat, but
>> the table is not being written. When I view the source code after
>> the data is returned, it only has the data from the database, no
>> mention of any tables, or the pictures or anything else.
>>
>> Is there something that has to get done so 2003 will write the tables
>> properly??
>
> Suggestions:
>
> Use SQL Profiler to verify that the proper queries are being executed
> by
> the
> SQL Server
>
> Use a tool such as described here to track what is going on:
> http://support.microsoft.com/kb/299986/EN-US/
> --
> Microsoft MVP -- ASP/ASP.NET
> Please reply to the newsgroup. The email account listed in my From
> header is my spam trap, so I don't check it very often. You will get a
> quicker response by posting to the newsgroup.
>
>


May 3 '06 #8
Actaully, I found that it is somethign my loop is doing to display teh data.
If I comment out teh absolute page line, the page displays, only one page of
data, but it is at least showing that it partially works. Please see the
post I made about "Current Recordset...."

"Patrice" <sc****@chez.com> wrote in message
news:OO****************@TK2MSFTNGP03.phx.gbl...
Does it work if you just Response.Write something at the very beginning
and then Response.End to terminate ? From there you should be able to find
out by trials and displays at which point it seems to stop.

If it doesn't work at all seems like you see something cached or you don't
run the expected page...

Good luck.

--
Patrice

"Johnfli" <jo**@ivhs.us> a écrit dans le message de news:
O4**************@TK2MSFTNGP03.phx.gbl...
it also doesn't even display the response.write I entered for it to show
my the sql query it is running.

"Mike Brind" <pa*******@hotmail.com> wrote in message
news:11*********************@y43g2000cwc.googlegro ups.com...
Building on Patrice's reply, if there is an ado error, sometimes when
writing to tables, the error is only visible in View Source. This is
because the table cell or row doesn't finish rendering. I know you
have already viewed source, and you can't see any tables being
rendered, but it may just be worth a closer inspection.

--
Mike Brind

Johnfli wrote:
I will try that, but that still doesn't explain why the rest of the
page
isn't being displayed.

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:ur*************@TK2MSFTNGP02.phx.gbl...
> Johnfli wrote:
>> I currently have my website on a NT4 box, all pages work fine.
>> I am working on moving it over to a win200k web edition server.
>> I have my connection to my SQL working, copied all the pages to the
>> new machine without making ANY changes to the pages.
>> Now when my .asp page queries the database, it takes forever for it
>> to
>> return any data, and not only does it display incorrectly, it does
>> it
>> without putting anything in any of the tables that the data is
>> suppose to be in.
>>
>> I have the data displayed in a table so it's all nice and neat, but
>> the table is not being written. When I view the source code after
>> the data is returned, it only has the data from the database, no
>> mention of any tables, or the pictures or anything else.
>>
>> Is there something that has to get done so 2003 will write the
>> tables
>> properly??
>
> Suggestions:
>
> Use SQL Profiler to verify that the proper queries are being executed
> by
> the
> SQL Server
>
> Use a tool such as described here to track what is going on:
> http://support.microsoft.com/kb/299986/EN-US/
> --
> Microsoft MVP -- ASP/ASP.NET
> Please reply to the newsgroup. The email account listed in my From
> header is my spam trap, so I don't check it very often. You will get
> a
> quicker response by posting to the newsgroup.
>
>



May 3 '06 #9
So how did you finally get the error to show?

--
Mike Brind

Johnfli wrote:
Actaully, I found that it is somethign my loop is doing to display teh data.
If I comment out teh absolute page line, the page displays, only one pageof
data, but it is at least showing that it partially works. Please see the
post I made about "Current Recordset...."

"Patrice" <sc****@chez.com> wrote in message
news:OO****************@TK2MSFTNGP03.phx.gbl...
Does it work if you just Response.Write something at the very beginning
and then Response.End to terminate ? From there you should be able to find
out by trials and displays at which point it seems to stop.

If it doesn't work at all seems like you see something cached or you don't
run the expected page...

Good luck.

--
Patrice

"Johnfli" <jo**@ivhs.us> a écrit dans le message de news:
O4**************@TK2MSFTNGP03.phx.gbl...
it also doesn't even display the response.write I entered for it to show
my the sql query it is running.

"Mike Brind" <pa*******@hotmail.com> wrote in message
news:11*********************@y43g2000cwc.googlegro ups.com...
Building on Patrice's reply, if there is an ado error, sometimes when
writing to tables, the error is only visible in View Source. This is
because the table cell or row doesn't finish rendering. I know you
have already viewed source, and you can't see any tables being
rendered, but it may just be worth a closer inspection.

--
Mike Brind

Johnfli wrote:
> I will try that, but that still doesn't explain why the rest of the
> page
> isn't being displayed.
>
>
>
> "Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
> news:ur*************@TK2MSFTNGP02.phx.gbl...
> > Johnfli wrote:
> >> I currently have my website on a NT4 box, all pages work fine.
> >> I am working on moving it over to a win200k web edition server.
> >> I have my connection to my SQL working, copied all the pages to the
> >> new machine without making ANY changes to the pages.
> >> Now when my .asp page queries the database, it takes forever for it
> >> to
> >> return any data, and not only does it display incorrectly, it does
> >> it
> >> without putting anything in any of the tables that the data is
> >> suppose to be in.
> >>
> >> I have the data displayed in a table so it's all nice and neat, but
> >> the table is not being written. When I view the source code after
> >> the data is returned, it only has the data from the database, no
> >> mention of any tables, or the pictures or anything else.
> >>
> >> Is there something that has to get done so 2003 will write the
> >> tables
> >> properly??
> >
> > Suggestions:
> >
> > Use SQL Profiler to verify that the proper queries are being executed
> > by
> > the
> > SQL Server
> >
> > Use a tool such as described here to track what is going on:
> > http://support.microsoft.com/kb/299986/EN-US/
> > --
> > Microsoft MVP -- ASP/ASP.NET
> > Please reply to the newsgroup. The email account listed in my From
> > header is my spam trap, so I don't check it very often. You will get
> > a
> > quicker response by posting to the newsgroup.
> >
> >



May 3 '06 #10

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

Similar topics

3
by: Martin Lucas-Smith | last post by:
I am trying to take a string and split it into a filename and a number where the number is what follows the *last* instance of a comma in that string. Split and explode won't work because if the...
8
by: Sam Sungshik Kong | last post by:
Hello! I use Python for ASP programming. I found something weird. Response.Write(Request("something")) It draws "None" when there's no value for something. Actually I expect "" instead of...
7
by: Jonas Galvez | last post by:
Hi, I need a function to parse badly encoded 'Subject' headers from e-mails, such as the following: =?ISO-8859-1?Q?Murilo_Corr=EAa?= =?ISO-8859-1?Q?Marcos_Mendon=E7a?= I tried using the...
1
by: gene.ellis | last post by:
Put simply, I have a text box, and people commonly cut + paste information into this text box from Microsoft word. The problem is that word has all types of funky characters (smart quotes,...
44
by: Tolga | last post by:
As far as I know, Perl is known as "there are many ways to do something" and Python is known as "there is only one way". Could you please explain this? How is this possible and is it *really* a...
3
by: Tracy | last post by:
Just recently have I noticed that when we run our production application it is adding some funky directory to the address, (fwuhjo45ohmpj35552vwim55), which doesn't exist but it still works. This...
12
by: comp.lang.php | last post by:
I have a textarea where people can cut & paste their resume. Unfortunately they often cut & paste their Word resume into the textarea, funky characters and all. This causes the display to be...
7
by: cj | last post by:
I'm sure it's simple but it's new to me I can dim x as new something which defines x as a new instance of something in one statement. I can also dim x as something then later make x = new...
0
by: Protoman | last post by:
I wrote a DHM key exchange program that has something funky going on: the number that you have to send to your friend is completely wrong, but the session key it generates is correct. Wha? Code:...
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: 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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.