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