How can i check if ASP.NET is enabled?

Discussion in 'Site & Server Administration' started by ASTRAPI, Jun 9, 2009.

  1. #1
    Hello

    1)How can i check if ASP.NET is enabled in my server ? (How can i enable it in my Linux server?)

    2)How can i check if mail relay SMTP server is enables?

    I have a server for shared hosting...

    Thnak you
     
    ASTRAPI, Jun 9, 2009 IP
  2. vasyl

    vasyl Peon

    Messages:
    138
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #2
    you can try
    <%
    for each thing in request.servervariables
    tempvalue=request.servervariables(thing)
    response.write thing & "=" & tempvalue & "<br>"
    next
    %>
    Code (markup):
     
    vasyl, Jun 9, 2009 IP
  3. ASTRAPI

    ASTRAPI Guest

    Messages:
    500
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Where and how and this is for the first or second question?
     
    ASTRAPI, Jun 9, 2009 IP
  4. vasyl

    vasyl Peon

    Messages:
    138
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Save it as test.asp file and point the browser to - it will show a kind of info if ASP is supported.

    About support under linux - heared that it's limited but... You need Apache::ASP perl module installed,

    <Files ~ (\.asp$)> 
    SetHandler perl-script 
    PerlHandler Apache::ASP 
    PerlSetVar Global /tmp 
    </Files> 
    Code (markup):
    to be included to apache's config...

    About smtp-relay, you can try to send e-mail to some recipient not served by this server by default using this server. The fastest way to check - use telnet to 25th port...
     
    vasyl, Jun 9, 2009 IP
  5. ASTRAPI

    ASTRAPI Guest

    Messages:
    500
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Thank you :)
     
    ASTRAPI, Jun 9, 2009 IP