首页 > 代码库 > JavaScript提高:006:ASP.NET使用easyUI TABS标签updatepanel

JavaScript提高:006:ASP.NET使用easyUI TABS标签updatepanel

前文使用了easyui的tab标签,切换问题,使用了session保存当前选中页,然后页面整体刷新时再切换至上次保存页码。那么使用updatepanel后,这个问题就很好解决了。
http://blog.csdn.net/yysyangyangyangshan/article/details/38578403
引用dll上文已说过。下面直接看如何改进tab在页面中的使用。
前台代码:
<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
    Namespace="System.Web.UI" TagPrefix="asp" %>


<!DOCTYPE html PUBLIC "-//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>
    
    <link href=http://www.mamicode.com/"Scripts/EasyUI/themes/icon.css" rel="stylesheet" type="text/css" />>后台:
public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {


        }


        protected void Tab1_Button_Click(object sender, EventArgs e)
        {


        }


        protected void Tab2_Button_Click(object sender, EventArgs e)
        {


        }
    }

依然在web.config中加入配置标签:
     <httpHandlers>
        <remove verb="*" path="*.asmx"/>
        <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="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>
效果如下:

这样按钮事件后,也不会整体刷新页面了,也就解决了页签自动跳转至默认页的问题了。

代码下载:http://download.csdn.net/detail/yysyangyangyangshan/7991493

JavaScript提高:006:ASP.NET使用easyUI TABS标签updatepanel