Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 asp.net 页面有一个用户控件,它在顶部显示一个按钮栏。
在 page_load 中,我调用了许多构建 response.write 的函数(在 VB.NET 代码隐藏中)。一切正常,除了用户控件显示在来自 response.write 的对象下方。
我应该如何重新安排 response.write 函数的调用以使用户控制栏位于顶部?
您不能在页面中间有一个response.writeonPage_Load并等待渲染,因为Page_Load在渲染开始之前首先调用它。
response.write
Page_Load
使用文字控件更改将response.write其放置在正确的页面位置,或使用字符串并在页面 aspx 侧进行渲染。
response.write 将始终位于顶部。
你可以做的是在任何你想要的地方添加一个文字控件,并将你写在 response.write 中的文本放在文字控件文本属性中。