本文整理汇总了C#中Products.getSellByID方法的典型用法代码示例。如果您正苦于以下问题:C# Products.getSellByID方法的具体用法?C# Products.getSellByID怎么用?C# Products.getSellByID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Products
的用法示例。
在下文中一共展示了Products.getSellByID方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Page_Load
/// <summary>
/// Loads the page and analizes the QueryString to catch the GET vars.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
try
{
if (Request.QueryString.Get("id") != null)
{
int idSell = Convert.ToInt16(Request.QueryString.Get("id"));
Products sell = new Products();
DataTable dt;
dt = sell.getSellByID(idSell);
if (dt != null && dt.Columns[0].Caption == "Sell_Not_Exists")
{
Response.Redirect(webURL + "views/sells/viewallsells.aspx?action=notify&id=3", false);
}
else if (dt.Rows.Count == 1)
{
this.sellid = dt.Rows[0].ItemArray[0].ToString();
DetailsView1.DataSource = dt;
DetailsView1.DataBind();
DateTime date = Convert.ToDateTime(DetailsView1.Rows[5].Cells[1].Text);
DetailsView1.Rows[5].Cells[1].Text = date.ToString("dd/MM/yyyy");
dt = sell.getProductsBySell(idSell);
GridView1.DataSource = dt;
GridView1.DataBind();
}
else
{
Response.Redirect(webURL + "views/sells/viewallsells.aspx?action=notify&id=3", false);
}
}
else
{
Response.Redirect(webURL + "views/sells/viewallsells.aspx", false);
}
}
catch (Exception ex)
{
Response.Redirect(webURL + "views/sells/viewallsells.aspx");
}
}