StartInstance_Test.aspx.cs
资源名称:H3_OA.rar [点击查看]
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:
OA系统
开发平台:
C#
- using System;
- using System.Collections;
- using System.Configuration;
- using System.Data;
- 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;
- public partial class StartInstance_Test : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- }
- protected void Button1_Click(object sender, EventArgs e)
- {
- this.Response.Redirect(
- "StartInstanceSps.aspx?"+
- "WorkflowPackage=" + HttpUtility.UrlEncode(this.txtWorkflowPackage.Text) +
- "&WorkflowName=" + HttpUtility.UrlEncode(this.txtWorkflowName.Text) +
- "&SpsSite=" + this.txtSite.Text +
- "&SpsWebName=" + HttpUtility.UrlEncode(this.txtSpsWebName.Text) +
- "&SpsList=" + HttpUtility.UrlEncode(this.txtList.Text) +
- "&SpsListItemId=" + HttpUtility.UrlEncode(this.txtListItemId.Text));
- }
- }