aspx頁面中動態建立控制元件 (轉)
< namespace="System.Data"%>
< namespace="System.Data.Ole"%>
< namespace="System.Text"%>
Hashtable hashProductName = new Hashtable();
Hashtable hashProductDesc = new Hashtable();
public void page_load( obj,EventArgs e)
{
hashProductName[0] = "Jalapeno Dip" ;
hashProductName[1] = "Smoked Sausage" ;
hashProductName[2] = "Shrimp Fiesta" ;
hashProductName[3] = "Jerk Chicken" ;
hashProductName[4] = "Beer-Battered Fish" ;
hashProductName[5] = "Bacon Burger" ;
hashProductName[6] = "Sirloin Tip" ;
hashProductName[7] = "Baked Alaska" ;
hashProductName[8] = "Fried Chicken" ;
hashProductName[9] = "Fresh Garden Salad" ;
hashProductName[10] = "One Pea" ;
hashProductDesc[0] = "Simmered in mayonaise and wine, this Jalapeno Dwill make your eyes water" ;
hashProductDesc[1] = "Mouth watering and delicious sausage" ;
hashProductDesc[2] = "East Coast's finest shrimp" ;
hashProductDesc[3] = "A real island experience you will not forget" ;
hashProductDesc[4] = "Pabst Blue Ribbon and Fish. Wow!" ;
hashProductDesc[5] = "Big, juicy, and bursting with flavor" ;
hashProductDesc[6] = "Delicate cuts with no " ;
hashProductDesc[7] = "Fine dessert comprised of sponge cake topped with ice cream and covered with meringue. " ;
hashProductDesc[8] = "Country cookin'" ;
hashProductDesc[9] = "Crispy iceberg lettuce and a garden of vegtables" ;
hashProductDesc[10] = "A single green pea that will leave you craving more" ;
for (int i=0; i<=10; i++)
{
LinkButton LB5= new LinkButton();
LB5.Text = hashProductName[i].ToString();
LB5.CommandName = "Products";
LB5.CssClass = "ProductLinks";
LB5.CommandArgument = i.ToString() ;
LB5.Command += new System..UI.WebControls.CommandEventHandler(OnLinkClick);
LinkList.Controls.Add(LB5);
LinkList.Controls.Add(new LiteralControl("
"));
}
}
private void OnLinkClick(object O, System.Web.UI.WebControls.CommandEventArgs E)
{
int RecordId = Int32.Parse(E.CommandArgument.ToString());
tablecellMessage.Text=""+hashProductName[RecordId].ToString()+"
"+hashProductDesc[RecordId].ToString()+"";
}
<:Table CellPadding=6 CellSpacing=2 BorderColor="#DDDDDD" BorderStyle=Solid BorderWidth=2 Runat=server>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-993465/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- JavaScript系列:動態建立iframe並載入頁面JavaScript
- Nginx - 動態匹配路由中的ID並跳轉到靜態頁面Nginx路由
- 環境的部署和建立靜態頁面
- DiscuzQ動態頁面SEO方案
- 頁面旋轉動畫效果動畫
- 如何在 Nuxt 中動態設定頁面佈局UX
- 如何建立動態選單在ASP。 淨核心剃刀頁面與Web ApiWebAPI
- 404頁面自動跳轉到首頁
- PHP中實現頁面跳轉PHP
- 小程式頁面動態配置實現
- flutter TabBarView 動態新增刪除頁面FluttertabBarView
- java建立web動態網頁遇到的問題JavaWeb網頁
- Nancy .Net 輕量級mvc框架使用(2)專案中新增aspx頁面方式NaNMVC框架
- 如何自動轉移到新的頁面?
- 玩轉控制元件:GDI+動態繪製流程圖控制元件流程圖
- js頁面跳轉的問題(跳轉到父頁面、最外層頁面、本頁面)JS
- SyntaxHighlighter 頁面動態js載入方式整理JS
- 如何在iView中動態建立表格View
- Python中動態類和動態方法的建立與呼叫Python
- 建立新的 App 頁面APP
- Python常見面試題011. 如何在Python中動態建立類?Python面試題
- aspx中的checkbox 取值問題
- vite 構建工具 如何熱更新靜態頁面?自動重新整理頁面Vite
- Web移動端頁面 –響應式和動態REMWebREM
- 動態路由,透過id改變,改頁面路由
- vue頁面跳轉Vue
- Flutter頁面跳轉Flutter
- Qt動態新增控制元件QT控制元件
- 給你的Flutter頁面跳轉加上動畫Flutter動畫
- 自定義TabBar動畫效果 - 頁面轉場(Swift)tabBar動畫Swift
- RN與原生互動(一)——基本頁面跳轉
- react跳轉url,跳轉外鏈,新頁面開啟頁面React
- asyUI分頁中,如何實現頁面跳轉,再返回時,...UI
- Nginx 部署靜態頁面Nginx
- 靜態頁面是啥
- 動態頁面資料載入不全的問題
- 動態構建的多頁面vue-cli模版Vue
- 【轉載】WPF中TreeView控制元件資料繫結和後臺動態新增資料(一)View控制元件
- 鴻蒙HarmonyOS實戰-ArkUI動畫(頁面轉場動畫)鴻蒙UI動畫