yzh
2022-03-14 94879204c236edaf6ee80a176c2a781a352b2b93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 
using Common;
using Dao;
using Model;
using System;
using System.Text;
using System.Web;
using System.Web.Profile;
using System.Web.SessionState;
 
public partial class GwSpPrePattern : PageBase<SysUser>, IRequiresSessionState
{
    
    protected void Page_Load(object sender, EventArgs e)
    {
        this.CheckRight("305", FailedOperation.HistoryGoBack);
    }
 
    protected string GenerateSignatureOptions()
    {
        StringBuilder stringBuilder = new StringBuilder();
        for (int n = 0; n < 4; ++n)
            stringBuilder.AppendFormat("<input type=\"radio\" class=\"icheck-me\" name=\"signatureMode\" value=\"{0}\">{1}&nbsp;&nbsp;", (object)n, (object)SpSignatureInfo.GetSignatureModeText(n));
        return stringBuilder.ToString();
    }
}