Hi all,
I have a column in a table that contains four hashtags '####' data type char(4).
In the aspx page I have the following connection strings and a link button control.
<tr> <td> <asp:LinkButton ID="btnSubmit" runat="server" onclick="btnSubmit_Click" ToolTip="Notify User">Notify</asp:LinkButton> </td> </tr> </table> <asp:SqlDataSource ID="SQLConnection1" runat="server" ConnectionString="<%$ ConnectionStrings:DT_InterfaceConnectionString %>" SelectCommand="SELECT Id, Name, Code FROM Hashtags" UpdateCommand="UPDATE Hashtags SET Code = @Code WHERE (Id = @Id)"> <UpdateParameters> <asp:Parameter Name="Code" Type="String" /> <asp:Parameter Name="Id ...

Go to the complete details ...