2
A
回答
3
下面是代碼使用RowCommand()在GridView的採樣位。
ASPX
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" onrowcommand="GridView1_RowCommand">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="lbl1" runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField ShowHeader="False">
<ItemTemplate>
<asp:Button ID="Button1" runat="server" CausesValidation="false" CommandName="MYCOMMAND" Text="My Text!" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
C#
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
List<string> lst = new List<string>() { "asd", "xxx" };
GridView1.DataSource = lst;
GridView1.DataBind();
}
}
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "MYCOMMAND")
{
Button Button1 = (Button)e.CommandSource;
if (Button1 != null)
Button1.Text = "changed text..";
}
}
相關問題
- 1. Gridview更改按鈕列中的文本
- 2. 更改GridView中的按鈕文本 - (GridView ItemTemplate按鈕呈現爲DataBoundLiteralControl)
- 3. Appcelerator更改按鈕文本
- 4. 更改按鈕文本
- 5. 更改文本onclick按鈕
- 6. Silverlight更改按鈕文本
- 7. 更改NSOpenPanel按鈕文本
- 8. UI按鈕更改文本
- 9. 的GridView:更改按鈕文本和鏈接在頁面加載
- 10. 使用vb.net在gridview中更改按鈕文本
- 11. 如何更改gridView的按鈕顏色
- 12. 更改GridView中的選擇按鈕
- 13. GridView選擇按鈕的更改樣式
- 14. 更改表中的按鈕的文本
- 15. 更改按鈕的文本值
- 16. 更改按鈕上文本的方向
- 17. 更改點擊按鈕的文本
- 18. 更改值和文本的按鈕
- 19. 更改按鈕的文本動態
- 20. 更改提交按鈕的文本
- 21. Javascript更改單選按鈕的文本
- 22. 更改MessageBox按鈕文本的語言
- 23. 更改DatePickerDialog的按鈕文本
- 24. 立即更改按鈕的文本
- 25. 更改DataGridViewButtonColumn的每行按鈕文本
- 26. 是否可以在Asp.Net GridView中更改更新按鈕的文本?
- 27. Gridview更新按鈕
- 28. Gridview文本更改事件
- 29. 更改按鈕陣列中的按鈕的文本jquery
- 30. GridView和本地化AutoGenerate ?????按鈕文本
我們能看到什麼你都試過,你遇到什麼錯誤? – Seany84 2012-03-24 12:17:17
我的回答對你有幫助嗎? – Seany84 2012-03-25 01:28:02