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.
我有大约 10 个页面使用相同的用户控件,现在我需要知道每次哪个页面调用了用户控件。我需要页面名称(标题)。
尝试在控制代码中使用:
this.Page.Title
这是使用 javascript ,
<script language="javascript"> var parentName= "<%= System.IO.Path.GetFileName(Page.Request.Path) %>"; </script>
或者
this.Parent.Page.Title;