我需要對給我的代碼做一些作業,但我不知道該語言是什么。
它的頂部有一個 .sln 檔案。
它有一個 .master 檔案,其代碼如下所示:
<div class="page">
<form id="form1" runat="server">
<asp:Panel ID="pnlMaster" runat="server" BorderColor="#082F48" BorderStyle="Solid"
HorizontalAlign="Center" Width="970px">
<div style="width: 100%;">
<table id="tblAreaTabs" width="970px" align="center">
<tr bgcolor="#05133B">
<td align="left">
<img alt="image" src="/Images/LogoTall.jpg" />
</td>
</tr>
<tr style="background: url(/Images/rowBg.jpg); height: 27px" align="left">
<td align="right" style="padding-right: 10px;">
<asp:LinkButton ID="lnkLogout" runat="server" ForeColor="White">Log Out</asp:LinkButton>
</td>
</tr>
</table>
</div>
<table align="center" width="970px">
<tr>
<td align="left" valign="top">
<asp:Label ID="lblError" runat="server"></asp:Label>
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</td>
</tr>
</table>
</asp:Panel>
</form>
</div>
在與 .master 相同的檔案夾中,有一些 .vb 和 .vbproj 檔案。還有一個 web.conig 檔案。
有各種檔案夾用于存放 CSS 和影像等內容,有些檔案夾包含更多 .vb 檔案。
我的猜測是 ASP.NET,但是當我制作一個“hello world”ASP.NET 應用程式進行比較時,它們看起來完全不同。
uj5u.com熱心網友回復:
它很可能是一個 ASP.NET 母版頁應用程式。.sln是一個解決方案檔案。嘗試使用 Visual Studio Community(免費)打開專案,以獲得更好的體驗。
https://docs.microsoft.com/en-us/previous-versions/aspnet/wtxbf3hh(v=vs.100)
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/373541.html
