我在Visual Studio 2010 Professional中创建了我的第一个网站。
在网页项目中,我有一个文件夹结构。在这些文件夹我有用户控件,Web服务等。
随着我设计网站变得更加清晰,我想重命名1个以上的文件夹,但我注意到当我更改文件夹名称时,每个文件夹内控件的路径都没有重构。目前我能看到的唯一方法就是单独改变每一种方式。
在此示例中,“控件”是路径:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Account_Bar.ascx.cs" Inherits="Controls_Account_Bar" %>
public partial class Controls_Account_Bar : System.Web.UI.UserControl
是否有快捷方式允许我一起重命名文件夹和控制路径?