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/

Similar Messages

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

  • How to change Crystal Reports XI database name at run time from ASP code using ADO

    Dear All,
    I need advises regarding to my problem below
    I have two database in same SQL 2005 SERVER for TEST01 and LIVE01 Environtment, and I've created more than 100 reports with Crystal Reports 11 and call it from ASP classic page.
    The problem is how can I change a database from TEST01 to LIVE01 at the run time from ASP code as I already using TEST01 database on Crystal Reports and I do not want to set a new database location inside crystal for each reports
    Thanks and wait for your reply soon.
    Below is my code, which has no effect to crystal reports although I've change the database from TEST01 to LIVE01:
    <%
    Dim oADOConnection, oRptTable, oADORecordset, sql
    Dim struser, strpwd, strdriver, dblocation, dbname, strConnect
    struser = "sa"
    strpwd = ""     
    strdriver = "{SQL SERVER}" 
    dblocation = "SQL200501"     
    dbname = "LIVE01"    ' Changed from TEST01 to LIVE01
    strConnect = "User Id=" & strUser & ";"
    strConnect = strConnect & "PWD=" & strPwd & ";"
    strConnect = strConnect & "DRIVER=" & StrDriver & ";"
    strConnect = strConnect & "SERVER=" & DBLocation & ";"
    strConnect = strConnect & "DATABASE=" & dbName
    sql="Select * from Employee"
    Set session("oApp") = Server.CreateObject("CrystalRuntime.Application.11")
    Set session("oRpt") = session("oApp").OpenReport("C:\REPORTS\RPT01.RPT", 1) 'USING TEST01 DATABASE
    session("oRpt").MorePrintEngineErrorMessages = False
    session("oRpt").EnableParameterPrompting = False
    session("oRpt").DiscardSavedData
    Set oADOConnection = Server.CreateObject("ADODB.Connection")
    oADOConnection.Open (strConnect)
    Set oADORecordset = Server.CreateObject("ADODB.Recordset")
    Set oRptTable = session("oRpt").Database.Tables.Item(1)
    oRptTable.SetDataSource oADORecordset, 3
    session("oRpt").SQLQueryString = CStr(sql)
    session("oRpt").ReadRecords
    %>

    Did you ever find a solution to this problem?  I have the same problem when moving reports from development to Test to Production environments.  If the DBName is not the same the report ignores the name provided at runtime.

  • 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

  • Can I play a movie from my ipod classic onto my ipad screen?

    I have a 160 GM ipod classic that holds all my movies.  I would like to buy a 16 GM ipad 3 but I know it won't be able to hold my movies.  Can I stick with the 16 GB ipad 3 but play my movies on it from my ipod classic?  I want to buy a wifi ipad and not a 4G one so when I'm driving in the car and I want to show movies to my kids in the back I won't be able to access the icloud or dropbox, etc.  Can I connect my movies from my ipod classic directly to the ipad with a cord to watch them on the ipad?

    So if I want to be able to watch all my movies or listen to all 50 GB of my songs I'll need to buy a more expensive 32 or 64 GB ipad and shuffle movies and songs in and out of it or else use the wifi and iCloud.  Is that correct? There's no way the ipad can access an external hard drive?

  • Crystal report run from ASP code significantly slower than when run in CRS

    We have CRS XI R2.  I developed a report that contains several on-demand sub-reports.  The report and sub-reports are very fast when run directly from CRS.  However, when I run from ASP (users run a link from the intranet), it takes 4 times longer (1 second on CRS, vs. 5-10 seconds on intranet).  The report takes longer, bringing up a sub-report takes longer and paging through sub-reports take longer.  What can be done to improve the speed of the report that is using the ASP code?  I used a sample program provided at this support site to develop the report and it is pretty basic code.  The only time I have a problem is when I have many sub-reports.  Since they are on-demand, I do not know why this would matter.

    This has been created as an incident with SAP support.  Things that you will want to check is making sure that you handle the postback to the code as you do not need to run your entire code on every postback.  This will help performance after the original load. 
    One other thing is to compare performance with the viewer within Infoview that uses the same backend server as your application, ie PSReportFactory uses the page server, so you'll want to test with the DHTML viewer.  RAS code (reportclientdocument) uses the Report Application Server so you will want to test with the Advanced DHTML viewer.

  • I have a 160GB iPod classic. How do I get my HD movies from itunes to this iPod?

    I have a 160GB iPod classic. I have HD and 1080P HD movies purchased through itunes. How do I get them to my iPod classic? It has plenty of storage. It gives me errors that make no sense to me. If making an error message, why can't they be more specific? The error messages unknown error occured (-50) audio and because they cannot be played on this iPod, "The Bourne Identity" was not copied because the video format is not supported by the iPod. I'm tired of buying 20 different versions of this and 20 different devices to play items I've purchased. Can anyone help with this issue please?
    Thank you.
    Henry

    Hello Henry,
    Thank you for the details of the issue you are experiencing when trying to sync your movies purchased through the iTunes Store to your iPod classic.  I found an article with some useful information:
    The iPad and iPhone 4 can play High Definition (HD) content and Standard Definition (SD) content. iPods and the original iPhone, iPhone 3G, and iPhone 3GS can play Standard Definition (SD) content. To find what video formats are supported, see the Tech Specs page, click your device's product family, and then your specific model. All HD purchases from the iTunes Store also include an iPod/iPhone-compatible Standard Definition version to accompany the HD version. When syncing an HD purchase from the iTunes Store, iTunes will automatically sync the SD video for devices that require SD content.
    You can find the full article here:
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod
    http://support.apple.com/kb/TS1497
    You can download the SD version of the movies from your list of past purchases.   You can find the steps to do this in the section titled "Apps, Books, Music, Movies, or TV shows on a computer" in the following article:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Hello..Does anyone in this community know what the following error code indicates   0x8002006E   I was trying to burn a DVD from files in a burn folder. They were pictures from my Nikon camera. I can play videos and movies from the same dvd player.

    I was trying to burn a DVD from files in a burn folder. They were pictures from my Nikon camera. I can play videos and movies from the same dvd player.    Thanks for any help you can offer,

    Thanks for your reply:
    I did find an error log related to the error code and tried all suggestions on the list of recommendations, still no luck            
    I definitely am running OS X10.5.8 (hopefully will be updating later on this month)
    I tried several brand new discs from the same box, still no luck.
    My last option is to go out and try a different brand, guess I'll go with Verbatim this time but I think I'll poke around some more before buying 20 more new discs.

  • Cannot rent & buy a movie from Apple TV but no problem on MAC iTunes_ Security Code issue

    I cannot rent or buy movies from Apple TV while my credit card details are correct and exactly the same as on iTunes. I am getting a security code request it's 3 digits but doesn't go further unless i insert 4 digits... as a result I get an invalid security code error...

    When you view the main page on the Apple TV and select the movies option you should see the rental on the top shelf. There is also a rental section at the top of the page once you enter the movie section.

  • HT203200 Is there a problem with redeeming movies from itunes?  I purchased some movies with digital copies.  But I can not download, due to Code redemption being temporary unavailable for the past 2 days.

    Is there a problem with redeeming movies from itunes.  I purchased some movies with digital copies.  But i can not download movies, due to code redemption being temporary unavailable.

    Hi there Cedric!
    I have an article here for you that I believe will help you out with this issue by reporting it to iTunes. That article can be found right here:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Just purchased blue ray movie from store with a redemption code but will not download with out inserting disc I have a macbook air

    just purchased blue ray movie from store with a redemption code but will not download with out inserting disc I have a macbook air

    I am experiencing the same thing. I have many books that I used to read on my iPad.
    Now on iBooks in Mavericks all my books downloaded correctly apart from two which I really want to work (The Lean Startup and Communicating The User Experience).
    When I download both using the cloud icon just when it reaches 100% I get this message:
    [Insert Book Name] failed to download
    To try again, select Check for Available Downloads from the Store menu.
    When I check for available downloads it says I have already downloaded all my books.
    Anyone know how to fix this.
    I do realise that this is only v1 of iBooks so I hope Apple sorts it out soon.
    Thanks!!!

  • HT1539 i was downloading the movie and was unexpectedly cut off the internet can i still download the rest of the movie from istore with same digital code

    i was recently downloading a movie from the itunes store and was cut off the internet and the movie didnt finishe downloading how do i finish the download for said movie?

    Look under the Store menu in iTunes for the "Check for available downloads" command and run that. You may find the movie there to be downloaded.
    If not, contact the iTunes Store Customer Service department from their Support page (click "Contact Support" and follow the instructions to get to the contact form) and explain the problem to them.
    Regards.

  • Sending Movies from My Computer to my I Pod Classic

    Whenever I *Add A File to my Library* nothing happens. Or, if I try to
    Export/Import a movie from my computer to iTunes, and I click on the file, nothing happens. Or, if I try to open a DVD with iTunes, nothing happens or it says "*Doesn't seem to be a valid file*." Am I stupid or something? Don't answer that! If anyone could help me with this problem, I'd be really grateful. P.S. Is it that Apple doesn't let you play movies that weren't purchased at iTunes?
    Message was edited by: dmattlyon

    GUIDES TO: Converting Video for iPod - Mac & Window
    http://forums.ilounge.com/showthread.php?s=&threadid=123067
    Patrick

  • 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

Maybe you are looking for

  • I have some questions on the PowerON Reuse and Recycling system

    My iPhone 5 is in very good codition, and I went through the questions on Apple's website, resulting in a $355.00 evaluation, which I think is quite fair. However, the payment comes in the form of an Apple Gift Card. I'd really like to put that money

  • Mappings out of synch with OWB repository

    Hi, I have a global problem with my repository, every mapping reports validation errors (many) advising to reconcile inbound or outbound. First question is how could this happen on such a global scale (affects every mapping) ? Second is how to fix, w

  • How to open jspx by default in jdeveloper source browser (11g)

    Hi, Does anyone know how to make jdev 11g open jspx etc. in source tab instead of the the design tab by default? Thanks,

  • Returned mail that I didn't send!

    Within the last few days, I have been receiving a large number of undeliverable mail returns on messages I haven't sent. My Mail program seems to have been taken over by what appears to be an unsavory spammer. Does anyone know how this might have bee

  • It appears you're not allowed to...

    I made a discussion here to ask a question about iPad, and I can't find it on the forum list here now and when I use the link to go to it directly it says: "It appears you're not allowed to view what you requested. You might contact your administrato