从 C# 初始化 javascript 数组值

发布于 2024-11-02 09:34:40 字数 503 浏览 0 评论 0原文

我想在 asp.net 应用程序中从 c# 初始化 JavaScript 数组值。 迭代循环

ScriptManager.RegisterClientScriptBlock(this, this.GetType(),  "assignGroupParty" + i, string.Format("javascript:SetProspectGroupPartyID({0},{1});"currentIndex, currentQueue.PartyID), true);

我有下面的代码,我在这里

javascript:SetProspectGroupPartyID

是在 currentIndex 位置设置数组值的函数。

 O/P:- [undefined, 37316]

它总是只分配一个索引,而另一个索引保持未定义。任何人都可以帮我解决这个问题吗? 谢谢

I want to initialize JavaScript array value from c# in asp.net application. I have below code which i iterate through the loop,

ScriptManager.RegisterClientScriptBlock(this, this.GetType(),  "assignGroupParty" + i, string.Format("javascript:SetProspectGroupPartyID({0},{1});"currentIndex, currentQueue.PartyID), true);

here

javascript:SetProspectGroupPartyID

is function which sets the array value at the currentIndex position.

 O/P:- [undefined, 37316]

it always assign at only one index and the other remains undefined. Can any one help me out on this.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃→可爱长大的 2024-11-09 09:34:40

您可以使用 JavaScriptSerializer 类:

int[] numbers = new int[] { 1, 2, 3, 4, 5};
var serializer = new JavaScriptSerializer();
var jsArray = string.Format("var jsArray = {0}", serializer.Serialize(numbers));

然后使用例如 ClientScriptManager 注册它.RegisterStartupScriptBlock方法:

ClientScriptManager cs = Page.ClientScript;
cs.RegisterClientScriptBlock(
    this.GetType(), 
    "arrayDeclaration", 
    jsArray, 
    true
);

You could use JavaScriptSerializer class for this:

int[] numbers = new int[] { 1, 2, 3, 4, 5};
var serializer = new JavaScriptSerializer();
var jsArray = string.Format("var jsArray = {0}", serializer.Serialize(numbers));

and then register it by using e.g. ClientScriptManager.RegisterStartupScriptBlock method:

ClientScriptManager cs = Page.ClientScript;
cs.RegisterClientScriptBlock(
    this.GetType(), 
    "arrayDeclaration", 
    jsArray, 
    true
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文