【Asp.Net】Dropdownlist的autoPostBack属性

简介:

参考链接:

http://www.cnblogs.com/zfanlong1314/p/3595298.html

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="_131.WebForm1" %>
<!DOCTYPE html>
< html  xmlns = "http://www.w3.org/1999/xhtml" >
< head  runat = "server" >
     < title ></ title >
</ head >
< body >
     < form  id = "form1"  runat = "server" >
     < div >
         < asp:DropDownList  ID = "DropDownList1"  runat = "server"   OnSelectedIndexChanged = "DropDownList1_SelectedIndexChanged"  AutoPostBack = "True" ></ asp:DropDownList >
         < br  />
         < asp:Label  ID = "Label1"  runat = "server"  Text = "Name" ></ asp:Label >
         < asp:TextBox  ID = "TextBox1"  runat = "server" ></ asp:TextBox >
         < br  />
         < asp:Label  ID = "Label2"  runat = "server"  Text = "Age" ></ asp:Label >
         < asp:TextBox  ID = "TextBox2"  runat = "server" ></ asp:TextBox >
         < br  />
         < asp:Label  ID = "Label3"  runat = "server"  Text = "Remark" ></ asp:Label >
         < asp:TextBox  ID = "TextBox3"  runat = "server" ></ asp:TextBox >
     </ div >
     </ form >
</ body >
</ html >


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using  System;
using  System.Collections.Generic;
using  System.Configuration;
using  System.Data;
using  System.Data.SqlClient;
using  System.Linq;
using  System.Web;
using  System.Web.UI;
using  System.Web.UI.WebControls;
namespace  _131
{
     public  partial  class  WebForm1 : System.Web.UI.Page
     {
         protected  void  Page_Load( object  sender, EventArgs e)
         {
             if  (!IsPostBack)
             {
                 string  ConStr = ConfigurationManager.ConnectionStrings[ "strCon" ].ConnectionString;
                 SqlConnection con =  new  SqlConnection(ConStr);
                 SqlCommand cmd =  new  SqlCommand( "select * from tb_sellInfo" , con);
                 if  (con.State.Equals(ConnectionState.Closed))
                 {
                     con.Open();
                 }
                 SqlDataReader sqr = cmd.ExecuteReader();
                 if  (sqr.HasRows)
                 {
                     while  (sqr.Read())
                     {
                         DropDownList1.Items.Add(sqr[ "Name" ].ToString());
                         DropDownList1.DataTextField =  "Name" ;
                         DropDownList1.DataBind();
                     }
                     ListItem li =  new  ListItem( "请选择" "0" );
                     DropDownList1.Items.Insert(0, li);
                 }
                 sqr.Close();
                 con.Close();
             }
         }
         protected  void  DropDownList1_SelectedIndexChanged( object  sender, EventArgs e)
         {
             string  sqlcmd =  "select * from tb_sellInfo where Name='"  + Convert.ToString(DropDownList1.SelectedValue)+ "'" ;
             string  ConStr = ConfigurationManager.ConnectionStrings[ "strCon" ].ConnectionString;
             SqlConnection con =  new  SqlConnection(ConStr);
             con.Open();
             SqlCommand cmd =  new  SqlCommand(sqlcmd, con);
             SqlDataReader sqr = cmd.ExecuteReader();
             sqr.Read();
             TextBox1.Text = sqr[ "Name" ].ToString();
             TextBox2.Text = sqr[ "Age" ].ToString();
             TextBox3.Text = sqr[ "UpdateDate" ].ToString();
             sqr.Close();
             con.Close();
              
         }
     }
}





      本文转自daniel8294 51CTO博客,原文链接:http://blog.51cto.com/acadia627/1899240 ,如需转载请自行联系原作者




相关文章
|
API
.net core工具组件系列之Autofac—— 第二篇:Autofac的3种依赖注入方式(构造函数注入、属性注入和方法注入),以及在过滤器里面实现依赖注入
本篇文章接前一篇,建议可以先看前篇文章,再看本文,会有更好的效果。前一篇跳转链接:https://www.cnblogs.com/weskynet/p/15046999.html
631 0
.net core工具组件系列之Autofac—— 第二篇:Autofac的3种依赖注入方式(构造函数注入、属性注入和方法注入),以及在过滤器里面实现依赖注入
|
5月前
|
SQL 开发框架 .NET
(20)ASP.NET Core EF创建模型(必需属性和可选属性、最大长度、并发标记、阴影属性)
(20)ASP.NET Core EF创建模型(必需属性和可选属性、最大长度、并发标记、阴影属性)
|
SQL 开发框架 .NET
Asp.net-不能在DropDownList中选择多个项
Asp.net-不能在DropDownList中选择多个项
113 0
|
JSON 物联网 数据格式
阿里云物联网.NET Core客户端 CZGL.AliloTClient:5.设置设备属性
阿里云物联网.NET Core客户端 CZGL.AliloTClient:5.设置设备属性
382 15
|
存储 传感器 JSON
阿里云物联网.NET Core客户端|CZGL.AliloTClient:4.设备上报属性
阿里云物联网.NET Core客户端|CZGL.AliloTClient:4.设备上报属性
392 15
|
XML JSON 数据格式
.NET中XML序列化和反序列化常用类和用来控制XML序列化的属性总结(XmlSerializer,XmlTypeAttribute,XmlElementAttribute,XmlAttributeAttribute,XmlArrayAttribute...)
.NET中XML序列化和反序列化常用类和用来控制XML序列化的属性总结(XmlSerializer,XmlTypeAttribute,XmlElementAttribute,XmlAttributeAttribute,XmlArrayAttribute...)
279 0
|
存储 开发框架 自然语言处理
【.Net底层剖析】3.用IL来理解属性
【.Net底层剖析】3.用IL来理解属性
156 0
【.Net底层剖析】3.用IL来理解属性
|
存储 JSON 物联网
.NET Core 跨平台物联关网开发:上报属性(三)
.NET Core 跨平台物联关网开发:上报属性(三)
210 0
.NET Core 跨平台物联关网开发:上报属性(三)
|
开发框架 .NET
asp:DropDownList用法
asp:DropDownList用法
189 0
asp:DropDownList用法
|
JSON 物联网 网络性能优化
NET Core 跨平台物联网开发 SDK属性、方法、委托、类(四)
NET Core 跨平台物联网开发 SDK属性、方法、委托、类(四)
279 0