 |
| Classic ASP Professional For advanced coder questions in ASP 3. NOT for ASP.NET 1.0, 1.1, or 2.0. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

August 18th, 2006, 03:42 AM
|
|
Authorized User
|
|
Join Date: Aug 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Asp manually edit
I have a 'big' problem, I need help from you.
I've got some asp 3.0 software application, and I was very dissatisfied, when I saw I cannot edit it manually.
But if I try with FrontPage it is OK ; in local, but I have to upload files on my dedicated server abroad.
I cannot find solution.
Please help me, thank you in advance,
|
|

August 18th, 2006, 03:48 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Heuh?
Can you elaborate? What do you mean with "some asp 3.0 software application" and with "cannot edit it manually" and "But if I try with FrontPage it is OK".
What is the problem? What solution are you looking for?
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of ASP.NET 2.0 Instant Results and Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out this post.
|
|

August 18th, 2006, 05:04 AM
|
|
Authorized User
|
|
Join Date: Aug 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Every changes I make in asp code (with Notepad), I cannot see, as I didn't made. (something as in asp.net where you have application .dll, and you have to build application to see changes).
With FrontPage, I load asp page, make change, save and it's OK.
I want to edit asp pages with Notepad.
There is another information I got :
Web Publishing Information
The HTML comments in this page contain the configurationinformation that allows users to edit pages in your web using the Microsoft Web Publishing Wizard or programs which use the Microsoft Web Publishing Wizard such as FrontPad using the same username and password they would use if they were authoring with Microsoft FrontPage. Please refer to the Microsoft's Internet SDK for more information on the Web Publishing Wizard APIs.
|
|

August 18th, 2006, 05:38 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
It could be me, but I still don't get it. If you want to use Notepad to edit ASP pages, then just use Notepad.... But I don't think this is what you are asking.
Can you be more *specific* about your problem? Sentences likes this don't really describe your situation or problem:
Quote:
|
quote:Every changes I make in asp code (with Notepad), I cannot see, as I didn't made
|
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of ASP.NET 2.0 Instant Results and Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out this post.
|
|

August 24th, 2006, 07:12 AM
|
|
Authorized User
|
|
Join Date: Aug 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I'll try to explain. When I edit/change somenthing in my .asp pages, I cannot see thar, until I reset IIS. When I reset IIS, I can see changes, what I made.
I have another asp 3.0 applications on my computer and I did not have problems like that.
|
|

August 24th, 2006, 07:17 AM
|
|
Authorized User
|
|
Join Date: Aug 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Is it cache problem ?
|
|

August 24th, 2006, 07:26 AM
|
|
Wrox Author
|
|
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
|
|
If you are, in fact, saving the page back to the correct Internet share you should see your changes. You said that you were using FP and it may have to do with editing the page outside of FP (though I am not sure I have never used FP for anything) but if you are positive that file was uploaded to the correct directory and when you navigate to your page the changes aren't there try pressing CTRL + R (IE) which will force a refresh from the server.
HTH
"The one language all programmers understand is profanity."
|
|

August 24th, 2006, 07:50 AM
|
|
Authorized User
|
|
Join Date: Aug 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I have never used FP too, and I dont want to use him.
I didn't make application, I got it.
Example : I'm working in local (asp 3.0 application is at my computer). I have .asp pages and .xslt pages. If I make change (with Notepad) in my pages I cannot see it without reset/restart IIS.
If I make change (with FrontPage) in .asp pages, it's OK. I can see it when I start IE. But if I make change in .xslt pages (with FP) I cannot see it without reset/restart IIS.
Is it cache problem or ......?
|
|

August 24th, 2006, 08:33 AM
|
|
Wrox Author
|
|
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
|
|
It may be a cache problem but I have never heard of this problem (or encountered it for that matter). If you want to force your asp pages to not cache, place this at the top of your files:
<% Response.CacheControl = "no-cache" %>>
<% Response.AddHeader "Pragma", "no-cache" %>
<% Response.Expires = -1 %>
"The one language all programmers understand is profanity."
|
|
 |