学习flex基础教程重点难点

学习 flex基础教程需要掌握哪些重点内容呢?这是很多初学flex基础教程的朋友在学习过程中会非常想知道的一个问题。今天小编就来给大家专门介绍flex基础教程的重点内容。
  t;add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
            <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
            <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
        </httpHandlers>




        <httpModules>
            <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
        </httpModules>
    </system.web>








    <system.webServer>
        <validation validateIntegratedModeConfiguration="false"/>
        <modules>
            <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
        </modules>
        <handlers>
            <remove name="WebServiceHandlerFactory-Integrated" />
            <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode"
                 type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
            <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode"
                 type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
            <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
        </handlers>
    </system.webServer>
</configuration><asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true">
    </asp:ScriptManager>
    <div>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
            <ContentTemplate>
                <table width="500" border="0" cellpadding="0" cellspacing="2" >
   </td>
                        <td bgcolor="#f7f7f7">
                            &nbsp; &nbsp;<aspropDownList ID="dpProvince" runat="server"
                                AutoPostBack="true" onselectedindexchanged="dpProvince_SelectedIndexChanged" />
                            &nbsp; &nbsp;<aspropDownList ID="dpCity" runat="server" AutoPostBack="true"
                                onselectedindexchanged="dpCity_SelectedIndexChanged" />
                            &nbsp; &nbsp;<aspropDownList ID="dpArea" runat="server" AutoPostBack="false"
                                 />
                        </td>
                    </tr>
                    <tr>
                        <td height="25" bgcolor="#EAEAEA" >
                        </td>
                        <td  bgcolor="#f7f7f7">
                            <asp:UpdateProgress ID="UpdateProgress1" runat="server">
                                <rogressTemplate>
        <asp:AsyncPostBackTrigger ControlID="dpProvince" EventName="SelectedIndexChanged" />
                <asp:AsyncPostBackTrigger ControlID="dpCity" EventName="SelectedIndexChanged" />




            </Triggers>
        </asp:UpdatePanel>
    </div>using System;
using System.Collections.Generic;
using System.Web;
using Downmoon.Framework.Controllers;
using Downmoon.Framework.Model;
using System.Text;
namespace dropdown_JQuery14_Net2
{
    /// <summary>
    /// Summary description for AjaxRequest
    /// </summary>
    public class AjaxRequest : IHttpHandler
    {




        public void ProcessRequest(HttpContext context)
        {




            string Area_FatherID = string.Empty;
            if (context.Request["pid"] != null)
            { Area_FatherID = context.Request["pid"].ToString(); }
            string parentId = string.Empty;
            //mydbDataContext db = new mydbDataContext();
            //List<ChinaStates> list = db.ChinaStates.Where(c => c.ParentAreaCode == strId).ToList();
            List<Area> list = Factory.GetAreaController().GetAreaListFindByParentID(Area_FatherID);
            context.Response.ContentType = "application/json";
            context.Response.ContentEncoding = Encoding.UTF8;
            context.Response.Write(ListToJson(list));
            context.Response.End();
        }
        public string ListToJson(List<Area> list)
        {
            StringBuilder sb = new StringBuilder();
            if (list != null)
            {
                sb.Append("[");
                for (int i = 0; i < list.Count; i++)
             &n sb.Append("\"Area_ID\":\"" + list.Area_ID + "\",");
                    sb.Append("\"Area_Name\":\"" + list.Area_Name + "\"");
                    //sb.Append("\"Area_FatherID\":\"" + list.Area_FatherID + "\"");
                    if (i != list.Count - 1)
                    {
                        sb.Append("},");
                    }
                }




            }
            sb.Append("}");
            sb.Append("]");
            return sb.ToString();
        }
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <style type="text/css">
        #dpCity
        {
            display: none;
            position: relative;
        }
        #dpArea
        {
            display: none;
            position: relative;
        }
    </style>
    <script language="javascript" type="text/javascript" src="Scripts/jquery-1.4.1.js"></script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
  flex基础教程中的重点除了上述的内容之外还有一部分,但是这部分的flex基础教程中的重点是最为关键和重要的,也是最为常用的一些知识信息。因此希望大家在学习这部分知识内容的时候能够多进行深入的研究,认真的了解。从而便于掌握更多的flex操作技术。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值