You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
915 B
32 lines
915 B
using System;
|
|
using System.Collections;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Security;
|
|
using System.Web.UI;
|
|
using System.Web.UI.HtmlControls;
|
|
using System.Web.UI.WebControls;
|
|
using System.Web.UI.WebControls.WebParts;
|
|
using hyplat.biz.service.soaweb;
|
|
using hyplat.biz;
|
|
|
|
public partial class office_workflow_selectTemplate : System.Web.UI.Page
|
|
{
|
|
|
|
|
|
public DataTable dtTemp;
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
LoginLogic.reloadSession();
|
|
if (Request.QueryString["ProcessId"].ToString() != "")
|
|
{
|
|
VbaAuthorizeService vbaAuthorizeService = ServiceManager.getServiceBean("VbaAuthorizeService") as VbaAuthorizeService;
|
|
dtTemp = vbaAuthorizeService.getVbaAuthorizeByID(Session["UserId"].ToString(), Request.QueryString["ProcessId"].ToString());
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|