Unable to run ASP Page on Windows XP

Discussion in 'ASP' started by missamma77, Aug 16, 2007.

  1. missamma77

    missamma77 New Member

    Joined:
    Aug 16, 2007
    Messages:
    8
    Likes Received:
    0
    Trophy Points:
    0
    Hi,

    I am Ravindra. I have a PC installed with Windows XP(Service Pack 2) and I have configured IIS on it. I have created alias website and given the path of my ASP files. When I am trying to open in the browser the ASP page is not getting displayed. Its giving an error "Server error, please look the event viewer".

    There is no error in the ASP page file.

    Please can you help me out with a solution where in I can view my ASP pages.

    Thanks
    ravindra.
     
  2. jwshepherd

    jwshepherd New Member

    Joined:
    Aug 13, 2007
    Messages:
    135
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    VP Technology Corporation
    Location:
    Texas
    Home Page:
    http://www.officialhackers.com
    post you asp code for us to look at. IIS on XP is not as stable as it is on the server platform. But post the code and we will see.
     
  3. missamma77

    missamma77 New Member

    Joined:
    Aug 16, 2007
    Messages:
    8
    Likes Received:
    0
    Trophy Points:
    0
    Hi,
    The Code is as follows:

    <HTML>
    <HEAD>
    <TITLE> TIME NOW</TIME>
    <BODY>
    THE CURRENT TIME IS: <%TIME%>
    </BODY>
    </HTML>


    When the event viewer is opened and checked this is the following error appearing:
    THE SERVER FAILED TO LOAD APPLICATION '/LM/W3SVC/1/ROOT'. THE ERROR WAS NO SUCH INTERFACE SUPPORTED
     
  4. jwshepherd

    jwshepherd New Member

    Joined:
    Aug 13, 2007
    Messages:
    135
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    VP Technology Corporation
    Location:
    Texas
    Home Page:
    http://www.officialhackers.com
  5. missamma77

    missamma77 New Member

    Joined:
    Aug 16, 2007
    Messages:
    8
    Likes Received:
    0
    Trophy Points:
    0
    Hi,

    I have tried with the solution provided in the link. But I am unable to open my ASP page. I am getting the below error when i am trying to open the page in Internet Explorer:

    Server Application Error.
    The server has encountered an error while loading an application during the processing of yur request. Please refere to event log viewer for more detail information Please contact the server administrator for assistance.

    When the event viewer is opened and checked this is the following error appearing:

    THE SERVER FAILED TO LOAD APPLICATION '/LM/W3SVC/1/ROOT'. THE ERROR WAS NO SUCH INTERFACE SUPPORTED.

    Please provide me with the solution. If possible suggest any alternative to open my Asp Pages in Windows XP. As I have already mentioned my system is loaded with Windows XP Professional Service Pack 2.

    Regards,
    Ravindra.
     
  6. jwshepherd

    jwshepherd New Member

    Joined:
    Aug 13, 2007
    Messages:
    135
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    VP Technology Corporation
    Location:
    Texas
    Home Page:
    http://www.officialhackers.com
  7. missamma77

    missamma77 New Member

    Joined:
    Aug 16, 2007
    Messages:
    8
    Likes Received:
    0
    Trophy Points:
    0
    The Event ID is 36.

    Regards,
    Ravindra.
     
  8. jwshepherd

    jwshepherd New Member

    Joined:
    Aug 13, 2007
    Messages:
    135
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    VP Technology Corporation
    Location:
    Texas
    Home Page:
    http://www.officialhackers.com
  9. missamma77

    missamma77 New Member

    Joined:
    Aug 16, 2007
    Messages:
    8
    Likes Received:
    0
    Trophy Points:
    0
    Hi,
    Yes I have Crystal Reports 8 Installed in the system.

    Please provide me solution wt to do.

    regards
    ravindra.
     
  10. jwshepherd

    jwshepherd New Member

    Joined:
    Aug 13, 2007
    Messages:
    135
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    VP Technology Corporation
    Location:
    Texas
    Home Page:
    http://www.officialhackers.com
    the solution is in the article I posted above
     
  11. missamma77

    missamma77 New Member

    Joined:
    Aug 16, 2007
    Messages:
    8
    Likes Received:
    0
    Trophy Points:
    0
    Hi jwshepherd,

    Thank you very much for providing the solution. My ASP pages are working.
     
  12. jwshepherd

    jwshepherd New Member

    Joined:
    Aug 13, 2007
    Messages:
    135
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    VP Technology Corporation
    Location:
    Texas
    Home Page:
    http://www.officialhackers.com
    no problem. good luck
     
  13. missamma77

    missamma77 New Member

    Joined:
    Aug 16, 2007
    Messages:
    8
    Likes Received:
    0
    Trophy Points:
    0
    Suggestion Required

    Hi jwshepherd,

    Hi its me again Ravindra. I need a suggestion and guidance from you side. See I have been trying to do a Project on ASP with MS Access as backend for the maintenance of Employee Details. This project should be available to totally 11 Users in the Team. Pleaes guide me in how should develop this project so that all the 11 users can use the same.

    Please kindly suggest.

    Regards,
    Ravindra.
     
  14. jwshepherd

    jwshepherd New Member

    Joined:
    Aug 13, 2007
    Messages:
    135
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    VP Technology Corporation
    Location:
    Texas
    Home Page:
    http://www.officialhackers.com
    asp and an access database should be more than enough to run for 11 people at the same time.

    Here is a basic connection string for the database
    Code:
    <%
    Dim conn,mysql
    Set conn = Server.CreateObject("ADODB.Connection")
    Conn.Open "Data Source=" & Server.Mappath("db.mdb") & ";Provider=Microsoft.Jet.OLEDB.4.0;"
    set RS = Server.CreateObject("ADODB.recordset")
    
    MySQL="Select * from tblemployees;"
    rs.open mysql,conn,3,3,1
    response.write "<TABLE align=center><TR>"
    for x = 0 to rs.fields.count -1
         response.write "<TH>" & rs.fields(x).name & "&nbsp;</TH>"
         next 
    
    do while not rs.eof
    response.write "<TR>"
    for x= 0 to rs.fields.count -1
         response.write "<TD>" & rs.fields(x).value & "&nbsp;</TD>"
         next
    response.write "</TR>"
    
    rs.movenext
    loop
    rs.close
    %>
    
    that should return a table with all of the information in the table called tblemployees
     
  15. missamma77

    missamma77 New Member

    Joined:
    Aug 16, 2007
    Messages:
    8
    Likes Received:
    0
    Trophy Points:
    0
    Web Portal Design Using ASP

    :) Hi jwshepherd,

    It me Ravindra again. Thank you very much for helping me out in my earlier query. I need a guidance and ur advice on the following query. I was asked to develop a web portal. The actual scenario goes like this.

    We at our company have a bunch of sales teams containing of around 30-40 sales persons who once come to office go on field work every day. We need to keep track of their field destination place like where they are going to visit today and expected time of return etc.
    These details will be reported by the sale people to the Sales coordinator. The sales people who are going on field visit will open the web page and enter with their user name and password and then enter the details of their field work like where they are going at what time they are going out. So this web page should be accessed by every sales person from any system in the organization.

    So once they enter their details, sales coordinator should be in a position to view the details of a particular sales person at any point of time, where he went or his contact details if needed to be contacted.

    Can you suggest and guide me how to proceed with the above scenario in ASP using MS-ACCESS as a database. Its a organization with some 100 employees. I should be able to put the entire database in my system which should act like a server and the web page should be accessed by all the other staff including the management only to enter the details and view some reports, with some security implementations.

    Kindly guide me on this how to proceed.

    regards,
    ravindra.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice