26 lines
653 B
C#
26 lines
653 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using HighWayStorage = SuperMap.RealEstate.HighWay.Storage;
|
|
|
|
namespace SuperMap.RealEstate.SendRec.Modules
|
|
{
|
|
public class ReadyOnlyBasePage : SuperMap.RealEstate.Web.UI.PageValid
|
|
{
|
|
public ReadyOnlyBasePage()
|
|
{
|
|
|
|
}
|
|
|
|
protected override void OnLoadComplete(EventArgs e)
|
|
{
|
|
if (HttpContext.Current.Request["readyonly"] != null)
|
|
{
|
|
HighWayStorage.Business.CommonHelper.ReadOnlyControlsSetting(this.Page);
|
|
}
|
|
base.OnLoadComplete(e);
|
|
}
|
|
|
|
}
|
|
} |