Jump to content

[Solved] .aspx Site not working


kott424

Recommended Posts

I am currently experiencing an ASP.NET issue with my website. My username is kott424, my domain name is popkott, and my website is residing on the johnny server. I have never used Mono before and I am programming using Visual Studio 10. I would consider myself to be a relatively new user of ASP.NET, so I apologize if this is a stupid question. I just wanted to test out the ASP.NET configurations so I loaded the default templates published that to my website using the Publish feature. Everything loaded fine and dandy when I ran my web page through my own machine and it doesn't work when I loaded it the server (of course).

 

I made sure to change the properties of my project so it uses the 3.5 framework. Also, I downloaded the Mono Migration Analyzer and all my pages passed its basic check. When accessing the URL, http://www.popkott.heliohost.org/Default.aspx, through Firefox, the precise error I am receiving is:

 

XML Parsing Error: no element found

Location: http://www.popkott.heliohost.org/Default.aspx

Line Number 1, Column 1:

 

^

 

I Googled this problem and it appears as though no information was sent to the browser. Apparently a common cause lies with a varying library's set of controls (which from my perspective implies that the problem might be with Mono). Because I am relatively new to this, I also would not be at all surprised if I accidentally forgot a small detail that blows up my code. Any assistance or advice on this subject would be greatly appreciated. Thank you for taking the time to read through my big, long post!

Link to comment
Share on other sites

  • Replies 56
  • Created
  • Last Reply

Top Posters In This Topic

Guest Geoff

What is in your default.aspx file?

 

Never mind, got it right here:

 

[quote]<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="Default.aspx.cs" Inherits="Test._Default" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">This is some header content
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <h2>
        Welcome to ASP.NET!
    </h2>
    <p>
           To learn more about ASP.NET visit <a href="http://www.asp.net" title="ASP.NET Website">www.asp.net</a>.
    </p>
    <p>
           You can also find <a href="http://go.microsoft.com/fwlink/?LinkID=152368&clcid=0x409"
            title="MSDN ASP.NET Docs">documentation on ASP.NET at MSDN</a>.
    </p>
</asp:Content>
[/quote]

 

The problem is you are using ASP.NET 4.0, we only support ASP.NET 3.5

 

Sorry.

Link to comment
Share on other sites

Hi Support,

 

Very weird put im not able to load my website.

 

Domain: ngs.is

Username: tazan

 

I'm getting this error: Error 324 (net::ERR_EMPTY_RESPONSE)

 

I have tried to solve it, without success.

 

I also found some other topic which stated that my website should be in asp.net 3.5 so i converted my website to that, but still.

 

When I'm testing my website in local host and connecting to the database at johnny.heliohost.org it is all okey.

 

I'm sure it is some small thing that I don't know about.

 

Do you guys have any idea what might be causing it?

 

 

Best Regards,

Hendrik

Link to comment
Share on other sites

I'm having this exact same problem using the default page created by a new web site in Visual Studio 2010 under .NET 3.5.

 

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        Doesn't load.
    </div>
    </form>
</body>
</html>

 

I was working on my website over the weekend when I started sporadically receiving this error. Eventually it got to the point where its the only thing that would load. I thought maybe I had changed a web.config setting which broke it, so I uploaded these default files. I also tried emptying my public_html directory, hoping to get a 404, but still go the error even on file names that had never existed.

Link to comment
Share on other sites

Guest Geoff

@djbob Several users are getting empty responses (net::ERR_EMPTY_RESPONSE in chrome) in their mono applications.

Link to comment
Share on other sites

Hi Support,

 

I assume that the problem I state in this topic is related to name servers again, as I got an error when I was changing name servers for my Icelandic domain name.

 

Error:

 

---------------

ns1.heliohost.org does not exist.

 

For .is domains the nameservers must be configured correctly before the delegation can be completed. Not all ISPs are aware of this. Please contact the administrators of the nameservers you are trying to use, and ask them to create a valid zone file for ngs.is on all the nameservers.

---------------

 

Previously, I had 2 other errors related to Icelandic domain names, which have been solved, so this is the third one :).

 

Best Regards,

Hendrik

Link to comment
Share on other sites

Guest Geoff
I'm getting this error: Error 324 (net::ERR_EMPTY_RESPONSE)

 

This is due to a problem with mono. Please see the topic in escalated requests.

Link to comment
Share on other sites

We don't support .is domains at this moment in time. However, we are working on it and are awaiting a response from the organization which represents this domain:

 

http://www.helionet.org/index/index.php?showtopic=9157

 

That topic is also created by me, i think all the .is domain related topics are created by me. :)

 

But how long do you think it will take to get everything sorted out?

 

Hendrik

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

×
×
  • Create New...