|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
由于ASP还是一种Script语言所没除了大量使用组件外,没有办法提高其工作效率。它必须面对即时编绎的时间考验,同时我们还不知其背后的组件会是一个什么样的状况;菜单|客户端|联动菜单|革新|无革新|菜单|客户端|联动菜单|革新|无革新<%@Pagelanguage="c#"Codebehind="WebForm1.aspx.cs"AutoEventWireup="false"Inherits="CustomManager.company.WebForm1"%>
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<metacontent="MicrosoftVisualStudio.NET7.1"name="GENERATOR">
<metacontent="C#"name="CODE_LANGUAGE">
<metacontent="JavaScript"name="vs_defaultClientScript">
<metacontent="http://schemas.microsoft.com/intellisense/ie5"name="vs_targetSchema">
<LINKhref="../CSS/style.css"type="text/css"rel="stylesheet">
</HEAD>
<bodyMS_POSITIONING="GridLayout">
<formid="Form1"method="post"runat="server">
<asp:dropdownlistid="DropDownList1"style="Z-INDEX:101;LEFT:40px;POSITION:absolute;TOP:168px"
runat="server"></asp:dropdownlist><asp:labelid="Label1"style="Z-INDEX:102;LEFT:328px;POSITION:absolute;TOP:104px"runat="server">Label</asp:label>
<asp:DropDownListid="DropDownList2"style="Z-INDEX:104;LEFT:40px;POSITION:absolute;TOP:264px"
runat="server"></asp:DropDownList></form>
<scriptLANGUAGE="javascript">
varstr=document.getElementById("Label1").innerText;
arr=str.split(",");
a=arr.length
ar=newArray()
for(i=0;i<a;i++){
ar[i]=arr[i].split("-");
}
onecount=ar.length;
functionld(){
document.Form1.DropDownList2.length=0
lid=Form1.DropDownList1.value;
for(i=0;i<onecount;i++){
if(ar[i][0]==lid){
document.Form1.DropDownList2.options.add(newOption(ar[i][2],ar[i][1]));
}
}
}
functionshowMsg()
{
alert(document.Form1.DropDownList1.value);
alert(document.Form1.DropDownList2.value);
}
</script>
</body>
</HTML>
usingSystem;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Web;
usingSystem.Web.SessionState;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.HtmlControls;
namespaceCustomManager.company
{
///<summary>
///WebForm1的择要申明。
///</summary>
publicclassWebForm1:System.Web.UI.Page
{
protectedSystem.Web.UI.WebControls.DropDownListDropDownList1;
protectedSystem.Web.UI.WebControls.LabelLabel1;
protectedSystem.Web.UI.WebControls.DropDownListDropDownList2;
staticprotectedDataTabletb1;
privatevoidPage_Load(objectsender,System.EventArgse)
{
//在此处安排用户代码以初始化页面
if(!Page.IsPostBack)
{
}
DropDownList1.Attributes.Add("onchange","ld();");
stringstrConn,strSql;
System.Data.SqlClient.SqlDataAdapterda;
strConn="server=localhost;database=custom;uid=custom;pwd=a;";
strSql="select*fromcustom.bigcalling;";
da=newSystem.Data.SqlClient.SqlDataAdapter(strSql,strConn);
DataTabletb3=newDataTable();
da.Fill(tb3);
DropDownList1.DataSource=tb3;
DropDownList1.DataTextField="BIGCALLNAME";
DropDownList1.DataValueField="BIGCALLID";
DropDownList1.DataBind();
strSql="select*fromcustom.smallcalling;";
da=newSystem.Data.SqlClient.SqlDataAdapter(strSql,strConn);
tb1=newDataTable();
da.Fill(tb1);
Label1.Text="";
foreach(DataRowrowintb1.Rows)
{
Label1.Text=Label1.Text+row["BIGCALLID"]+"-"+row["SMALLCALLID"]+"-"+row["SMALLCALLNAME"]+",";
}
}
#regionWeb窗体计划器天生的代码
overrideprotectedvoidOnInit(EventArgse)
{
//
//CODEGEN:该挪用是ASP.NETWeb窗
使用filesystemobject,可以对服务器上的文件进行操作,浏览、复制、移动、删除等。有ado的支持,asp对数据库的操作非常得心应手。你甚至可以像使用本地数据库那样,管理远程主机上的数据库,对表格、记录进行各种操作。 |
|