Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Data.SqlClient; public partial class Data : System.Web.UI.Page { SqlConnection con; SqlDataAdapter sda; DataSet ds; protected void Page_Load(object sender, EventArgs e) { con = new SqlConnection(); con.ConnectionString = "Data Source=.;Database=Train;User …
The End.
skc23