I am using a SQL database. The above solution does not work. I can retrieve data as follows:
=============== start code =======================
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns="
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BrowseProfiles</title>
</head>
<body>
<form id="form1" runat="server">
<asp:GridView runat="server" id="GridView1" AutoGenerateColumns="False" DataSourceID="SqlDataSource1">
<Columns>
<asp:boundfield DataField="email" SortExpression="email" HeaderText="email">
</asp:boundfield>
<asp:boundfield DataField="City" SortExpression="City" HeaderText="City">
</asp:boundfield>
<asp:boundfield DataField="usState" SortExpression="usState" HeaderText="usState">
</asp:boundfield>
<asp:boundfield DataField="Country" SortExpression="Country" HeaderText="Country">
</asp:boundfield>
<asp:boundfield DataField="phone" SortExpression="phone" HeaderText="phone">
</asp:boundfield>
<asp:boundfield DataField="languages" SortExpression="languages" HeaderText="languages">
</asp:boundfield>
<asp:boundfield DataField="nickname" SortExpression="nickname" HeaderText="nickname">
</asp:boundfield>
<asp:boundfield DataField="age" SortExpression="age" HeaderText="age">
</asp:boundfield>
<asp:boundfield DataField="sex" SortExpression="sex" HeaderText="sex">
</asp:boundfield>
<asp:boundfield DataField="heightfeet" SortExpression="heightfeet" HeaderText="heightfeet">
</asp:boundfield>
<asp:boundfield DataField="heightinches" SortExpression="heightinches" HeaderText="heightinches">
</asp:boundfield>
<asp:boundfield DataField="weight" SortExpression="weight" HeaderText="weight">
</asp:boundfield>
<asp:boundfield DataField="eyecolor" SortExpression="eyecolor" HeaderText="eyecolor">
</asp:boundfield>
<asp:boundfield DataField="haircolor" SortExpression="haircolor" HeaderText="haircolor">
</asp:boundfield>
<asp:boundfield DataField="interests" SortExpression="interests" HeaderText="interests">
</asp:boundfield>
<asp:boundfield DataField="status" SortExpression="status" HeaderText="status">
</asp:boundfield>
<asp:boundfield DataField="address" SortExpression="address" HeaderText="address">
</asp:boundfield>
<asp:boundfield DataField="AdditionalInformation" SortExpression="AdditionalInformation" HeaderText="AdditionalInformation">
</asp:boundfield>
</Columns>
</asp:GridView>
</asp:SqlDataSource>
</form>
</body>
</html>
=============== STOP code =======================
I cannot seem to process an INSERT statement. I have searched online for an example with no luck.