您现在的位置是:网站首页> 编程资料编程资料
ASP.NET DropDownListCheckBox使用示例(解决回发问题)_实用技巧_
2023-05-24
451人已围观
简介 ASP.NET DropDownListCheckBox使用示例(解决回发问题)_实用技巧_
资料地址
http://ligerui.com/demos/comboBox/comboBoxMul.htm
具体代码
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CheckBoxList.aspx.cs" Inherits="CheckBoxList" %>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class CheckBoxList : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
this.Label1.Text = this.HiddenField1.Value;
}
}
<%@ WebHandler Language="C#" Class="CheckBoxHandle" %>
using System;
using System.Web;
using System.Collections.Generic;
public class CheckBoxHandle : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
string select = context.Request.QueryString["selectValue"].ToString();
if (string.IsNullOrEmpty(select))
{
List
list.Add(new Type { ID = 1, Name = "SAm" });
list.Add(new Type { ID = 2, Name = "Tom" });
list.Add(new Type { ID = 3, Name = "jim" });
context.Response.Write(JsonHelper.GetJSONString(list));
}
else
{
//解决回发问题
context.Response.Write(select);
}
}
public bool IsReusable {
get {
return false;
}
}
}
- ASP.NET DropDownList控件的使用方法
- asp.net省市三级联动的DropDownList+Ajax的三种框架(aspnet/Jquery/ExtJs)示例
- jquery获取ASP.NET服务器端控件dropdownlist和radiobuttonlist生成客户端HTML标签后的value和text值
- (asp.net c#)DropDownList绑定后显示对应的项的两种方法
- asp.net DropDownList自定义控件,让你的分类更清晰
- ASP.NET jQuery 实例7 通过jQuery来获取DropDownList的Text/Value属性值
- ASP.NET jQuery 实例8 (动态添加内容到DropDownList)
- ASP.NET jQuery 实例18 通过使用jQuery validation插件校验DropDownList
- asp.net中不能在DropDownList中选择多个项 原因分析及解决方法
- asp.net中通过DropDownList的值去控制TextBox是否可编写的实现代码
- ASP.NET MVC DropDownList数据绑定及使用详解
- ASP.NET笔记之 ListView 与 DropDownList的使用
- ASP.NET服务器端控件RadioButtonList,DropDownList,CheckBoxList的取值、赋值用法
- asp.net mvc下拉框Html.DropDownList 和DropDownListFor的常用方法
- ASP.NET MVC中为DropDownListFor设置选中项的方法
- ASP.NET中DropDownList和ListBox实现两级联动功能
- asp.net DropDownList实现二级联动效果
- ASP.NET中DropDownList下拉框列表控件绑定数据的4种方法
