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

Similar Messages

  • Classic ASP on IIS - Timeout Session not expiring

    I have an classic ASP website on IIS(both IIS 6,and 8) and both perform the same. We've had this issue for years on IIS 5,6,7,8 and never could figure it out. I have a session timeout setting on the IIS application pool of 120 minutes. I do not have
    a session.timeout setting in any of the ASP code itself. I do have a Session.Abandon in the global.asa file, which works well.
    Most of the time if a user is idle for > 120 minutes, it gives them a message that their session has timed out, expires the session and redirects them back to the login page. This is how it should work and 95% of the time is does.
    The issue I have is that about 5% of the time, some users seem to be able to keep the session alive beyond the 120 minutes. Some for days.
    I'm wondering if anyone has any ideas what could cause this? Some ideas that I thought of are below...but I really don't know.
    I assume they keep their browsers open for days, but could a user that has a browser window open but sitting idle AND on another TAB of that same browser be active on other websites? Does that activity make the TAB with my application still active/not idle?
    I've tested this on several environments but not able to replicate.
    Some type of software like a URL filter, proxy server or Antivirus could be causing their browser to not be idle?
    Of course a user can keep the session idle if they use the app beyond the 2 hours, but it is rather unlikely they do this, especially for days.
    Its hard to troubleshoot since the users are all customers with different browsers and environments. So I have no clue if its a certain browser, browser version, or their PC/network environment.
    Any ideas?
    pablo

    Hello,
    forums.iis.net also has a Classic ASP forum.
    As Microsoft's IIS forums are on a different platform, we cannot move the question for you.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • 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 - "ORA-01722: invalid number" using OraOLEDB.Oracle driver

    I am working on doing some maintenance updates to a Classic ASP website, and I need to be able to run an insert/update statement for putting values into a lookup table. I am currently running into an "ORA-01722: invalid number" error when trying to use ADO and bind variables for my insert statement.
    Below is an example of a table that I am having problems with:
    CREATE TABLE "MATMGR"."TEST_SWING_TABLE"
    (     "TABLE1_ID" NUMBER(4,0) NOT NULL ENABLE,
         "TABLE2_ID" NUMBER(4,0) NOT NULL ENABLE,
         CONSTRAINT "TEST_SWING_TABLE_PK" PRIMARY KEY ("TABLE1_ID", "TABLE2_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS" ENABLE
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS" ;
    Here is some snippet code of the basic functionality I am trying to get to work:
    ''START CODE''
    Dim connDb, cmdDoseInsert
    Set connDb = Server.CreateObject("ADODB.Connection")
    connDb.CursorLocation = adUseClient ' Setup to return RecordSet
    connDb.ConnectionString = "Provider=OraOLEDB.Oracle;Data Source={host};User ID={user id};Password={password}"
    connDb.Open()
    Set cmdDoseInsert = Server.CreateObject("ADODB.command")
    Set cmdDoseInsert.ActiveConnection = connDb
    cmdDoseInsert.CommandType = adCmdText
    cmdDoseInsert.NamedParameters = true ' Set the command object to use named parameters
    cmdDoseInsert.Prepared = true
    cmdDoseInsert.CommandTimeout = 0
    cmdDoseInsert.CommandText = "INSERT INTO TEST_SWING_TABLE (TABLE1_ID, TABLE2_ID) VALUES (:P_TABLE1_ID, :P_TABLE2_ID)"
    cmdDoseInsert.Prepared = true
    cmdDoseInsert.Parameters.Append cmdDoseInsert.CreateParameter("P_TABLE1_ID", adNumeric, adParamInput)
    cmdDoseInsert.Parameters.Append cmdDoseInsert.CreateParameter("P_TABLE2_ID", adNumeric, adParamInput)
    '... START: While Looping
         cmdDoseInsert.Parameters(0).Value = {some numeric value}
         cmdDoseInsert.Parameters(1).Value = {some numeric value}
         cmdDoseInsert.Execute
    '... END: Looping
    ''END CODE''
    What I have been able to find out so far is that there is some type of issue with numeric values getting translated right when sending two and retrieving from Oracle in ASP. So, does anyone have any thoughts on how to resolve this as I would like to use parameterized SQL to improve application performance?
    I am connecting to a developmental server running Oracle 9.2

    Ok, in my slightly larger example I found out that for what ever reason my named parameters are not being enforced, and so I had to make sure that the parameters were in the same order as they appeared in the SQL. To be on the save side, I did this when they were added as well as when I was assigning values to them.
    Can anyone tell me if this is an Oracle issue or a ASP issue?

  • Script Time out error in classic asp

    Hi ,
    In classic asp , i am using Stored procedure to fetch the result from oracle database . my database have 85Lakhs records . approx. 30 records are being inserted into the table. at the same time some users trying to fetch the data from same table.now i am getting script timeout error after long wait .it was an intermittent issue (sometimes it is working and sometimes it is not working). i thought it was because of performance issue with stored procedures . but in oracle Readers cannot block writers and Writers cannot block readers.so no issues with database side.i couldn't replicate the issue . i am wondering what will be the rootcause for this issue. is there anything i need to modify with the script side.by increasing the timeout property is the only solution?i tried to modify the timeout property to 180 seconds in classic asp page. please give your valuable suggestion.
    Thanks.
    Regards,
    Boss

    Hi,
    How big is your EJB application? i.e. how many EJBs do you have?
    Would you please try to deploy your application using the command line tool "asadmin" and see if it is also hanging? This will help us to tell if the deployment process that is hanging or the deploytool itself that is hanging. The "asadmin" tool is located under $INSTALL_HOME/bin.
    Thanks,
    Q^2

  • Upgrading Crystal 9 to Crystal XI using Classic ASP

    I am trying to find information on how to upgrade crystal 9 to crystal xi using classic asp code.  Not having much luck, any help would be appreciated.
    Thanks

    Hi Amy,
    This forum is dedicated to topics related to the creation and design of Crystal Report documents.
    This includes topics such as:
    Database connectivity,
    Parameters and Parameter prompting,
    Report formulas,
    Record selection formulas,
    Charting,
    Sorting,
    Grouping,
    Totaling,
    Exporting
    For questions related to custom application development using Crystal Reports, refer to the appropriate Crystal Reports forum under:
    Business Objects SDK Application Development.

  • Classic ASP shopping Cart

    Can anyone point me in the right direction please?
    I'm looking for a 'comprehensive' shopping cart system
    written in 'Classic
    ASP' and editable in DW8.
    It needs to have a fully functioning admin (backend) system
    and also enable
    me to add asp code as and when required.
    Bit of a tall order I guess, but my reason for the question
    is that at
    present we're using 'Actinic v8' and it is rather restrictive
    in both
    functions and design ability.
    Hope someone can advise.
    Thanks in advance
    Kind Regards
    Andy

    Thanks for that Dave - I've emailed you
    Andy
    "Dave Buchholz" <[email protected]> wrote
    in message
    news:[email protected]...
    > Andy,
    >
    > There are none that I am aware of but if you want to
    contact me offlist
    > I'll see what I can do for you.
    >
    > --
    >
    > Dave Buchholz
    > I-CRE8
    > www.i-cre8.co.uk
    > Skype ID: I-CRE8
    >
    >
    > "Andy" <[email protected]> wrote in message
    > news:[email protected]...
    >> Thanks Dave
    >>
    >> Do you know if they offer any screenshots of this? I
    can't seem to find
    >> any on their site.
    >>
    >> Andy
    >>
    >> "Dave Buchholz"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Not Lee but I can tell you that eCart comes with
    a sample store that
    >>> features a admin backend that you could modify
    for your own needs.
    >>>
    >>> --
    >>>
    >>> Dave Buchholz
    >>> I-CRE8
    >>> www.i-cre8.co.uk
    >>> Skype ID: I-CRE8
    >>>
    >>>
    >>> "Andy" <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> Thanks Lee
    >>>>
    >>>> Excellent review -
    >>>> After looking into WA e-cart, i'm getting a
    little ocnfused with their
    >>>> product range.
    >>>> Does the e-cart come with a back-end system?
    or do you have to purchase
    >>>> another ackage from them to do this?
    >>>>
    >>>> Thanks Again Lee
    >>>>
    >>>> Andy
    >>>>
    >>>> "Lee" <[email protected]> wrote
    in message
    >>>> news:[email protected]...
    >>>>> I've been using WebAssist. It's good and
    bad depending on what you
    >>>>> need it to do. It offers a lot of
    flexibility but when you want
    >>>>> something unique it can be difficult to
    implement.
    >>>>>
    >>>>> For me, it wasn't so much the cost of
    the program but the time it took
    >>>>> to build what I needed. Had I a
    programmer sitting next to me, I would
    >>>>> have been very satisfied with WebAssist.
    Since I am not a programmer I
    >>>>> often ran into brick walls with much of
    the process.
    >>>>>
    >>>>> Don't count on too much help from them
    unless you are ready to pay for
    >>>>> help. I don't blame them, this is very
    difficult stuff. Their help
    >>>>> files are adequate but often lack the
    resource that is needed to
    >>>>> really understand the workings of the
    cart. They have a forum but
    >>>>> essentially, the responses to the posts
    only suggest a solution and
    >>>>> often it's not as soon as you might
    wish. In order to get real help,
    >>>>> you have use help credits that come with
    the original purchase. Once
    >>>>> those are gone, you can buy more. They
    also have a good mentoring
    >>>>> program that you can purchase for, I
    think, $150 a shot. It's helpful
    >>>>> and I would just budget a few of those
    right off the bat. In my case,
    >>>>> doing this earlier on would have saved a
    lot of grief. I wish I would
    >>>>> have gotten help earlier, instead, I
    built some things in a way that
    >>>>> didn't mesh very well with the cart.
    >>>>>
    >>>>> In many ways I wonder if I should have
    gotten something that was more
    >>>>> canned but it's hard to say what the
    right answer is. Something that
    >>>>> was canned may not have offered what I
    needed to have. If you're not a
    >>>>> programmer, for simple carts without a
    lot of complicated programming
    >>>>> needs, WebAssist is probably pretty
    good. If you are a solid
    >>>>> programmer, WebAssist is even a better
    choice. However, if you have a
    >>>>> complicated project/s and you have
    little programming skills, beware.
    >>>>>
    >>>>>
    >>>>>
    >>>>> The pluggins can be a little buggy
    sometimes but on average, I am
    >>>>> satisfied.
    >>>>>
    >>>>>> Thanks Guys!
    >>>>>> Anyone got any thoughts or
    experience with using 'cartweaver' or
    >>>>>> 'webb assist's e-cart'?
    >>>>>>
    >>>>>> Thanks
    >>>>>> Andy
    >>>>>>
    >>>>>>
    >>>>>> "Andy" <[email protected]> wrote in
    message
    >>>>>>
    news:[email protected]...
    >>>>>>> Can anyone point me in the right
    direction please?
    >>>>>>> I'm looking for a
    'comprehensive' shopping cart system written in
    >>>>>>> 'Classic ASP' and editable in
    DW8.
    >>>>>>>
    >>>>>>> It needs to have a fully
    functioning admin (backend) system and also
    >>>>>>> enable me to add asp code as and
    when required.
    >>>>>>>
    >>>>>>> Bit of a tall order I guess, but
    my reason for the question is that
    >>>>>>> at present we're using 'Actinic
    v8' and it is rather restrictive in
    >>>>>>> both functions and design
    ability.
    >>>>>>>
    >>>>>>> Hope someone can advise.
    >>>>>>>
    >>>>>>> Thanks in advance
    >>>>>>>
    >>>>>>> Kind Regards
    >>>>>>> Andy
    >>>>>>>
    >>>>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Best way to produce PDF output from Classic ASP

    I have Adobe Professional 9.2 and LiveCycle ES Designer 8.1. I need to change a Classic ASP web application to produce a PDF report. The way I see it I have three options:
    1) create native PDF output using open source libraries.
    2) create an FDF form with Adobe Pro as a template and use FDF libraries from Adobe to substitute text in the template
    3) create an XML form with LiveCycle as a template and do direct text substitution into the XML.
    I created a PDF with LiveCycle and prior to saving, unchecked the "save PDF files compressed" in tools/options. I don't want any text boxes, just labels, and in some of the labels I will put distinguishable text. When the web application uses the template it will find various text strings in the XML stream and substitute.
    What's the best way to do this? Is there a better way of doing substitution into the LiveCycle template? I would like to stay with LiveCycle. But from code samples I've seen, FDF substitution is very straightforward and possibly easier. I also thought LiveCycle is supposed to be the way to go instead of Adobe Pro. Thanks

    I cannot speak about theother methods but I can speak about the XFA method. In most cases people will bind the xml to the rawValue property of the field thereby filling the field with the value. However there are other bindable properties. Caption is one of them. first you have to turn on the Dynamic Properties. Click on th efield you want to control on on the Object palette click the icon as shown below:
    A new menu will open like this:
    Turn that option on and the Caption will turn a different color and will become a link. Click on the link and then you can map the caption to a node in your XML structure. This assumes that you have created a Data Connection to bind with.
    Paul

  • 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

  • Coherence in Classic ASP

    Jk,
    This is the continuation of Oracle coherence in dotnet
    Able to run windows application(c#) with coherence.dll(3.7.1.0) by the instructions given by you.Please clarify my below doubts.
    My application is written in ASP3.0,VB6.0,ASP.Net and C#.Have a requirement says that adding my session information on to session coherence grid.
    So i tried coherence.dll(3.7.1.0)with c#.net windows(sample) application as part of POC.It went successfully.
    75% of my application done in Classic ASP3.0.Any option do i have,to use windows dll(which have done as POC)in classic asp.
    Can you pls guide to proceed further with coherence on classic ASP.
    MP

    Hi MP,
    Apologies for the slow reply - I've been moving house :-)
    I am afraid I cannot help you with this - my background is with Java and Coherence and a small amount of C#. I know nothing about ASP so I don't know what sort of libraries ASP can use, i.e. whether it can use the .Net Coherence client, or the new REST interface or some other alternative.
    JK

  • 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

  • Webcenter 10.3 - classic asp portlets

    Hi,
    I have few portlets which were developed in classic asp with plumtree version 5.0.3.
    Can anybody tell me what i have to do to run my asp portlets in webcenter 10.3.
    Is there any equivalent "Plumtree ASP Gadget Development Kit (GDK) 3.5" for webcenter 10.3 or GDK 3.5 can be used?

    GDK -> IDK.
    http://download.oracle.com/docs/cd/E13158_01/alui/idk/docs103/index.html
    you probably have to download it on edelivery.oracle.com

  • 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.

Maybe you are looking for

  • MC.9 report

    Dear Experts,             In MC.9 report for some materials in some plants Value of the valuated material is coming(in some cases it is some positive value while in some it is showing negative value) for those having zero Quantity under valuted stock

  • Can I have a decreased / cheaper monthly priced membership for some time, by keeping active only Photoshop CC, Illustrator CC, InDesign CC and Acrobat?

    Hello, and good evening from Athens, Greece. I would like to ask a question concerning my CC membership. I've started 1 and a half year ago by paying 29,99 € for the entire CC (all programs). Now, it's 49,99 € and I'm having a really difficult time t

  • Access via 'NULL' object reference not possible.

    hi all,                    i am getting the following error in my application(getting data from 2 data base table and kept in internal table and binding that 2 internal table to two context) in st22 i have this. Error analysis     An exception occurr

  • Adding systems with same SID in SMSY - solution manager

    Dear All, We are having systems with same SID's which  belongs to different landscape created for various customers. Currently We are having only one solution manager. I consider this example for explanation. Customer 1 : DEV --> QAS --> PRD ( SID's)

  • Image as drop target for drag and drop

    was wondering how I can make an image to be a drop target using the dnd api. so far from what i've seen it takes only java components to be target, so if anyone has any ideas it will be great. thanks