Beispiel #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         string key = RequestHelper.GetQueryString <string>("Key");
         if (key != string.Empty)
         {
             CheckAdminPower("ReadPay", PowerCheckType.Single);
             payPlugins       = PayPlugins.ReadPayPlugins(key);
             Description.Text = payPlugins.Description;
             IsEnabled.Text   = payPlugins.IsEnabled.ToString();
             PayPlugins.ReadCanChangePayPlugins(key, ref nameDic, ref valueDic, ref selectValueDic);
         }
     }
 }