Jump to content

aliang

Members
  • Posts

    8
  • Joined

  • Last visited

aliang's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. thank you very much djbob. sorry for bothering you all this time. :(
  2. i'm sorry for bothering all of you. i still can't open my site with the same problem. error: XML Parsing Error: no element found Location: http://notfreebook.heliohost.org/showTime.aspx Line Number 1, Column 1: i'm using ASP .NET 3.5. do the mono support it??
  3. i still have it. i try to put a .html file there and it works well for the html file.
  4. After doing a bit of research it looks like you have to add Response.ContentType = "text/HTML" somewhere. I got that from here. I've never programmed in ASP.NET. But I put it where I think it would need to go. I know in Perl you have to print the content type before anything else or you get an error. <%@ Page Language="VB" %> <script runat="server"> Response.ContentType = "text/HTML" Sub Page_Load(sender As Object, e As EventArgs) response.write("*" & Day(Now()) & "-" & Month(Now()) & "-" & Year(Now()) & "-" & Hour(Now()) & "-" & Minute(Now()) & "*") End Sub </script> <html> <head> </head> <body> <form runat="server"> <!-- Insert content here --> </form> </body> </html> still doesn't work. :( is it the mono emulator doesn't work that cause the .aspx file can't show up??
  5. this page : http://notfreebook.heliohost.org/showTime.aspx i can't open it using my mozilla. it works fine when i try it on visual web developer 2008.
  6. can you help me with my site?? i'm a new member here. i upload my aspx file to public_html using cpanel but when i open it http://notfreebook.heliohost.org/showTime.aspx i got this error: XML Parsing Error: no element found Location: http://notfreebook.heliohost.org/showTime.aspx Line Number 1, Column 1: contents of my file: <%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) response.write("*" & Day(Now()) & "-" & Month(Now()) & "-" & Year(Now()) & "-" & Hour(Now()) & "-" & Minute(Now()) & "*") End Sub </script> <html> <head> </head> <body> <form runat="server"> <!-- Insert content here --> </form> </body> </html> do i have to change some configuration on the cpanel to make my site works??
  7. i have deleted all my files on the www folder and re-upload them to public_html but the files appeared at www folder too. the contents of www and public_html always appear the same. i also try to open my aspx file but still got the same error message. contents of my file : showTime.aspx <%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) response.write("*" & Day(Now()) & "-" & Month(Now()) & "-" & Year(Now()) & "-" & Hour(Now()) & "-" & Minute(Now()) & "*") End Sub </script> <html> <head> </head> <body> <form runat="server"> <!-- Insert content here --> </form> </body> </html> is this right???
  8. when i open my site : http://notfreebook.heliohost.org/default.aspx i got this error XML Parsing Error: no element found Location: http://notfreebook.heliohost.org/default.aspx Line Number 1, Column 1: can someone help me?? where should i place my file?? is it on www or public_html??
×
×
  • Create New...