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
you can try <% for each thing in request.servervariables tempvalue=request.servervariables(thing) response.write thing & "=" & tempvalue & "<br>" next %> Code (markup):
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...