Link to home
Start Free TrialLog in
Avatar of Codeaddict7423
Codeaddict7423Flag for United States of America

asked on

asp.net c# insert data into databse table

Hello,

I have an application where I'm attempting to add data to a database table and I'm having difficulties with my code. Spefically, I have a page with a gridview control populated from a database table.

My *.aspx code follows:
-----------------
<asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0">
                                <asp:View ID="View_Bureau" runat="server">
                                    <table class="style1" width="500" cellpadding="0" cellspacing="0" border="0">
                                        <tr>
                                            <td>
                                                &nbsp;
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <table class="modalpnl">
                                                    <tr>
                                                        <td> &nbsp;
                                                         </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            <asp:GridView ID="grdBureau" runat="server" BackColor="LightGoldenrodYellow" BorderColor="Tan"  AllowSorting="True" ForeColor="Black" AutoGenerateColumns="False" CellPadding="2" DataKeyNames="BureauID" DataSourceID="SqlDataSource1" EmptyDataText="There are no data records to display." Font-Names="Arial" Font-Size="Small" GridLines="None" BorderWidth="1px">
                                                                <Columns>
                                                                    <asp:CommandField ShowEditButton="True" />
                                                                    <asp:BoundField DataField="Bureau" HeaderText="Bureau" SortExpression="Bureau" />
                                                                    <asp:BoundField DataField="Activate" HeaderText="Activate" SortExpression="Activate" />
                                                                    <asp:BoundField DataField="EnterBy" HeaderText="EnterBy" SortExpression="EnterBy" />
                                                                    <asp:BoundField DataField="EnterDate" HeaderText="EnterDate" SortExpression="EnterDate" />
                                                                </Columns>
                                                                <FooterStyle BackColor="Tan" />
                                                                <PagerStyle BackColor="PaleGoldenrod" ForeColor="DarkSlateBlue" HorizontalAlign="Center" />
                                                                <SelectedRowStyle BackColor="DarkSlateBlue" ForeColor="GhostWhite" />
                                                                <HeaderStyle BackColor="Tan" Font-Bold="True" />
                                                                <AlternatingRowStyle BackColor="PaleGoldenrod" />
                                                            </asp:GridView>
                                                            <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:BadgeCodeTablesConnectionString1 %>"
                                                                DeleteCommand="DELETE FROM [Bureau] WHERE [BureauID] = @BureauID" InsertCommand="INSERT INTO [Bureau] ([BureauID], [Bureau], [Activate], [EnterBy], [EnterDate]) VALUES (@BureauID, @Bureau, @Activate, @EnterBy, @EnterDate)"
                                                                ProviderName="<%$ ConnectionStrings:BadgeCodeTablesConnectionString1.ProviderName %>"
                                                                SelectCommand="SELECT [BureauID], [Bureau], [Activate], [EnterBy], [EnterDate] FROM [Bureau]"
                                                                UpdateCommand="UPDATE [Bureau] SET [Bureau] = @Bureau, [Activate] = @Activate, [EnterBy] = @EnterBy, [EnterDate] = @EnterDate WHERE [BureauID] = @BureauID">
                                                                <DeleteParameters>
                                                                    <asp:Parameter Name="BureauID" Type="Int32" />
                                                                </DeleteParameters>
                                                                <InsertParameters>
                                                                    <asp:Parameter Name="BureauID" Type="Int32" />
                                                                    <asp:Parameter Name="Bureau" Type="String" />
                                                                    <asp:Parameter Name="Activate" Type="String" />
                                                                    <asp:Parameter Name="EnterBy" Type="String" />
                                                                    <asp:Parameter Name="EnterDate" Type="DateTime" />
                                                                </InsertParameters>
                                                                <UpdateParameters>
                                                                    <asp:Parameter Name="Bureau" Type="String" />
                                                                    <asp:Parameter Name="Activate" Type="String" />
                                                                    <asp:Parameter Name="EnterBy" Type="String" />
                                                                    <asp:Parameter Name="EnterDate" Type="DateTime" />
                                                                    <asp:Parameter Name="BureauID" Type="Int32" />
                                                                </UpdateParameters>
                                                            </asp:SqlDataSource>

--------------

My codebehind follows:
--------------
 protected void btnsavebureau_Click(object sender, EventArgs e)
        {
                        con = new SqlConnection(ConfigurationManager.ConnectionStrings["BadgeCodeTablesConnectionString"].ConnectionString);


            SqlCommand cmd = con.CreateCommand();
            cmd.CommandType = CommandType.Text;
            con.Open();

            cmd.CommandText = @"INSERT INTO [[BadgeCodeTables] ([Bureau], [Activate],[enterby], [enterdate]) VALUES (@bureauname,'True',@username, getdate))";

           

            cmd.Parameters.AddWithValue("@bureauname", txtAddBureauname.Text);
            cmd.Parameters.AddWithValue("@Activate", 1);
            cmd.Parameters.AddWithValue("@username", 1);
            cmd.Parameters.AddWithValue("@getdate", 1);

            cmd.ExecuteNonQuery();
            con.Close();

            txtAddBureauname.Text = " ";
                 
            con.Dispose();

            Response.Redirect("Administration.aspx");



        }

        private string Username()
        {
            string username = HttpContext.Current.User.Identity.Name.ToString();
            return username;
        }
-------------

I would like help with my codebehind so that I can add new items to this table (dbo.bureau) and refresh the page so the user can see the new data upon page reload.

ANY help would be greatly appreciated.


Avatar of Bob Learned
Bob Learned
Flag of United States of America image

I see that you have a CommandField, with an Edit button.

<asp:CommandField ShowEditButton="True" />

Are you having a problem with btnsavebureau_Click?  What does that do differently from the CommandField?
Avatar of Codeaddict7423

ASKER

TheLearnedOne:

Thank you for your reply.  Indeed, I'm having a problem with the btnsavebureau_Click in that it does not seem to save.

Any code block that you could provide to add to this database table would be appreciated.  
The screen only needs the name of the bureau (bureauname), I'd insert the values: 'True',@username, getdate.

ASKER CERTIFIED SOLUTION
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial