我想在aspx.cs C#文件中看到一個div。我使用存儲過程來獲取產品列表與價格。所以我定義了一個div調用sizemenu在aspx頁面中。我怎樣才能在特定的功能中看到它。有沒有可能的方法?如何在asp.net頁面加載顯示一個div
Product product = new Product();
product.Id =Convert.ToInt64(labl.Text);
Hashtable parameterList = new Hashtable();
parameterList.Add("saleId", index.saleid.Id);//sale id
parameterList.Add("productId", product.Id);
parameterList.Add("productSizeId", null);
parameterList.Add("costPrice", null);
parameterList.Add("salesPrice", null);
//parameterList.Add("offerDetailId", null);
parameterList.Add("offerFound", -1);
parameterList.Add("currentDate", DateTimeUtil.GetFormattedString(((Sale)index.saleid).Date.Date));
parameterList.Add("currentTime", DateTimeUtil.GetFormatedTimeString(Convert.ToDateTime(((Sale)index.saleid).Time)));
parameterList.Add("day", Const.GetDay(((Sale)index.saleid).Date.DayOfWeek));
parameterList.Add("productSizePointValue", null);
parameterList.Add("isOfferUser", "False");
parameterList.Add("recipeSelection", null);
psList.SelectUsingSP(Global.sess, "SqlProInsertProductSizeToSale", parameterList);
if (psList.Count == 0)
{
}
else if (psList.Count == 1)
{
}
else if (psList.Count > 1)
{
//want to display the div here
}
它不會將div id導入到cs文件中?我如何得到它? –
工作謝謝! –