I am very new to this. I have a MS access database (.mdb having only two columns) and i have linked it using a gridview. It displays whatever is there in the database on the webpage. I also have an post button for a text box (like the one in facebook that posts status). The gridview only displays the text entered and takes auto time. The problem is, i cannot seem to write the code that will update the database on click. I have added a connection in web.config file. The namespace is declared,
In the .aspx file, i have taken the sql datasource using
<asp:SqlDataSource ID="Test" runat="server"
ConnectionString="<%$ ConnectionStrings:DB1 %>"
ProviderName="<%$ ConnectionStrings:DB1.ProviderName %>"
SelectCommand="SELECT [Message], [Date] FROM [DB1] order by id desc">
</asp:SqlDataSource>
The code behind looks like this -
protected void btnpost_Click(object sender, EventArgs e)
{
this.******** = "INSERT INTO DB1 (message) + values ('" + txtpost.text + "')";
gridview.databind();
txtpost.Text="";
}
Can anybody tell me what goes in the '********' that does the job?
The missing part is: