添加页面

<table style="width:550px; height:194px; text-align:left; border:1px solid #ff0000;">
            <tr>
                <td style="width:100px; height:26px;"></td>
                <td style="width:450px; height:26px;"> <strong>添加新闻</strong></td>
            </tr>
            <tr>
                <td>流水号</td>
                <td>
                    <asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td style="width:100px; height:26px">新闻标题</td>
                <td style="width:450px; height:26px;">
                    <asp:TextBox ID="TextBox1" runat="server" Width="209px"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td style="width:450px;height:31px;">类别</td>
                <td style="width:450px;height:31px;">
                    <asp:DropDownList ID="DropDownList1" runat="server" Width="120px"></asp:DropDownList>
                </td>
            </tr>
            <tr>
                <td style="width:100px;height:182px;">内容</td>
                <td style="width:450px;height:182px">
                    <asp:TextBox ID="TextBox2" runat="server" Height="150px" TextMode="MultiLine" Width="300px"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td style="width:100px;height:20px"></td>
                <td style="width:450px;height:20px">
                    <asp:Button ID="Button1" runat="server" Text="发布"  OnClick="Button1_Click" />
                </td>
            </tr>

        </table>

public partial class addnews : System.Web.UI.Page
{ BaseClass ba = new BaseClass();//创建对象
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {//从新闻读取信息并绑定到DropDownList控件中选出其中的一项“新闻类别”
            DataTable dt = new DataTable();
            string strsql = "select * from 新闻类别表";
            dt = ba.readtable(strsql);
            DropDownList1.DataSource = dt;
            DropDownList1.DataTextField = "新闻类别";
            DropDownList1.DataValueField = "新闻类别";
            DropDownList1.DataBind();
        }
    }
    protected void Button1_Click(object sender, EventArgs e)
    {//执行的增加操作并清空各个text
        string strsql="insert into 新闻信息表(流水号,新闻标题,新闻内容,新闻类别,添加时间,阅读次数) 
            values ('"+TextBox3.Text+"','"+TextBox1.Text+ "','" + TextBox2.Text + "',
                '"+DropDownList1.SelectedValue+"','"+System.DateTime.Now.ToString()+"','"+0+"')";
        ba.execsql(strsql);
        Response.Write("发布成功");
        TextBox1.Text = "";
        TextBox2.Text = "";
        TextBox3.Text = "";
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值