绑定 this.number_lists.DataSource = ds.Tables[0].DefaultView; this.number_lists.DataMember = "family_list"; this.number_lists.DataValueField = "list_number"; this.number_lists.DataTextField = "list_name"; this.number_lists.DataBind();
取值foreach (MobileListItem li in this.number_lists.Items) { if (li.Selected) { NumberList.Add(li.Value); itemscount++; } }
当选定后li.Selected总为false;
望高手指教
asp.net wap SelectionList 绑定后取值Selection为空
答案:1 悬赏:0 手机版
解决时间 2021-08-14 13:05
- 提问者网友:那叫心脏的地方装的都是你
- 2021-08-14 08:40
最佳答案
- 五星知识达人网友:woshuo
- 2021-08-14 09:38
您的浏览器已经禁用了脚本,这会影响您正常使用本站的功能。
Asp.net开发的wap网站集成在线wap模拟器
2009-10-12 11:38 来源:
俺用的工具有点落后,vs2008 express版。没用过asp.net mobile 开发过wap网站,于是想尽各种办法用asp.net 给实现了:
注:通过目录下的/moni可以模拟浏览我们制作好的wap网站,我们先实现一个Page类,添加一些于aspx页的交互,因为wap可能不支持viewState吧,Page.cs 注意与System.Web.UI.Page分开哦。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Rsion.Web
{
public abstract class Page : System.Web.UI.Page
{
private TempDatas tempData;
public Page()
///
/// 页面临时数据
///
public TempDatas TempData
{
get
{
if (tempData == null) tempData = new TempDatas();
return tempData;
}
}
public PageAdapter Html
{
get
}
///
/// 绑定事件
///
protected virtual void BindEvents()
{
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using Rsion.Web;
namespace Rsion.Web
{
public abstract class Application:System.Web.HttpApplication
{
public static Template Template;
///
/// 模板缓存时间
///
public static int TemplateCacheTime = 10;
///
/// 重启Web进程
///
public static void RestartWebProcess()
{
HttpRuntime.UnloadAppDomain();
}
}
}
创建TempData用于与.aspx页数据交换
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
// Author : Sonven
// Blog : Sonven.cnblogs.com
namespace Rsion.Web
{
public class TempDatas:CollectionBase
{
private Dictionary dataArray;
public TValue this[TKey key]
{
get
{
if (dataArray.ContainsKey(key))return dataArray[key];
throw new ArgumentException("未添加此数据项进入该集合!", "TKey", null);
}
set
{
dataArray = dataArray ?? new Dictionary();
if (dataArray.ContainsKey(key)) dataArray[key] = value;
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