asp.net可以自行输入和选择下拉菜单的源代码或控件

麻烦大师告诉使用方法... 麻烦大师告诉使用方法 展开
 我来答
huangpeng0419
2012-07-08 · TA获得超过357个赞
知道小有建树答主
回答量:569
采纳率:100%
帮助的人:299万
展开全部
代码给你了 剩下的就交个你了。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI.WebControls;
using System.Web.UI;
namespace Common_Core.CustomControl
{
[ToolboxData("<{0}:DropDownTextBox runat=\"server\" />")]
public class DropDownTextBox : System.Web.UI.WebControls.TextBox
{
private DropDownList _DropDownList;
public DropDownTextBox()
{
this._DropDownList = new DropDownList();
this.DataTextField = "sName";
this.DataValueField = "PK_ID";
}
/// <summary>
/// text
/// </summary>
public string DataTextField { get; set; }
/// <summary>
/// value
/// </summary>
public string DataValueField { get; set; }
/// <summary>
/// datasource
/// </summary>
public object DataSource { get; set; }
/// <summary>
/// bind data
/// </summary>
private void BindData()
{
if (DataSource == null) return;
_DropDownList.DataSource = this.DataSource;
_DropDownList.DataTextField = this.DataTextField;
_DropDownList.DataValueField = this.DataValueField;
_DropDownList.DataBind();
}
protected override void Render(HtmlTextWriter output)
{
int iWidth = Convert.ToInt32(base.Width.Value);
if (iWidth == 0)
{
iWidth = 102;
base.Width = Unit.Parse("102px");
}
int sWidth = iWidth + 16;
int spanWidth = sWidth - 18;
output.Write("<div style=\"POSITION:relative\">");
output.Write("<span style=\"MARGIN-LEFT:" + spanWidth.ToString() + "px;OVERFLOW:hidden;WIDTH:18px\">");
_DropDownList.Width = Unit.Parse(sWidth.ToString() + "px");
_DropDownList.Style.Add("MARGIN-LEFT", "-" + spanWidth.ToString() + "px");
_DropDownList.ID = base.ID + "_Select";
_DropDownList.Attributes.Add("onchange", "this.parentNode.nextSibling.value=this.options[this.selectedIndex].text");
_DropDownList.Attributes.Add("onfocus", "" + this.getFocusScript() + "");
//LoadData();
BindData();
_DropDownList.RenderControl(output);
output.Write("</span>");
base.Style.Clear();
base.Width = Unit.Parse(iWidth.ToString() + "px");
base.Style.Add("left", "0px");
base.Style.Add("POSITION", "absolute");
base.Render(output);
output.Write("</div>");
}
private string getFocusScript()
{
string strScript = "\n";
strScript += "var isExist = -2;\n";
strScript += "var obj = event.srcElement;\n";
strScript += "var str = this.parentNode.nextSibling.value;\n";
strScript += "var ary = obj.options;\n";
strScript += "for(var i=0;i<ary.length;i++){\n";
strScript += " if(str == ary[i].text){\n";
strScript += " isExist = i;\n";
strScript += " break;\n";
strScript += " }\n";
strScript += "}\n";
strScript += "if(isExist != -2){\n";
strScript += " obj.selectedIndex = isExist;\n";
strScript += "}\n";
strScript += "else{\n";
strScript += " obj.selectedIndex = -1;\n";
strScript += "}\n";
return strScript;
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
stydfans
2012-07-08 · TA获得超过668个赞
知道小有建树答主
回答量:1263
采纳率:100%
帮助的人:511万
展开全部
是百度那种输入了关键字就有一个框弹出来吗?

如果是那个,那就是 AUTOCOMPLETE插件
追问
这个插件不会,有相关的使用教程吗
追答
AjaxToolKit 参考它的使用说明。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式