Classic ASP support in Dreamweaver CC missing

The prime reason why I bought CC is for a website that requires Classic ASP support. (I am returning back to Dreamweave after 8 years), to my surprise, I found ASP is not in the list, Nor ASP.NET.
This is very BAD.
Before cancelling my CC subscription, I like to give one last try to post my request here.
Is there any way I can gain ASP support in Dreamweaver CC?
Thanks,
Benny

Moved from Cloud forum to Dreamweaver forum
See http://forums.adobe.com/thread/1236507

Similar Messages

  • Tree / Grid component for Classic ASP

    Hello,
    I'm looking for a tree-grid component that will display a
    parent table grid,
    and display the child records when a "+" detail request is
    selected.
    I need to let users edit and save both the parent and child.
    Both parent
    and child will contain pull-down menus for some fields too.
    Any
    recommendations?
    I looked at Nitobi which is a Ajax thing that supports ASP
    classic, and
    integrates into Dreamweaver, but I found this version is a
    little fragile
    and buggy.
    Thanks,
    Bob

    www.aspgrid.com does the grid, but not the tree.
    "Ted Dawson" <[email protected]> wrote in message
    news:g1vl3s$odu$[email protected]..
    >> Hello,
    >>
    >> I'm looking for a tree-grid component that will
    display a parent table
    >> grid, and display the child records when a "+"
    detail request is
    >> selected.
    >>
    >> I need to let users edit and save both the parent
    and child. Both
    >> parent and child will contain pull-down menus for
    some fields too. Any
    >> recommendations?
    >>
    >> I looked at Nitobi which is a Ajax thing that
    supports ASP classic, and
    >> integrates into Dreamweaver, but I found this
    version is a little fragile
    >> and buggy.
    >
    >
    >
    >
    http://www.aspgrid.com/
    >

  • Crystal Report and Classic asp

    Hello all,
    I want to know how to use ASP3.0(Classic) and Crystal Report10.0.
    I used Begin here sample from our forum but it is giving error
    like Error Occurred Reading Records: Logon failed. Details: ADO Error Code: 0x80040e4d Source: Microsoft OLE DB Provider for SQL Server Description: Login failed for user 'sa'. SQL State: 42000 Native Error: 18456
    Please help me in this regard asap.
    Thanks in Advance,
    Vamsi
    Edited by: vamsidhar on Sep 10, 2011 7:25 PM

    The reasons I want you to have SP 6 is because
    1) It is the latest fix release and I will not work on anything not patched with the latest fixes. E.g.; why test on an older runtime when the new one may already have the solution?
    2) You mentioned you want to be using IE 8. And as the blog I refered you to (Report Designer Component (RDC) in classic ASP applications on Win 2008 Server and Win 7 - Possible Solutions) states;
    "...this blog only applies to Crystal Reports XI release 2, patched up to Service Pack 6 ..."
    As to how to find SP 6. You could use the search box at the top right of this web page and type in "service pack 6 crystal" - without the quotes and the 5th hit is a KBase:
    [1421033  - Where to find Crystal Reports XI R2 Service Pack 6|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do]
    Alternatively, you could go to the downloads page directly at http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm, select the product and voila. Anyhow, SP 6 link:
    https://smpdl.sap-ag.de/~sapidp/012002523100015859952009E/crxir2win_sp6.exe
    SP 6 RDC MSM:
    https://smpdl.sap-ag.de/~sapidp/012002523100000634032010E/crxir2sp6_rdc_mm.zip
    Which you can also find at the above downloads page.
    BTW.; since you are a "newbee" in all of this, why not be a newbee in a technology that will take you some distance? CR XI R2 is the last version to ship the RDC (e.g.; RDC has been retired). Patch support had expired in June of this year. Any support expires next June. If you go with .NET or Java, you are assured years of support...
    Ludek

  • Classic ASP web app trying to acces remote SQL Server.

    Hi
    I have a classic asp web application which accessing a remote SQL Server 200. I am trying to connect using the following connection string in Global.asa file. For some reason not connecting to the remote SQL Server 200. The string is as follows.
    Session("dsn") = "provider=SQLOLEDB;app=AppName;server=SERVERNAME;uid=;password=;database=DBName;Trusted_Connection=No"
    Session("datadsn") = "data provider=SQLOLEDB;app=AppName;server=SERVERNAME;uid=;password=;database=DBName;Trusted_Connection=No"
    Session("server") = "SERVERNAME"
    Let me know if I am missing something or doing something wrong?
    Varun

    SQL Server Error Log has no error
    But I found couple of errors in Application EventViewer
    The VB Application identified by the event source logged this Application Globalization: Thread ID: 5312 ,Logged: -2147168246 New transaction cannot enlist in the specified transaction coordinator.  Error Source: Microsoft OLE DB Provider for SQL Server->ValidateUser
    A caller has attempted to propagate a transaction to a remote system, but MSDTC network DTC access is currently disabled on machine 'MyMachineName'. Please review the MS DTC configuration settings.
    Varun

  • Struggling with SMTP and classic ASP application

    I have a classic ASP application that I'm moving from 2003 to 2012. On 2003 it used CDONTS to send email, as this is not supported I am converting it to CDOSYS as follows;
    Dim ObjSendMail
    Dim iConf
    Dim Flds
    Set ObjSendMail = Server.CreateObject("CDO.Message")
    Set iConf = Server.CreateObject("CDO.Configuration")
    Set Flds = iConf.Fields
    With Flds
    .Item(cdoSendUsingMethod) = 2
    .Item(cdoSMTPusessl) = 1
    .Item(cdoSMTPServer) = "xxxx.xxxx.net"
    .Item(cdoSendUserName) = "[email protected]"
    .Item(cdoSendPassword) = "xxxxxx"
    .Item(cdoSMTPServerPort) = 6000
    .Item(cdoSMTPconnectiontimeout) = 30
    .Update
    End With
    Set ObjSendMail.Configuration = iConf
    Set ObjSendMail.Configuration = iConf
    ObjSendMail.To = request.form("Supplier_Email")
    ObjSendMail.Subject = "order from "&buname
    ObjSendMail.From = request.form("copy")
    ' we are sending a text email.. simply switch the comments around to send an html email instead
    ObjSendMail.HTMLBody = request.form("email_body")
    'ObjSendMail.TextBody = "this is the body"
    ObjSendMail.Send
    However, it worked fine on 2003 but I get 
    CDO.Message.1 error '80040213'
    The transport failed to connect to the server. on the send.
    I think it's a problem with the SMTP configuration, but I don;t know how to check it.
    Any ideas?
    Regards
    Pete

    Hi,
    As this thread has been quiet for a while, we will mark it as ‘Answered’ as the information provided should be helpful. If you need further help, please feel free to reply this post directly so we will be notified to follow it up. You can also choose to unmark
    the answer as you wish.
    BTW, we’d love to hear your feedback about the solution. By sharing your experience you can help other community members facing similar problems. Thanks for your understanding and efforts.
    Best
    regards,
    Susie

  • Have XI Developer, do I need Enterprise or CR XI Server to run Classic .asp

    Hi,
    We've upgraded from CR 8.5 to CR XI with a new Windows Server and new SQL Server. Do I need to purchase CR Server or BO Enterprise to make Classic ASP applications that open .RPT files created under the old version?
    I can't get the .RPT files to open.  Seems like the ActiveXViewer isn't loading, but it may be something else.
    Thanks

    That specific functionality is no longer supported.
    Here's the options:
    1. Create an ASP application using the Report Designer Component SDK to retrieve the rpt file and display.  You have the RDC as long as you have XI Developer edition.  One caveat is that the RDC is deprecated with XI Release 2, and is no longer available with Crystal Reports 2008, the newest version.
    2. Create an ASP.NET application using the Crystal Reports .NET SDK to retrieve the rpt file and display.  You have CR.NET with the Developer edition.
    3. Crystal Reports Server or BusinessObjects Enterprise supports "managed URL reporting", where you'd publish the rpt to be managed by the Enterprise system.  Then you can refer to the report using a URL.  
    Sincerely,
    Ted Ueda

  • Crystal Reports, Classical ASP and Internet Explorer 8.0 compatibility

    Hi
    We have 8 legacy applications which are developed on classical asp having reports built on crystal reports 8.0. Our internet explorer version is 6.0. We are planning to upgrade to IE 8.0 in the next month. While testing these legacy applications for compatibility with IE 8.0, we found that the crystal reports are not visible/not functioning.
    Do you know which version of crystal reports will be compatible with IE 8.0 as well as classical asp. Our OS is windows 2003 32 bit.
    regards

    Hello,
    You didn't indicate whether you're using the RDC / COM SDK for Crystal Reports, or the COM SDK for Crystal Enterprise in your classic ASP applications.
    In either case, the COM SDKs have been retired with our current product releases. The last products to support the COM SDK are Crystal Reports XI Release 2 (v11.5) and BusinessObjects Enterprise Release 2 (v11.5). Both of these products have reached End of Life for patch support.
    The [Supported Platform document for Crystal Reports XI R2 with Service Pack 6|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0fbebaf-07e0-2c10-ad9a-d45810ae7109] (v11.5) says that IE8 in compatibility mode is supported, so the RDC should work in IE8 Compatibility mode.
    The [Support Platform document for BusinessObjects XI R2 with Service Pack 6|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/50e8f572-48d0-2c10-4ea6-83bf8567e28a] (v11.5) says that IE7 is supported. There is no mention of IE8, but it's possible that IE8 in compatibility mode may work with the Enterprise COM SDK.
    You may still be able to purchase these products. You'll have to check with your retailers, or with the SAP BusinessObjects Sales team - search on SAP.com.
    It is important to understand that patch support has ended for both CR XI R2 and BOE XI R2. There will be no additional fixes released for these products, and if your applications do not work with IE 8 there is no escalation path for a fix.
    Sincerely,
    Dan Kelleher

  • DW 9 crashes in classic ASP when ASP inside select tag.

    I'm updating a site written in classic ASP with Dreamweaver CS3, 9.0.  Dreamweaver is crashing to the desktop whenever I encounter a page that has ASP code within the Option tags of a Select list, like the example below.  Rather then recoding all of the pages, is there a way to get Dreamweaver to work with these pages, maybe shutting of a feature in the preferences that is causing the crash?  Has anyone else encountered this?
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <select name="MailList" class="Input" Style="Font-Size:11px; Width:98%">
      <option Value="">Any</Option>
      <option Value=""HolidayCard"" <%If Request.QueryString("MailList") = "HolidayCard" Then Response.Write " Selected" End If%>>Holiday Card</Option>
      <option Value=""MetroMatters"" <%If Request.QueryString("MailList") = "MetroMatters" Then Response.Write " Selected" End If%>>Metro Matters</Option>
    </select></body>
    </html>

    I have just looked in another post and turning back the clock
    on my pc seems to work for now.

  • Outraged that  KHTML is not supported in Dreamweaver cs3

    I am outraged that KHTML is not supported in Dreamweaver CS3. If I had know this, I would not have purchased this software. In fact, I recommend that anyone using KHTML in earlier versions of Dreamweaver defintely not upgrade to CS3 until Adobe supports KHTML. To make matters worse, I have still not heard the reason that Adobe has decided to not support KHTML.
    It is obvious that Adobe does not have the interest of their customers in mind.

    Hi David,
    I absolutely disagree with you Gunther about KTML being "crap", and you are wrong about it being sold separately - it came integrated into MX Kollection.
    As far I can recall, there were several options which changed in the course of time -- you could purchase a bundle, or you could purchase MX Kollection without any other secondary extension. As I said : "as far I recall"...
    The primary advantage of KTML (other than its great wysiwyg capability and the convenience of it being a DW extension) is that it has a built-in file manager and image manager..
    yes, that´s what I meant to indicate with my "2 well done features" summary
    With a click of a button, you get wysiwyg editor, file manger, and image manager. And all of these work perfectly btw, and the image manager and file manager is better than Tiny's costly managers. For example with KTML the image resizer works better, you can change brightness and contrast and what's even better is that these functions can be done directly from the file manager w/out having to first open the image in the editor.
    wanna know why exactly I decided to abandon KTML in favor of e.g. TinyMCE despite of the truly magnificent image and file management ? It´s because KTML simply didn´t provide any internal "hooks" to let me, say, allow user_id 1 to access all image editing functions, but user_id 2 just a subset or just the upload capability, but: No !
    KTML´s "management" features would have been really great and really usable in a multi-user environamnt, if it would have provided this very feature -- but this would have meant to completely tie KTML to the rest of MX Kollection´s set of features
    (ie handling external session variables, relate to permissions set in the login table), and that´s something what regretfully never happened, because the active development was
    (as all you guys know) sort of stopped right at a point where it *could* have become really useful.
    Another reason for me to not use the brilliant image management features :: does anyone recall KTML´s earlier versions which generated the image thumbnails "on the fly" ? If yes, you know what I´m talking about :: the latest KTML version *forced* me to accept having it create real thumbnail files in whatever obscure subdirectory, though I would never be really using them, and though KTML could certainly have done without them for generating an image preview
    And the final problem with TinyMCE is the price: over $350 for the file manager (server license) and around $250 for image manager (server license). $600 to have it licensed on one server - They don't publish the price for unlimited license (probably very expensive). So just those two features costs almost twice as much as MX Kollection did that included those two features as only a small percentage of the overall package.
    wow, that much ? incredible... Did never use these additional "managers", but in all other aspects I have to say that TinyMCE is indeed superior -- it´s all a matter of taste, but the sheer amount of configuration options is something I would have liked to see in KTML
    The point is that there really is no true replacement for KTML right now and that is VERY unfortunate. I believe the reason we are discussing this is in the hopes that Adobe will see how much KTML is missed and bring it back or a suitable alternative
    you *are* right, there is no good "extension" replacement, but I´m pretty sure that Adobe simply reviewed KMTL´s possible future in regards to the *very* strong and mature open source competition -- how much development resources (and money) would have been required to make KTML an editor which is on par with what´s already out there, and would this investment guarantee a stable market position ? noone really knows, but this would have been a risk, as KTML´s user-base was not *that* huge after all
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • SAP Crystal Report 2013 for Classic ASP

    Hi
    I'm have question about CR2013
    1. For CR V.2013 support classic ASP ?
    2. If support, It coding for view report with web browser ? (Example source code)

    Sorry but no. Classic ASP is gone, never to come back.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
      Follow us on
    Twitter

  • Classic ASP

    Hello
    I work with SQL Sevrer, but I need some help  to add a feature in a classic ASP page.
    Anyone knows a good website or a forum where a question could be answered about classic ASP?
    Thank youAE

     
    Hi,
    Thank you for your post!  I would suggest posting your question in one of the Home ›
    ASP.NET Forums
     located here:  http://forums.asp.net/.
    Have a great day!
    Sudarshan shindode Tier 2 Application Support Server and Tools Online Engineering Live Services Team

  • Why a classic asp + vb6 component application using MSXML6.0 is slower on W2K8 server compare to W2K3 server?

    Recently we moved classic asp application+ vb6 com components from W2K3 server to W2K8 server.
    The only change made in the vb6 component is upgrade from MSXML 2.0 to MSXML 6.0. These vb6 components are compiled into dlls and registered as COM components on the server.
    The issue we are facing right now is that asp pages are taking a lot of time to load.
    The functionality which used to take 8-10 sec is now taking around 40 seconds.
    We inserted the logs and found that all the functions in vb6 code which are related to MSXML 6.0 upgrade have caused the slowness in the application.
    On further research, we found that vb6 modules which uses 64 bit version of MSXML6.0(present under C:\Windows\System32) to load XML documents takes over two times longer to load an xml doc which uses 32bit version of MSXML6.0. (present under C:\Windows\sysWOW64)
    Microsoft has provided a hotfix for this. Please see below url.
    support.microsoft-com-kb-2799406
    We already tried this hotfix but it did not fixed the performance issue.
    Question:
    1) On W2K8 machine, we are unable to use MSXML6.0 present under C:\Windows\sysWOW64. Whenever we try to reference to this location it by default references back to C:\Windows\system32. We also opened the vb project file in a notepad and changed the reference
    location and opened the Project again but no success. Can anyone suggest what can be the probable solution to fix this?
    Current Scenario:
    Reference=*G{F5078F18-C551-11D3-89B9-0000F81FE221}#6.0#0#..WINDOWS-System32-msxml6.dll#Microsoft XML, v6.0
    Expected Scenario:
    Reference=*-G{F5078F18-C551-11D3-89B9-0000F81FE221}#6.0#0#..-WINDOWS-sysWOW64-msxml6.dll#Microsoft XML, v6.0
    2) Once we compile this vb6 code to a dll by having a reference to this sysWOW64 folder, how to ensure/confirm reference from Syswow64 will be picked up once it will be on W2K8 server?
    3) Also if you can suggest what can be other areas we should target/think of for resolving this performance issue?

    I have encountered the exact same problem with msxml6.dll that is described in the latter part of you statement. Had you come up with a possible solution?

  • Classic Asp UML tools

    Please provide some UMl generator tools for Classic ASP

    Hi jayavardhan s,
    Thank you for posting in MSDN forum.
    Since this forum is to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit,
    Developer Documentation and Help System, and Visual Studio Editor.
    About your issue, it is related to the ASP.NET, so I suggest you can post this issue directly to the ASP.NET forum:
    http://forums.iis.net/1044.aspx , you will get better support for the
    Classic Asp.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Classic ASP code movement from IIS6.0 TO ISS7.0

    Hi,
    I am usigng classic asp application that is hosted in IIS 6.0 .Server is windows 2003 SP2.
    If we move code from IIS 6.0 TO IIS7.0 what will be the advantage and what's the procedure.
    If i take back up for the IIS6.0 then that back up shell i restore for IIS 7.0.
    Please can you expalin me anyone on this details. Thanks in advance.
    Thanks,
    Ashok

    This forum supports .NET Framework setup.
    As your question appears to be more about IIS, please ask in a topical forum at the IIS site, here:
    http://forums.iis.net/

  • OO4O in classic ASP?

    Hello together,
    I have the following question:
    Is OO4O in classic ASP the best solution or are there another solutions, which are better?
    Best Regards,
    Andreas

    Hi,
    You don't need to re-write your existing apps. 11.1 will be supported for some time to come.
    I assume you were asking which is best because you're getting ready to write a new app, and in that case I'd discourage against using OO4O for new development, simply because the product is nearing the end of it's lifecycle. As time goes on, OO4O won't be able to use new capabilities in the Oracle DB.
    As I understand it, Windows 7 will the last OS to support the runtime as well.
    Corrections/comments welcome.
    Greg

