一个index.aspx 页面
一个control1.ascx 控件
控件代码:<div>
<% string s = "hello word!";  %>
     
     <a title="<%=s %>"><%=s %></a></div>
把这个控件放在index.apx 文件中
之后运行 index.aspx 显示 hello word!
之后 修改文件 string s = "hello word!";  改成  string s = "hello!";  不重新编译 直接 运行,就 出现了 hello!问下 难道改了<% %> 里面代码 没有重新编译,
还是在其他地方编译了?好奇