`
phoebird
  • 浏览: 117680 次
  • 性别: Icon_minigender_1
  • 来自: 重庆
社区版块
存档分类
最新评论

表格对象的运用 table dropdownlist

阅读更多

根据dropdownlist选择行、列 确定表格

 

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class Default3 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void Button1_Click(object sender, EventArgs e)
    {
    
        int row = int.Parse(this.DropDownList1.SelectedValue);//将选中的值转换
        int cell = int.Parse(this.DropDownList2.SelectedValue);
        for (int i = 1; i <= row; i++) { //行索引

            TableRow tr = new TableRow();//创建表格行对象
            for (int j = 1; j<=cell; j++) { //列索引
            
                TableCell tc=new TableCell();//创建单元格对象
                Label lbl = new Label();//创建标签对象
                lbl.Text= i.ToString() + "行" + j.ToString() + "列";//将选择的值以坐标方式显示在标签上
                tc.Controls.Add(lbl);//将标签对象添加到单元格中
                tr.Controls.Add(tc);//将单元格添加到行中
            
            }
            Table1.Controls.Add(tr);//将行对象添加到表格对象
        }

    }
}



<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="Default3" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<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" AutoPostBack="True">
            <asp:ListItem>1</asp:ListItem>
            <asp:ListItem>2</asp:ListItem>
            <asp:ListItem>3</asp:ListItem>
            <asp:ListItem>4</asp:ListItem>
        </asp:DropDownList>行<asp:DropDownList ID="DropDownList2" runat="server" AutoPostBack="True">
            <asp:ListItem>1</asp:ListItem>
            <asp:ListItem>2</asp:ListItem>
            <asp:ListItem>3</asp:ListItem>
            <asp:ListItem>4</asp:ListItem>
        </asp:DropDownList>
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="显示" /><br />
        <br />
        <asp:Table ID="Table1" runat="server" Height="144px" Width="295px">
        </asp:Table>
    
    </div>
    </form>
</body>
</html>

 

分享到:
评论

相关推荐

    _dropdownlist和js日期运用

    _dropdownlist和js日期运用

    DropDownList

    【DropDownList】是一种常见的用户界面元素,广泛应用于Web开发中,特别是在ASP.NET框架下...在实际项目中,`DropDownList`的运用需要考虑用户体验、数据加载效率以及错误处理等多个方面,以确保其功能的完整性和性能。

    dropdownlist

    在IT领域,DropdownList(下拉列表)是一种常见的用户界面元素,它允许用户从一组预定义的选项中选择一个。这种控件广泛应用于各种应用程序和网站中,为用户提供了一种简洁、高效的交互方式。在本场景中,描述提到的...

    如何实现无刷新的DropdownList联动效果

    在ASP.NET中,实现无刷新的DropdownList联动效果主要依赖于客户端脚本和服务器端的交互,特别是利用AJAX技术。...同时,这种方法也可以扩展到其他需要动态更新的场景,例如表格数据的异步加载、图表的实时更新等。

    向DropDownList中添加集合

    这个过程通常涉及以下几个步骤:创建`SelectListItem`对象、填充集合、绑定到`DropDownList`以及在视图中呈现。 ### 创建`SelectListItem`对象 在向`DropDownList`添加项之前,我们需要创建一系列的`...

    gridview与dropdownlist组合用法 asp.net

    在ASP.NET开发中,`GridView`控件常用于展示数据表格,而`DropDownList`控件则用于提供下拉选择功能。将这两者结合使用,可以实现更丰富的用户交互和数据操作。本篇将深入探讨如何在`GridView`中集成`DropDownList`...

    Dropdownlist控件的使用

    在ASP.NET开发中,Dropdownlist控件是一种常用的交互元素,用于提供用户选择一个或多个预定义选项的功能。在本教程中,我们将深入探讨如何使用Dropdownlist控件,并实现标题和描述中提到的联动效果——当用户在一个...

    ASP.NET中dropdownlist和GridView控件的用法

    - 在GridView的TemplateField中嵌入Dropdownlist,实现下拉选择与表格数据的联动。 综上所述,Dropdownlist和GridView在ASP.NET中提供了丰富的用户交互和数据展示功能。理解并熟练运用这两个控件,能极大地提高...

    Dropdownlist 只读不可选择的方法实例

    在.NET开发中,DropdownList控件是经常用于创建下拉选择列表的常用组件。这个实例主要探讨如何将DropdownList设置为只读模式,即用户不能从列表中进行选择,但仍然可以显示预设的值。下面我们将详细讲解实现这一功能...

    简单的dropdownlist三级互动

    JSON对象可以轻松映射到JavaScript对象,便于我们在客户端进行操作。 5. CSS: 为了使Dropdownlist看起来美观且易用,我们需要使用CSS进行样式定制。这包括设置颜色、字体、尺寸、悬停效果等,以及解决各级...

    清空dropdownlist值方法

    ### 清空DropdownList值的方法 在.NET框架中,DropdownList是一种常见的用户界面元素,用于显示下拉列表供用户选择。有时,为了提供更好的用户体验或根据应用逻辑的需求,我们需要为用户提供一个选项来清空已选择的...

    DataList中如何响应DropDownList的SelectedIndexChanged事件

    同时,通过`NamingContainer`属性找到`DataListItem`,再从中获取数据源对象的主键值,从而确定是哪个`DataList`项的`DropDownList`发生了改变。 最后,别忘了在`Page_Load`事件中检查`IsPostBack`状态,确保在页面...

    C#编程 WinForm窗体开发 DropDownList(源码)

    C#编程 WinForm窗体开发 DropDownList(源码)C#编程 WinForm窗体开发 DropDownList(源码)C#编程 WinForm窗体开发 DropDownList(源码)C#编程 WinForm窗体开发 DropDownList(源码)C#编程 WinForm窗体开发 DropDownList...

    dropdownlist三级联动数据库

    总结起来,这个案例展示了如何利用ASP.NET、C#和数据库技术实现dropdownlist的三级联动,通过事件响应和数据绑定技术动态更新下拉列表,同时体现了面向对象编程和数据库操作的最佳实践。在实际开发中,这样的设计...

    重写 DropDownList 添加optgroup

    ### 重写 DropDownList 添加 optgroup 及样式设置 在 Web 开发中,`DropDownList` 控件是非常常用的一个选择控件,它可以帮助用户快速地从一个下拉列表中选择一个选项。然而,默认情况下,`.NET` 的 `DropDownList`...

    jquery异步绑定dropdownlist

    每个对象代表一个下拉列表项,`value`字段是选项的值,`text`字段是显示的文本。 在实际项目中,`WebApplication7`可能是一个包含此功能的ASP.NET Web应用程序项目。在ASP.NET中,`DropDownList`是一个服务器控件,...

    DropdownList绑定数据的方法

    然后,创建一个SqlConnection对象,设置SQL查询语句,使用SqlDataAdapter填充DataSet: ```csharp SqlConnection Conn = new SqlConnection(ConnString); string strSQL = "select * from T_User"; SqlDataAdapter ...

    .net DropDownList 树型显示

    - `DropDown`:需要绑定数据的DropdownList控件对象。 - `dt`:包含数据的DataTable对象。 - `DataTextField`:用于显示的列名。 - `DataValueField`:用于存储值的列名。 - `FuID`:表示父节点ID的列名。 - `...

    DropDownList 3级联动

    总之,DropDownList 3级联动是前端开发中一个实用的功能,通过合理的编程技巧和前端框架的运用,可以实现高效、易用的交互设计。理解其工作原理并掌握实现方法,对于提升Web应用的用户体验至关重要。

    asp.net 可输入DropDownList

    ASP.NET中的可输入DropDownList是一种常见的用户界面控件,它结合了传统下拉列表的便捷性和文本输入框的灵活性。这种控件允许用户既可以从中选择已有选项,也可以手动输入新的值,大大提升了用户体验。在本代码示例...

Global site tag (gtag.js) - Google Analytics