BloodDonors Find Blood Donors on Bing MAPS - ASP.NET MVC4
The purpose of this project is to help people locate a blood donor of a particular blood group in their area.
homeissuesdiscussions Locate Blood Donors using Online Maps The objective is to Help people who need to find a particular blood group donor, the users will be able to locate a nearest donors using Ipad or Android devices .
The invitation is open for ASP.net developers. The project will be in ASP.NET MVC4.
To set up the database for the Online Blood Donation Bank Management System, follow these steps:
- Open SQL Server Management Studio (SSMS) or any other SQL client tool.
- Connect to your SQL Server instance.
- Open the
DatabaseSchema.sql
script file located in theOnline Blood Donation management System/Database/
directory. - Execute the script to create the database schema, including tables, primary keys, and foreign keys.
After creating the database, update the connection string in the Web.Config
file to connect to the newly created database. Follow these steps:
- Open the
Web.Config
file located in the root directory of the project. - Locate the
<connectionStrings>
section. - Update the
connectionString
attribute of theBloodDonationDB
connection string with the appropriate server name, database name, user ID, and password.
Example:
<connectionStrings>
<add name="BloodDonationDB" connectionString="Server=your_server_name;Database=BloodDonationDB;User Id=your_user_id;Password=your_password;" providerName="System.Data.SqlClient" />
</connectionStrings>