Skip to main content
Inspiring
September 7, 2007
Question

ASP Commands not listed

  • September 7, 2007
  • 4 replies
  • 587 views
After upgrading to CS3, my Commands no longer display (and therefore unable
to edit except in Code View) in the Server Behaviors window. They still
display properly in DW8. Is this a known issue, or is it my installation?

This topic has been closed for replies.

4 replies

Participant
October 3, 2007
Workaround:

Go to \Program Files\Adobe\Adobe Dreamweaver CS3\configuration\ServerBehaviors\ASP_Vbs
Move 5 files to a save place outside the ASP_Vbs folder
- Command2.edml
- Command2_main.edml
- Command2_variable.edml
- Command.js
- commandVariable.edml

Replace them with the same files from your DW8.0.2 configuration.
Participant
October 13, 2007
I cannot find those files in DW8. The only files I find is command.htm and command.js. No other files that recembles the names you are given.

I also need to work with commands so I installed my old 8 just to copy the files.
Participant
July 16, 2008
I'm running into this problem too though it looks like this post was started a year ago. Does adobe have a patch for this yet?

Inspiring
September 10, 2007
> After speaking to Adobe they say it is a bug, and may/may not be fixed in
> the
> next release.
>
> As a work around you can use Recordsets to do exactly the same thing as
> Commands, well almost, you can call Stored Procedures which do the same
> things
> as your command, but depends what your command is doing I guess.


Thank you.

I need to use Commands in some places and Recordsets in others; my
workaround is to go back to DW8 for editing Commands.


September 10, 2007
After speaking to Adobe they say it is a bug, and may/may not be fixed in the next release.

As a work around you can use Recordsets to do exactly the same thing as Commands, well almost, you can call Stored Procedures which do the same things as your command, but depends what your command is doing I guess.

Steve
Inspiring
September 8, 2007
> After upgrading to CS3, my Commands no longer display (and therefore
> unable to edit except in Code View) in the Server Behaviors window. They
> still display properly in DW8. Is this a known issue, or is it my
> installation?


Found some other mentions of the same problem:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=263&threadid=1281539&enterthread=y
I have confirmed this to be only with CS3... I can still create and edit my
commands with DW8, but CS3 leaves incomplete code on the page, with no way
of editing the command other than in code view:

Dim Command1__@@varName@@
Command1__@@varName@@ = "@@defaultValue@@"
If (@@runtimeValue@@ <> "") Then
Command1__@@varName@@ = @@runtimeValue@@
End If