asp.net アプリのユーザーを含む動的テーブルがあります (メンバーシップ クラスを使用)。JavaScript を使用してポップアップを開くために、各ロール セル内にコントロールを追加しようとしています。現在、関数が起動するかどうかを確認するだけです。しかし、セルをクリックすると、 「Uncaught SyntaxError: Unexpected token }」というエラーが発生します。
ここに私のaspxがあります:
<head runat="server">
<title></title>
<script type="text/javascript">
function alert_function(id)
{
alert(id);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:placeholder ID="Placeholder1" runat="server"></asp:placeholder>
</div>
</form>
</body>
</html>
と私のコードビハインド:
protected void Page_Load(object sender, EventArgs e)
{
MembershipUserCollection users = Membership.GetAllUsers();
Table tbl = new Table();
TableRow h_row = new TableRow();
TableCell c1 = new TableCell();
TableCell c2 = new TableCell();
TableCell c3 = new TableCell();
TableCell c4 = new TableCell();
TableCell c5 = new TableCell();
TableCell c6 = new TableCell();
c1.Text = "משתמש מחובר?";
c2.Text = "התחבר לאחרונה";
c3.Text = "נוצר ב";
c4.Text = "דואר אלקטרוני";
c5.Text = "תפקיד";
c6.Text = "שם משתמש";
h_row.Controls.Add(c1);
h_row.Controls.Add(c2);
h_row.Controls.Add(c3);
h_row.Controls.Add(c4);
h_row.Controls.Add(c5);
h_row.Controls.Add(c6);
tbl.Controls.Add(h_row);
foreach (MembershipUser u in users)
{
TableRow row1 = new TableRow();
TableCell cell1 = new TableCell();
TableCell cell2 = new TableCell();
TableCell cell3 = new TableCell();
TableCell cell4 = new TableCell();
TableCell cell5 = new TableCell();
TableCell cell6 = new TableCell();
cell1.Text = u.IsOnline.ToString();
cell2.Text = u.LastLoginDate.ToString();
cell3.Text = u.CreationDate.ToString();
cell4.Text = u.Email;
string user_name=u.UserName;
string[] role = Roles.GetRolesForUser(user_name);
if (role.Length < 1)
cell5.Text = "אין תפקיד";
**else
{
LiteralControl lc=new LiteralControl("<a onclick='alert_function('"+u.UserName.ToString()+"')'>" + role[0] + "</a>");
cell5.Controls.Add(lc);
}**
cell6.Text = u.UserName;
row1.Controls.Add(cell1);
row1.Controls.Add(cell2);
row1.Controls.Add(cell3);
row1.Controls.Add(cell4);
row1.Controls.Add(cell5);
row1.Controls.Add(cell6);
tbl.Controls.Add(row1);
}
Placeholder1.Controls.Add(tbl);
}
**奇妙です。コード内のハイライトされた行を次のように変更すると、
LiteralControl lc=new LiteralControl("<a onclick='alert_function("+u.UserName.ToString()+")'>" + role[0] + "</a>");
("' '" を削除) 動作しますが、ユーザー名は文字列として送信されないため、数字のみが警告されます。**