asp.net工程中aspx檔案與codebehind檔案的關聯問題

來源:互聯網
上載者:User
經常碰上轉換WEB工程之後的aspx與aspx.cs是並列顯示,而不是點擊aspx前面的加號再顯示aspx.cs,雖然不影響功能,但心裡總不舒服.經過尋找,
直接修改工程檔案.csproj, 找到aspx.cs等檔案的定義,如下:
<Compile Include="test.aspx.cs">
      <SubType>ASPXCodeBehind</SubType>
    </Compile>
在compile節點中添加一個子節點: <DependentUpon>test.aspx</DependentUpon>即可,最後如下:
<Compile Include="test.aspx.cs">
      <SubType>ASPXCodeBehind</SubType>
      <DependentUpon>test.aspx</DependentUpon>
    </Compile>
   
再重新載入工程即可. 如果量大,可以考慮寫個程式處理csproj,不過最好先備份csprojc檔案.

還有一種更簡單的方法就是建立一個工程,把aspx, aspx.cs檔案同時拷貝到工程中,此時工程會自動根據檔案名稱建立對應關係, 也省去了手工修改的麻煩.

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.