日期:2014-05-17 浏览次数:21087 次
string post1="";
if(Request.Form["year"]!=null)
{
post1= Request.Form["year"].ToString();
}
string post2="";
if(Request.Form["month"]!=null)
{
post2 =Request.Form["month"].ToString();
}
string post3="";
if(Request.Form["day"]!=null)
{
post3 =Request.Form["day"].ToString();
}
string post4="";
if (Request.Form["hour"] != null)
{
post4 = Request.Form["hour"].ToString();
}
string hebing;
hebing = post1 + post2 + post3 + post4;
TextBox4.Text = hebing;