I recently took over a project where the original developer quickly created a web page with some display input capabilities. this is a ASP.NET using VB site.
I have no reason to convert this to C# since they both compile the same code.
He/She had a screen that served as a registration section of the site. I'm not sure how high traffic this site will be so I wanted to get some other opinions as to how to approach this.
The back end is a SQL Server database and it's connected to the page through a SQL Data Source (SDS) that is used as a data source to a DetailsView control.
The DetailsView control is broken down into Template Fields that have labels and textboxes. Nice. I'd have done that too.
Simple and quick. It works great all the time.
But after thinking about it and what I have learned by reading other articles and posting here, the SDS may not be the best solution for my client's website.
Do I want to get rid of the SDS and write a data class on the back end to handle the get and put to the database? Is it worth the effort?
As the users of the app get more and more, I don't want any problems with the site.
Thanks for all the help.
I have no reason to convert this to C# since they both compile the same code.
He/She had a screen that served as a registration section of the site. I'm not sure how high traffic this site will be so I wanted to get some other opinions as to how to approach this.
The back end is a SQL Server database and it's connected to the page through a SQL Data Source (SDS) that is used as a data source to a DetailsView control.
The DetailsView control is broken down into Template Fields that have labels and textboxes. Nice. I'd have done that too.
Simple and quick. It works great all the time.
But after thinking about it and what I have learned by reading other articles and posting here, the SDS may not be the best solution for my client's website.
Do I want to get rid of the SDS and write a data class on the back end to handle the get and put to the database? Is it worth the effort?
As the users of the app get more and more, I don't want any problems with the site.
Thanks for all the help.