Asp.net C# 动态加载linkbutton

2024-12-19 11:01:04
推荐回答(4个)
回答1:

你可以先在想显示内容的位置放一个linkbutton,id为lbtn,把他的visible属性设置为false

然后需要显示的时候 this.lbtn.Text="内容字符串"; this.lbtn.Visible=true;

回答2:

前台
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>















后台页面加载事件中

string sStr = "1,2,3,4,5,6,7,8,8,9,90,0";
string[] Array = sStr.Split(',');
string a = "";
for (int i = 0; i < Array.Length; i++)
{
a += "" + i + " ";
}
//把字符串遍历成LinkButton 添加到页面
this.divContent.InnerHtml = a;

回答3:

你可以先在想显示内容的位置放一个linkbuttoneimid为lbtn20把他的visible属性设置为false 然后需要显示的时候 this.lbtn.Text=&quot;内容字符串&quot;; this.lbtn.Visible=true;

回答4:

加上for循环生成