Click to See Complete Forum and Search --> : Web Based Application


rohit_aries
March 6th, 2008, 12:57 PM
I am planning to build a web based application which will be accessed by 150 people at one time. The application will have approximately 500 inserts/updates and 2000-3000 queries to the database everyday.
Can anybody please suggest what technology will be useful?
If I use Asp, vbscript for server side scripting and Javascript for client side scripting with the database in SQL server, will I face any Performance issue?
If so please suggest any resolutions to it?

All responses are highly appreciated and Thanks in advance!

PeejAvery
March 6th, 2008, 02:57 PM
ASP will work fine. Performance will be based off of the organization/cleanness of your code and the database itself. Your numbers are very small in relation to a real database application. 3000 queries a day is VERY small. You have nothing to worry about.

Shuja Ali
March 6th, 2008, 03:50 PM
If by ASP, you mean ASP.NET then you are on the right path. ASP.NET is easy to handle and you can build web-sites pretty quickly. Just make sure that you put all the database code in the SQL Server. Don't write in-line SQL Queries in your ASP Code. Use Stored procedure as much as possible. This will guarantee good performance and more secure application. :)