i have a application that accept information from a user and then on the submit store it to the sql 2005 database. Right now with code that i'm using i'm not getting any errors. it;s like the page just refresh and then when i check the database nothing is stored in there. any help would be appreciated thanks.
<script runat="server">
Protected Sub SubmitBtn_click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Submitbtn.Click
Dim dashDataSource As New SqlDataSource()
dashDataSource.ConnectionString = ConfigurationManager.ConnectionStrings("meridianapplyConnectionString1").ToString()
d ...
Go to the complete details ...