程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> 怎麼樣給下拉框加載背景色

怎麼樣給下拉框加載背景色

編輯:關於C#
 

部分代碼:
------aspx頁面:
<tr>
<td><select id=“job“ name=“job“ runat=“server“></td>
</tr>
說明:下拉框必須寫成上面的形式,用<asp:dropdownlist....>不能實現
------cs頁面:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Data.Common;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Reflection;

namespace _0731rcnet
{
/// <summary>
/// index 的摘要說明。
/// </summary>
public class index : System.Web.UI.Page
{
//protected System.Web.UI.WebControls.DropDownList job;
protected System.Web.UI.HtmlControls.HtmlSelect job; //注意:這裡應該寫成這個形式
.......部分代碼省略
private void Page_Load(object sender, System.EventArgs e)
{
// 在此處放置用戶代碼以初始化頁面
if(!Page.IsPostBack)
{
SqlConnection conn=new SqlConnection(ConfigurationSettings.AppSettings["Connectionstrings"]);
//SqlConnection conn=new SqlConnection("Server=LIUQ;database=0731rc;uid=sa;pwd=92014011");
//導航條上面的行業以及地區加載
string jobsql="select * from binfo";
SqlDataAdapter myad=new SqlDataAdapter(jobsql,conn);
DataSet ds=new DataSet();
myad.Fill(ds,"binfo");
for(int i=0;i<ds.Tables[0].Rows.Count;i++)
{
if(Convert.ToString(ds.Tables[0].Rows[i]["job"].ToString())!="")
{
//加載行業數據
job.Items.Add(new ListItem(ds.Tables[0].Rows[i]["job"].ToString(),ds.Tables[0].Rows[i]["job"].ToString()));
if(Convert.ToDouble(ds.Tables[0].Rows[i]["rank"].ToString())==1)
{
job.Items[i].Attributes.Add("style","background-color:#5199EA"); //改變背景色
}
}
}
conn.Close();
job.Items.Insert(0,"-----請選擇職位類別-----");
address.Items.Insert(0,"--請選擇工作地點--");

說明:上面的代碼中是在判斷數據表中字段名rank為1的情況下就給下拉框加載背景色
 

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved