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; } } } }