Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #107.78K
1 Posted Topic
try using sqlAdapter rathe than sqlcommand For Example follow below code and it's updating the data in database. SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["projectdashboardConnectionString"].ConnectionString); con.Open(); string update = " UPDATE [Project] SET [Project_Name] = @Project_Name ,[Project_StartDate] = @Project_StartDate ,[Project_ExpectedEndDate] = @Project_ExpectedEndDate ,[Project_ActualEndDate] = @Project_ActualEndDate ,[Project_UpdateDate] = @Project_UpdateDate ,[Project_ClosureDate] = @Project_ClosureDate ,[Project_Requirement] …
The End.
vishal_30