public void WeiTuoInfo() { string url = Request.Url.ToString(); int num = url.IndexOf("\"") + 1; string HDId = url.Substring(num, url.Substring(num).Length - 1); WeiTuoInfo weiTuoInfo = DBManager.SelectWeiTuoInfo(HDId); if (weiTuoInfo != null) { txtHDId.Text = weiTuoInfo.货代自编号1; txtWeiTuoTime.Text = weiTuoInfo.委托时间1.ToString().Substring(0, 10); txtWeiTuoRen.Text = weiTuoInfo.委托人1; txtTgId.Text = weiTuoInfo.通关类别1; txtWtfl.Text = weiTuoInfo.委托分类1; txtTiDanHao.Text = weiTuoInfo.提单号1; txtXiangLiang.Text = weiTuoInfo.箱量1.ToString(); txtDaoGangTime.Text = weiTuoInfo.到港时间1.ToString().Substring(0, 10); txtChuanMing.Text = weiTuoInfo.船名航次1; txtTkmt.Text = weiTuoInfo.停靠码头1; txtBaoGuanHao.Text = weiTuoInfo.报关单号1; txtBjState.Text = weiTuoInfo.报检状态1; txtBgState.Text = weiTuoInfo.报关状态1; txtCyState.Text = weiTuoInfo.承运状态1; } }
public static WeiTuoInfo SelectWeiTuoInfo(string HDId) { SqlConnection con = null; SqlDataReader reader = null; WeiTuoInfo weiTuoInfo = null; try { con = GetSqlConnection(); con.Open(); string sql = "select * from 网页查询_客户委托情况_进口 where 货代自编号 = '" + HDId + "'"; SqlCommand com = new SqlCommand(sql, con); reader = com.ExecuteReader(); if (reader.Read()) { weiTuoInfo = new WeiTuoInfo(); weiTuoInfo.货代自编号1 = reader["货代自编号"].ToString(); weiTuoInfo.委托时间1 = Convert.ToDateTime(reader["委托时间"]); weiTuoInfo.委托人1 = reader["委托人"].ToString(); weiTuoInfo.通关类别1 = reader["通关类别"].ToString(); weiTuoInfo.委托分类1 = reader["委托分类"].ToString(); weiTuoInfo.提单号1 = reader["提单号"].ToString(); weiTuoInfo.船名航次1 = reader["船名航次"].ToString(); weiTuoInfo.停靠码头1 = reader["停靠码头"].ToString(); weiTuoInfo.到港时间1 = Convert.ToDateTime(reader["到港时间"]); weiTuoInfo.箱量1 = Convert.ToInt32(reader["箱量"]); weiTuoInfo.报关状态1 = reader["报关状态"].ToString(); weiTuoInfo.报检状态1 = reader["报检状态"].ToString(); weiTuoInfo.承运状态1 = reader["承运状态"].ToString(); weiTuoInfo.报关单号1 = reader["报关单号"].ToString(); } return(weiTuoInfo); } catch (Exception) { throw; } finally { reader.Close(); con.Close(); } }
public static WeiTuoInfo SelectWeiTuoInfo(string HDId) { SqlConnection con = null; SqlDataReader reader = null; WeiTuoInfo weiTuoInfo = null; try { con = GetSqlConnection(); con.Open(); string sql = "select * from 网页查询_客户委托情况_进口 where 货代自编号 = '" + HDId + "'"; SqlCommand com = new SqlCommand(sql, con); reader = com.ExecuteReader(); if (reader.Read()) { weiTuoInfo = new WeiTuoInfo(); weiTuoInfo.货代自编号1 = reader["货代自编号"].ToString(); weiTuoInfo.委托时间1 = Convert.ToDateTime(reader["委托时间"]); weiTuoInfo.委托人1 = reader["委托人"].ToString(); weiTuoInfo.通关类别1 = reader["通关类别"].ToString(); weiTuoInfo.委托分类1 = reader["委托分类"].ToString(); weiTuoInfo.提单号1 = reader["提单号"].ToString(); weiTuoInfo.船名航次1 = reader["船名航次"].ToString(); weiTuoInfo.停靠码头1 = reader["停靠码头"].ToString(); weiTuoInfo.到港时间1 = Convert.ToDateTime(reader["到港时间"]); weiTuoInfo.箱量1 = Convert.ToInt32(reader["箱量"]); weiTuoInfo.报关状态1 = reader["报关状态"].ToString(); weiTuoInfo.报检状态1 = reader["报检状态"].ToString(); weiTuoInfo.承运状态1 = reader["承运状态"].ToString(); weiTuoInfo.报关单号1 = reader["报关单号"].ToString(); } return weiTuoInfo; } catch (Exception) { throw; } finally { reader.Close(); con.Close(); } }