im wondering if i can make a group of control that will stay on screen even someone on another webpage while my webpage open in another tab,in asp.net.Like winform's topmost feature.
相关问题
- Carriage Return (ASCII chr 13) is missing from tex
- How to store image outside of the website's ro
- How to use Control.FromHandle?
- 'System.Threading.ThreadAbortException' in
- Request.PathInfo issues and XSS attacks
相关文章
- asp.net HiddenField控件扩展问题
- asp.net HiddenField控件扩展问题
- Asp.Net网站无法写入错误日志,测试站点可以,正是站点不行
- asp.net mvc 重定向到vue hash字符串丢失
- FormsAuthenticationTicket expires too soon
- “Dynamic operations can only be performed in homog
- What is the best way to create a lock from a web a
- Add to htmlAttributes for custom ActionLink helper
No, you can not do this.
If you're expecting to port a winforms application to webforms feature for feature, you're going to be greatly disappointed. WebForms is still just a thin veneer over the http protocol; one that tends to peel up at the corner.
If you're trying to keep something on top via the web, you can't do that without a plugin, no matter what web platform you use.