我有這樣的代碼塊:刪除代碼片斷
<Compile Include="Share\System\Master\Relative\RelativeList.aspx.designer.cs">
<DependentUpon>RelativeList.aspx</DependentUpon>
</Compile>
<Compile Include="Share\System\Master\Status\StatusInfo.aspx.cs">
<DependentUpon>StatusInfo.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Share\System\Master\Status\StatusInfo.aspx.designer.cs">
<DependentUpon>StatusInfo.aspx</DependentUpon>
</Compile>
<Compile Include="Share\System\Master\Status\StatusList.aspx.cs">
<DependentUpon>StatusList.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
我想刪除所有的塊代碼類似於:
<Compile Include="Share\System\Master\Relative\RelativeList.aspx.designer.cs">
<DependentUpon>RelativeList.aspx</DependentUpon>
</Compile>
我的意思是它開始與<Compile
,包含.aspx.designer.cs
並以</Compile>
結束所以,當我刪除所有這樣的代碼塊時,所有仍然會是這樣的:
<Compile Include="Share\System\Master\Status\StatusInfo.aspx.cs">
<DependentUpon>StatusInfo.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Share\System\Master\Status\StatusList.aspx.cs">
<DependentUpon>StatusList.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
因爲我轉換了一個網站,Web應用程序,所以我必須刪除所有design.cs頁面並重新創建它們,這樣的錯誤重複控件不會發生。
事情是我有很多的網頁:((
感謝提前:)
更新:我使用快速查找和Visual Studio中更換
謝謝,但這不適用於我:(我已更新問題中的一些信息 – 2011-03-21 11:46:39