华域联盟 .Net DropDownList根据下拉项的Text文本序号排序

DropDownList根据下拉项的Text文本序号排序

有时候刚好表中没有可以排序的字段,又不想修改表结构,但它的项文本有序号,这时就可以用这方法排序,例如:


测试页Default2.aspx:

复制代码 代码如下:

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<title></title>

</head>

<body>

<form id="form1" runat="server">

<div>

<asp:DropDownList runat="server" ID="ddlType">

</asp:DropDownList>

<asp:Button runat="server" ID="btnSort" onclick="btnSort_Click" Text="排序" />

</div>

</form>

</body>

</html>

Default2.aspx.cs:

复制代码 代码如下:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Text.RegularExpressions;

public partial class Default2 : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

if (!IsPostBack)

{

ddlType.Items.Add(new ListItem("--请选择--"));

ddlType.Items.Add(new ListItem("2_bb"));

ddlType.Items.Add(new ListItem("1_aa"));

ddlType.Items.Add(new ListItem("4_ee"));

ddlType.Items.Add(new ListItem("3_dd"));

}

}

protected void btnSort_Click(object sender, EventArgs e)

{

DropDownListBubbleSort(ddlType);

//DropDownListSelectionSort(ddlType);

}

/// <summary>

/// 冒泡排序

/// </summary>

/// <param name="ddl"></param>

public void DropDownListBubbleSort(DropDownList ddl)

{

ListItem listItem = new ListItem();

for (int i = 0; i < ddl.Items.Count; i++)

{

for (int j = i + 1; j < ddl.Items.Count; j++)

{

int firstVal = 0, nextVal = 0;

int.TryParse(Regex.Replace(ddl.Items[i].Text, @"\D", @"", RegexOptions.IgnoreCase), out firstVal);

int.TryParse(Regex.Replace(ddl.Items[j].Text, @"\D", @"", RegexOptions.IgnoreCase), out nextVal);

if (firstVal == 0 || nextVal == 0)

continue;

if (firstVal > nextVal)

{

listItem = ddl.Items[j];

ddl.Items.Remove(ddl.Items[j]);

ddl.Items.Insert(i, listItem);

}

}

}

}

/// <summary>

/// 选择排序

/// </summary>

/// <param name="ddl"></param>

public void DropDownListSelectionSort(DropDownList ddl)

{

ListItem listItem = new ListItem();

int length = ddl.Items.Count;

for (int i = 0; i < length; i++)

{

int min = 0;

int.TryParse(Regex.Replace(ddl.Items[i].Text, @"\D", @"", RegexOptions.IgnoreCase), out min);

if (min == 0)

continue;

int minIndex = i;

for (int j = i + 1; j < length; j++)

{

int nextVal = 0;

int.TryParse(Regex.Replace(ddl.Items[j].Text, @"\D", @"", RegexOptions.IgnoreCase), out nextVal);

if (nextVal == 0)

continue;

if (min > nextVal)

{

min = nextVal;

minIndex = j;

}

}

if (minIndex != i)

{

listItem = ddl.Items[minIndex];

ddl.Items.Remove(ddl.Items[minIndex]);

ddl.Items.Insert(i, listItem);

}

}

}

}
您可能感兴趣的文章:

  • asp.net DropDownList 三级联动下拉菜单实现代码
  • jquery获取ASP.NET服务器端控件dropdownlist和radiobuttonlist生成客户端HTML标签后的value和text值
  • 客户端用JavaScript填充DropDownList控件 服务器端读不到值
  • 用javascript为DropDownList控件下拉式选择添加一个Item至定义索引位置
  • 在dropDownList中实现既能输入一个新值又能实现下拉选的代码
  • 下拉列表多级联动dropDownList示例代码
  • Jquery操作下拉框(DropDownList)实现取值赋值
  • JS,Jquery获取select,dropdownlist,checkbox下拉列表框的值(示例代码)
  • asp.net mvc下拉框Html.DropDownList 和DropDownListFor的常用方法
  • DropDownList设置客户端事件思路
  • DropDownList添加客户端下拉事件操作

本文由 华域联盟 原创撰写:华域联盟 » DropDownList根据下拉项的Text文本序号排序

转载请保留出处和原文链接:https://www.cnhackhy.com/47835.htm

本文来自网络,不代表华域联盟立场,转载请注明出处。

作者: sterben

发表回复

联系我们

联系我们

2551209778

在线咨询: QQ交谈

邮箱: [email protected]

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部