本文整理汇总了C#中DBLayer.GetProductContent方法的典型用法代码示例。如果您正苦于以下问题:C# DBLayer.GetProductContent方法的具体用法?C# DBLayer.GetProductContent怎么用?C# DBLayer.GetProductContent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DBLayer
的用法示例。
在下文中一共展示了DBLayer.GetProductContent方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: uiGridViewProducts_RowCommand
protected void uiGridViewProducts_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "EditProduct")
{
DBLayer db = new DBLayer();
CurrentProduct = Convert.ToInt32(e.CommandArgument);
DataSet ds = db.GetProductContent(CurrentProduct);
uiTextBoxName.Text = ds.Tables[0].Rows[0]["ProductName"].ToString();
//uiTextBoxDescription.Text = ds.Tables[0].Rows[0]["Description"].ToString();
//uiTextBoxPrice.Text = ds.Tables[0].Rows[0]["Price"].ToString();
uiPanelViewProducts.Visible = false;
uiPanelEdit.Visible = true;
}
else if (e.CommandName == "DeleteProduct")
{
DBLayer db = new DBLayer();
db.DeleteProduct(Convert.ToInt32(e.CommandArgument));
CurrentProduct = 0;
BindData();
}
}
示例2: uiGridViewProducts_RowCommand
protected void uiGridViewProducts_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "EditProduct")
{
DBLayer db = new DBLayer();
CurrentProduct = Convert.ToInt32(e.CommandArgument);
DataSet ds = db.GetProductContent(CurrentProduct);
uiTextBoxName.Text = ds.Tables[0].Rows[0]["ProductName"].ToString();
uiTextBoxName_en.Text = ds.Tables[0].Rows[0]["ProductName_en"].ToString();
uiFCKeditorDesc.Value = Server.HtmlDecode(ds.Tables[0].Rows[0]["Description"].ToString());
uiFCKeditorDesc_en.Value = Server.HtmlDecode(ds.Tables[0].Rows[0]["Description_en"].ToString());
uiImageThumbs.ImageUrl = ds.Tables[0].Rows[0]["thumbs"].ToString();
uiPanelViewProducts.Visible = false;
uiPanelEdit.Visible = true;
uiPanelAllPics.Visible = true;
LoadProjectPhotos();
}
else if (e.CommandName == "DeleteProduct")
{
DBLayer db = new DBLayer();
db.DeleteProduct(Convert.ToInt32(e.CommandArgument));
CurrentProduct = 0;
BindData();
}
}