項目中使用的ajax非同步讀取資料結構設計

來源:互聯網
上載者:User

標籤:style   blog   http   color   使用   os   io   資料   

設計稍微複雜了一點,完成ajax讀取功能涉及到了很多頁面。雖然如此,但感覺比較靈活。

和傳統方法唯一的區別在於多了一層資料容器控制項,裡面提供了顯示資料的HTML元素及相應的JS方法。

這樣資料控制項指產生純資料。

ajax非同步讀取

使用了jQuery.ajax,通過ajax POST方式請求幕後處理ashx頁面,並傳遞相關參數。

ashx

完成動態載入使用者控制項,並根據接收的參數對控制項的屬性進行賦值。

載入控制項,藉助於部落格園老趙的一篇博文,連結找不到了,以後再補。

public class ViewManager<T> where T : System.Web.UI.UserControl    {        private System.Web.UI.Page m_pageHolder;        public T LoadViewControl(string path)        {            this.m_pageHolder = new System.Web.UI.Page();            return (T)this.m_pageHolder.LoadControl(path);        }        public string RenderView(T control)        {            StringWriter output = new StringWriter();            this.m_pageHolder.Controls.Add(control);            HttpContext.Current.Server.Execute(this.m_pageHolder, output, false);            return output.ToString();        }    }
View Code

代碼很少,確很實用。

反射賦值

 foreach (System.Reflection.PropertyInfo p in control.GetType().GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance))                {                    if (string.IsNullOrEmpty(context.Request[p.Name])) continue;                    try                    {                        Convert.ChangeType(context.Request[p.Name], p.PropertyType);                        p.SetValue(control, Convert.ChangeType(context.Request[p.Name], p.PropertyType), null);                    }                    catch (System.InvalidCastException e)                    {                    }                }
View Code

 具體使用

ViewManager<Web.controls.PageControl> viewManager = new ViewManager<Web.controls.PageControl>();Web.controls.PageControl control = viewManager.LoadViewControl("~/upload/controls/" + name); foreach (System.Reflection.PropertyInfo p in control.GetType().GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance))                {                    if (string.IsNullOrEmpty(context.Request[p.Name])) continue;                    try                    {                        Convert.ChangeType(context.Request[p.Name], p.PropertyType);                        p.SetValue(control, Convert.ChangeType(context.Request[p.Name], p.PropertyType), null);                    }                    catch (System.InvalidCastException e)                    {                    }                }                context.Response.Write(viewManager.RenderView(control));
View Code

 資料控制項

使用asp:Repeater顯示資料。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.