Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/317.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 结束,我们可以用数组来代替它,这对我理解的正确吗?嗯。。。某种程度上。系统将为您进行json序列化。ToArray()不能代替任何东西。我看完这篇文章,清除了所有的障碍,谢谢 **here is my code** Default.aspx <ht_C#_Jquery_Web Services_Asp.net 4.0 - Fatal编程技术网

C# 结束,我们可以用数组来代替它,这对我理解的正确吗?嗯。。。某种程度上。系统将为您进行json序列化。ToArray()不能代替任何东西。我看完这篇文章,清除了所有的障碍,谢谢 **here is my code** Default.aspx <ht

C# 结束,我们可以用数组来代替它,这对我理解的正确吗?嗯。。。某种程度上。系统将为您进行json序列化。ToArray()不能代替任何东西。我看完这篇文章,清除了所有的障碍,谢谢 **here is my code** Default.aspx <ht,c#,jquery,web-services,asp.net-4.0,C#,Jquery,Web Services,Asp.net 4.0,结束,我们可以用数组来代替它,这对我理解的正确吗?嗯。。。某种程度上。系统将为您进行json序列化。ToArray()不能代替任何东西。我看完这篇文章,清除了所有的障碍,谢谢 **here is my code** Default.aspx <html> <head runat="server"> <title>JsonAndToArray</title> <script type="text/javascript" sr


结束,我们可以用数组来代替它,这对我理解的正确吗?嗯。。。某种程度上。系统将为您进行json序列化。
ToArray()
不能代替任何东西。我看完这篇文章,清除了所有的障碍,谢谢
**here is my code**
Default.aspx

<html>
<head runat="server">
    <title>JsonAndToArray</title>

    <script type="text/javascript" src="js/jquery.min.js"></script>

    <script type="text/javascript">

        $(document).ready(function() {
            ddlActivityType = document.getElementById("<%=ddlActivity.ClientID %>");
            $.ajax({
                type: "POST",
                contentType: "application/json;charset/utf-8",
                url: "Visit.asmx/GetActivityByJSON",
                dataType: "json",
                success: function(results) {
                    results = eval(results.d);
                    $('#ddlActivity').get(0).options.length = 0;
                    $('#ddlActivity').get(0).options[0] = new Option('  --select--  ', '0');
                    $.each(results, function(val, text) {
                        $('#ddlActivity').append($('<option></option>').val(text[1]).html(text[0]));
                    });
                }
            });

            ddlActivityType1 = document.getElementById("<%=ddlActivity2.ClientID %>");
            $.ajax({
                type: "POST",
                contentType: "application/json;charset/utf-8",
                url: "Visit.asmx/GetActivity",
                dataType: "json",
                success: function(results) {
                    results = eval(results.d);
                    $('#ddlActivity2').get(0).options.length = 0;
                    $('#ddlActivity2').get(0).options[0] = new Option('--select--', '0');
                    $.each(results, function(val, text) {
                        $('#ddlActivity2').append($('<option></option>').val(text[1]).html(text[0]));
                    });
                }
            });
        });

    </script>

</head>
<body>
    <form id="form1" runat="server">
    Json-Activity :
    <select id="ddlActivity" runat="server">
    </select>   
    <br />
    <br />
    ToArray-Activity :
    <select id="ddlActivity2" runat="server">
    </select>
    <br />
    <br />
    <asp:Button ID="btnJson" runat="server" Text="Json" OnClick="Json_click"/>
    </form>
</body>
</html>


Defalut.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Web.Script.Serialization;

public partial class Defalut: System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    protected void Json_click(object sender,EventArgs e)
    {
    }
}


**webservices**

**

 - Visit.asmx

**


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Data;
using System.Data.SqlClient;
using System.Web.Script.Serialization;
using Facade;

/// <summary>
/// Summary description for Visit
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
[System.Web.Script.Services.ScriptService]
public class Visit : System.Web.Services.WebService
{

    public Visit()
    {

        //Uncomment the following line if using designed components 
        //InitializeComponent(); 
    }

    [WebMethod]
    public string HelloWorld()
    {
        return "Hello World";
    }

    [WebMethod]
    public IList<string[]> GetActivity()
    {
        IList<string[]> values = new List<string[]>();
        //string value = "";
        try
        {
            SqlConnection con_New = new SqlConnection(@"Data Source=SQLEXPRESS;Initial Catalog="Database";Integrated Security=True;");
            con_New.Open();
            SqlCommand cmdSelect_ST = new SqlCommand("select id,name from table", con_New);
            SqlDataAdapter da_ST = new SqlDataAdapter(cmdSelect_ST);

            DataSet ds = new DataSet();
            da_ST.Fill(ds);
            DataTable dt = ds.Tables[0];
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                string[] ActivityType = new string[2];
                ActivityType[0] = dt.Rows[i]["name"].ToString();
                ActivityType[1] = dt.Rows[i]["id"].ToString();
                values.Add(ActivityType);
            }          
        }
        catch (Exception ex)
        {

        }
        return values;
    }


    [WebMethod]
    public string GetActivityByJSON()
    {
        IList<string[]> values = new List<string[]>();
        string value = "";
        try
        {
            SqlConnection con_New = new SqlConnection(@"Data Source=SQLEXPRESS;Initial Catalog="Database";Integrated Security=True;");
            con_New.Open();
            SqlCommand cmdSelect_ST = new SqlCommand("select name,id from table", con_New);
            SqlDataAdapter da_ST = new SqlDataAdapter(cmdSelect_ST);

            DataSet ds = new DataSet();
            da_ST.Fill(ds);
            DataTable dt = ds.Tables[0];
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                string[] ActivityType = new string[2];
                ActivityType[0] = dt.Rows[i]["name"].ToString();
                ActivityType[1] = dt.Rows[i]["id"].ToString();
                values.Add(ActivityType);
            }
            JavaScriptSerializer js = new JavaScriptSerializer();
            value = js.Serialize(values);
        }
        catch (Exception ex)
        {

        }
        return value;
    }
}
IList<string[]> values = new List<string[]>();
JavaScriptSerializer js = new JavaScriptSerializer();
value = js.Serialize(values);