2015-05-25 30 views
5

我想在Visual Studio 2013中使用ASP.NET Web窗體模板在GitHub頁面上創建個人網站。(我試圖學習ASP.NET/C#)在GitHub中使用ASP.NET頁面

但是它看起來像GitHub頁面只會加載一個名爲「index.html」的文件作爲主頁。

我使我的index.html文件重定向到我的Default.aspx文件,但它只是導致我的瀏覽器下載該文件。這是我的index.html文件當前:

<html> 
<head> 
<title></title> 
<meta http-equiv="refresh" content="1;url=/JoeWebsite/Default.aspx"> 
<meta name="keywords" content="automatic redirection"> 
</head> 
<body> 
If your browser doesn't automatically go there within a few seconds, 
you may want to go to 
<a href="/JoeWebsite/Default.aspx">My Website</a> 
manually. 
</body> 
</html> 

ASP.NET項目在github中的正確回購。該項目的文件夾被命名爲「JoeWebsite」,從上面的代碼片段可以看出。

是否有可能在GitHub中有一個ASP.NET網站?怎麼樣?

如果沒有,是否有替代免費託管服務呢?

回答