2025-03-27 15:05:14 +08:00

25 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/SuperMap_Client/MasterPage/v4_0/Frameset.Master"
Inherits="SuperMap.RealEstate.Personnel.Modules.Salary.BasePage" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HTMLHead" runat="server">
<script type="text/javascript">
function Refresh() {
window.location.href = window.location.href;
}
</script>
<%--注意事项Detail_ID代表树节点跳转页面地址对应TreeView控件Target属性每个树点击事件不可重复否则将引起页面错乱--%>
<script type="text/C#" runat="server">
protected void Page_Load(object sender, EventArgs e)
{
//TreeView控件Target属性
this.Master_Frameset.Detail_ID = "ObjectDetail_Salary";
//树页面地址
this.Master_Frameset.TreeView_Url = "ObjectTree.aspx";
//树节点跳转页面地址
this.Master_Frameset.Detail_Url = "SalaryList.aspx";
//页面banner样式
this.Master_Frameset.AppendSplitBarCssClass("FixBanner");
}
</script>
</asp:Content>