<%@ WebHandler Language="C#" Class="CheckPriKey" %> using System; using System.Collections.Generic; using System.Web; using System.Data; using System.IO; using eMIS.Data; using System.Data.Common; using System.Web.SessionState; using eMIS; public class CheckPriKey : IHttpHandler, IRequiresSessionState { public void ProcessRequest (HttpContext context) { string flowId = context.Request.QueryString["fid"].ToString(); string nodeId = context.Request.QueryString["nid"].ToString(); string recordId = context.Request.QueryString["rid"].ToString(); context.Response.Redirect("kernel.ashx?flowid=" + flowId + "&nodeid=" + nodeId + "&page=0&varSign=" + recordId + "&" + DateTime.Now.Ticks.ToString()); } public bool IsReusable { get { return false; } } }