You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
C#
48 lines
1.5 KiB
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;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using DSWeb.Models;
|
|
using DSWeb.EntityDA;
|
|
|
|
namespace DSWeb.Invoice
|
|
{
|
|
public partial class RecvSettleInvoiceVerification : System.Web.UI.Page
|
|
{
|
|
private string strHandle;
|
|
private string strCustomerName;
|
|
private string strVerifyCacheName;
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (Request.QueryString["handle"] != null)
|
|
{
|
|
strHandle = Request.QueryString["handle"].ToString().Trim().ToLower();
|
|
this.h_handle.Value = strHandle;
|
|
}
|
|
|
|
if (Request.QueryString["cus"] != null)
|
|
{
|
|
UnicodeEncoding unicode = new UnicodeEncoding();
|
|
strCustomerName = unicode.GetString(unicode.GetBytes(Regex.Unescape(Request.QueryString["cus"].ToString())));
|
|
h_customer.Value = strCustomerName;
|
|
}
|
|
|
|
if (Request.QueryString["verifycache"] != null)
|
|
{
|
|
strVerifyCacheName = Request.QueryString["verifycache"].ToString();
|
|
h_verifycache.Value = strVerifyCacheName;
|
|
}
|
|
}
|
|
}
|
|
}
|