Hello everybody,
I am developing an e-commerce site in ASP.Net and C#. I am confused should I make data entry forms in C# or in ASP.Net? Can anyone guide me what to do?
Hello everybody,
I am developing an e-commerce site in ASP.Net and C#. I am confused should I make data entry forms in C# or in ASP.Net? Can anyone guide me what to do?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Maha FatimaPosted May 14, 2008, 1:09 AM
Dipal ChoksiPosted May 13, 2008, 8:30 PM
Hi,
For the data to be entered by the administrator, I would suggest setting up an ASP.Net web form(s). You can setup the security for the Administrator web form(s) so that only the Administrator(s) have rights to view and access this area.
For the data that will be logged automatically, it will be done on the ASP.Net page, in the server side code for the login page..
I would stay away from offline data entry due to reasons such as having to synchronize to the back-end, potential multi-user conflicts, local setup etc.
ArshadPosted May 13, 2008, 4:38 PM
With Regards
Khan
Maha FatimaPosted May 13, 2008, 2:49 AM
Thanks for the reply now few more questions...
Data will be entered by the administrator as well as some of the data will be automated like when the user enters its credentials then that information will be transfered to the database. can we make forms in C# for entering the data and can we keep that forms offline (means not to host these forms with the rest of the site).
One more question if we keep those forms offline then how to update our database later on???.... :)
Dipal ChoksiPosted May 13, 2008, 12:25 AM
If you are planning to have end-users enter data, it might be helpful to provide data entry through the web interface using asp.net.
If you are planning to have automated data entry such as web services it would make more sense to use a code oriented data entry.