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.
18 lines
450 B
C#
18 lines
450 B
C#
using System;
|
|
|
|
namespace DSWeb.Settlements
|
|
{
|
|
public partial class RecvSettleApplication : System.Web.UI.Page
|
|
{
|
|
private string strModuleName;
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (Request.QueryString["mod"] != null)
|
|
{
|
|
strModuleName = Request.QueryString["mod"].ToString();
|
|
this.h_mod.Value = strModuleName;
|
|
}
|
|
}
|
|
}
|
|
}
|