Maybe you are looking for

  • Photoshop Elements 6.0 Restore catalog issue

    Okay...I am a novice here...but I have been using Elements since 3.0.  I had my computer setup to backup my catalog in incremental steps to an external hard drive.  I just reformatted my computer (Vista...UGH!)  and now when I restore the catalog per

  • Adobe photoshop elements 9 to install on windows 8 why ?

    Hi Can anybody help I have been trying to install adobe Photoshop 9 on my system but update to windows 8 recently may be the issue ? Just not kicking in my knowledge on computers is very limited so if anybody out there can help I would be very gratef

  • Field property indicator is not ready for input in sap

    HI All, i am trying to post transaction in GJT1. i am getting below error "field property indicator is not ready for input" i tried taking different asset, now it is showing below error msg. please assist me on both the issues. "system status CRTD is

  • Having trouble with newest Garageband, jpegs, and file icons

    iOS X 10.9.5 Garageband 10.0.2 I've been part of a podcast for years and we've always used GB.  We recently got a new laptop (that came with a newer version of GB) for the show.  Now, for some reason, the jpeg we've been using as our file icon doesn'

  • How to download Oracle SQL / PL SQL

    Hi all I am pretty new to this IT field. I am on H4 visa in US so i thought of doing some online course. Can anybody let me know how to download Orcale SQL / PL SQL to practise and its related notes / material. Thanks, Abirami