In a vb.net 2010 web form application, I need to add a button to the application so the user can save changes without updating the database. The user wants to be able to finish the enteries to the database at a later time.
The application currently uses javascript or Jason to accomplish this task. My problem is that I do not know those languages very well to accomplish the same task. Thus I am thinking if I could use just straight SQL to connect to the database and I could
use vb.net 2010 to complete the other functions that are needed. Thus could you tell me and/or point me tourl(s) that will tell me how to accomplish this goal?
Member
286 Points
582 Posts
web form 2010
Mar 10, 2016 05:49 PM|wendy elizabeth|LINK
In a vb.net 2010 web form application, I need to add a button to the application so the user can save changes without updating the database. The user wants to be able to finish the enteries to the database at a later time.
The application currently uses javascript or Jason to accomplish this task. My problem is that I do not know those languages very well to accomplish the same task. Thus I am thinking if I could use just straight SQL to connect to the database and I could use vb.net 2010 to complete the other functions that are needed. Thus could you tell me and/or point me tourl(s) that will tell me how to accomplish this goal?
All-Star
17652 Points
3510 Posts
Re: web form 2010
Mar 11, 2016 07:35 AM|Chris Zhao|LINK
Hi wendy,
You could refer to the following to connect to the database.
#SQL Server Connection Strings for ASP.NET Web Applications
https://msdn.microsoft.com/en-us/library/jj653752%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
This topic provides examples of SQL Server connection strings for typical ASP.NET web application scenarios.
Best Regards,
Chris Zhao