字符串数组从c#到javascript的例子不工作

string array from c# to javascript example not working

本文关键字:工作 javascript 数组 字符串      更新时间:2023-09-26

我使用asp.net web表单fx3.5,我试图让我的服务器端字符串数组到我的javascript。我发现了一个简单的例子,它声称有效,但并不适合我。().Serialize(temp);

这是参考文章

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="ShelterExpress.UserInterface.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server" language="c#">
    string[] temp;
    int lengthOfTemp;
    public string tempJSON = new System.Web.Script.Serialization.JavaScriptSerializer().Serialize(temp);
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    </div>
    </form>
</body>
</html>
<script runat="server" language="c#">
    string[] temp;
    int lengthOfTemp;
    public string tempJSON;
    protected override void OnLoad(EventArgs e)//you have to initialize your temp and tempJSON in a method
    {
        base.OnLoad(e);
        temp = new string[] { "Hi", ",", "ojlovecd" };//Initialize your temp here
        tempJSON = new System.Web.Script.Serialization.JavaScriptSerializer().Serialize(temp);
    }
</script>