Вы находитесь на странице: 1из 31

ONLINE VOTING SYSTEM A ASP.

NET
PROJECT(.NET)-2012(FINAL PROJECTS
2030)
Introduction:

The project Online voting system a ASP.Net Project aims at creating a system through
which the voting process is made easier in cooperative societies. In the current system, voting is
performed by using ballot paper and then the counting is executed manually. This is a time
consuming process and involves manual effort. It might also lead to the possibility of invalid votes.
All the above tedious tasks are eliminated in the above process. In the system discussed here, the
counting of votes is done by using a computer. This saves time and also avoids the errors that might
occur during the election process. The system is designed with the coding language ASP.Net with
C# and the database is SQL Server 2005.

ASP.Net online Voting Project description:


The project Online Voting system is designed to count the number of votes and thereby calculate
the percentage of votes. Also the number of vote a candidate obtains is also obtained. Along with the
number the percentage of votes for each candidate is calculated. The system is so designed that it
can also check for duplication. It then decides the winner in every section.

The project is designed with a modular approach and the number of modules is decided as per
the requirements of the organization. The two modules are administrator module and the user
module. The administrator has total authority of the organization and maintains all the aspects. The
user has the provision to view the list of all candidates and results as well as vote for the desired
candidates.
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Windows.Forms;
public partial class JobSeeker_Viewalljobs : System.Web.UI.Page
{
SqlConnection con;
SqlDataAdapter da;
DataSet ds;
protected void Page_Load(object sender, EventArgs e)
{
con = new SqlConnection(ConfigurationManager.ConnectionStrings[crms].ConnectionString);
da = new SqlDataAdapter(select * from Job_Details, con);
con.Open();
ds = new DataSet();
da.Fill(ds, Jobs);
GridView1.DataSource = ds.Tables[0];
GridView1.DataBind();
}
}
Conclusion:
Once the system is designed the software is tested in order to see the validity of the system is
established. This is the method by which functionality of components is checked. After the system is
tested then a trial run of the system is done so that errors if any can be eliminated.
Click Here To Download Project Report of CSE IEEE Online voting system a ASP.Net Project.

ONLINE TICKET BOOKING SYSTEM FOR


PVR CINEMAS(.NET)-2012(FINAL
PROJECTS 2030)
Introduction:

The main objective of this project Online ticket booking system for PVR cinemas is to book
tickets online. It provides an alternate and convenient method for a customer to purchase tickets.
The system is automatic in nature. Once the data is fed into the database, the staff need not do
anything and the entire order is processed by the system. This project also offers the option of
refund to the customers.
This system allows the customers to book tickets from anywhere. The number of staff members is
also minimized at the ticket box. The film could also be promoted on the internet. This could bring in
more profit for the theatres. The statistical records about the booking process are also provided.

Description:

The project Online ticket booking system for PVR cinemas is a web based system which
allows the customers to purchase tickets online and also allows the cancellation of a ticket at an
appropriate time i.e. decide by the theatre. To enhance the refund system, the customers have to be
a valid member of the site and complete the registration process. The staff can add and delete data
to make the system dynamic and interesting for viewers.

The web page is generated by an automatic process based on the data in the database. There
are provisions in the site for a user to become a registered member. Through a simple operation the
customer can select the seat and make the payment. He can also cancel the booking through a
simple mechanism.

Conclusion:

The project is a real time based management system. This can be practically implemented. The
mode of payment can be modernized and various enhancements could be done to this process. The
customer has the choice of choosing the seat he is comfortable with. Also the pricing could be made
dynamic in order to enhance the system.

Click Here To Download Project Report of CSE IEEE Online text tile on ICON tile project.

SAIKOSOUND A ONLINE WEBSITE


PROJECT USING .NET(.NET)-2012(FINAL
PROJECTS 2030)
Computer science final year students who are looking for developing online shopping website using
.Net as software tool then SAIKOSOUND a Online website project using .Net can be helpful. This
projects main idea is to introduce E-shopping facility for a well known Saikosound shopping spot
located at Hong Kong. This project will provide online services for users who are looking to shop
through online by providing security features in a most efficient way. This application mainly
concentrates on consistency, integrity and privacy for every user who what to perform transactions
through this website.

As the website is designed with high standards with features like selection of the product, User
login, online order request, Catalog view and customer support. Initially user must log in to the
website and use the above mentioned features for selecting products available in the catalog. Based
on the selected product price is calculated and then user can pay amount using different online
methods like PayPal, credit card..Etc.
Saikosound a Online website project using .Net application is developed in the way that it can be
easily modified for future improvements, if required, integrating and implementing will be very easy.
This project will definitely reduce man power and increase sales without any risk for user.
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;
using System.Data.SqlClient;

public partial class canreq : System.Web.UI.Page


{
protected void Page_Load(object sender, EventArgs e)
{

String constring = ConfigurationManager.ConnectionStrings[conn].ConnectionString.ToString();


protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(constring);
SqlCommand cmd = new SqlCommand();
cmd.CommandType = CommandType.Text;
cmd.Connection = con;
con.Open();
cmd.CommandText = select category,flightid from Plist where pid=' + TextBox1.Text + ;
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand=cmd;
DataSet ds=new DataSet();
da.Fill(ds,emp);
if (ds.Tables[emp].Rows.Count > 0)
{
Session[category] = ds.Tables[emp].Rows[0][category].ToString();
Session[flightid] = ds.Tables[emp].Rows[0][flightid].ToString();

if (Session[category].ToString() == Firstclass)
{
cmd.CommandText = update schedule set Firstclass=Firstclass+1 where flightid=' +
Session[flightid] + ;
int j = cmd.ExecuteNonQuery();
}
else if (Session[category].ToString() == Bussinessclass)
{
cmd.CommandText = update schedule set Bussinessclass=Bussinessclass+1 where flightid=' +
Session[flightid] + ;
int j = cmd.ExecuteNonQuery();

}
else
{
cmd.CommandText = update schedule set Economicclass=Economicclass+1 where flightid=' +
Session[flightid] + ;
int j = cmd.ExecuteNonQuery();
}
cmd.CommandText = delete Plist where pid=' + TextBox1.Text + ;
int i = cmd.ExecuteNonQuery();

if (i > 0)
{
Label.Visible = true;
Label.Text = sucess;

else
{
Label.Visible = true;
Label.Text = error;

}
}
else
{
Label.Visible = true;
Label.Text = Invalid ticket id;
}

con.Close();
}
}

Saikosound .Net project. System Specifications


HARDWARE SPECIFICATION Development Server

Server Class PC with PIV or Xeon>2.00GHz


RAM: 1024 MB
Hard disk drive: 2*40 GB
100 MBPS Network Interface Card
Client

PC with PIV 1.8GHz RAM: 128MB


Hard Disk Drive: 40 GB
Implementation Server
Minimum xeon 256 MB RAM
Hard disk drive 80 G B
Client

Minimum P II Minimum 64 M B RAM

SOFTWARE REQUIRMENTS

Development Server IIS web server IE 5.0


ASP. NET 1.1
SQL Server 2000 Windows XP Client
IE 5.0
Windows2000
Implementation

Server
IIS Web Server
Windows 2000/2003 SQL Server 2000
Client
Windows based client IE 5.0
For more information on this project you can download SAIKOSOUND a Online website .Net project
for free from this site.

Click Here To Download CSE IEEE Saikosound a Online website project using .Net .

LIST OF FINAL YEAR PROJECT IN


C#.NET(FINAL PROJECTS 2030)
Here you can download complete project listing with source code, project report, database structure
of live project. If you are a final year college student of Diploma Engineering, BSC-IT, BE, BCA,
MCA, MS, MBA from Indira Gandhi National Open University IGNOU (Distance Education,
Learning), Sikkim Manipal University SMU of India and International Universities and looking for
complete software project source code, abstract, synopsis and documentation, here you can
download readymade project for submission. You can also download this source code as mini, major
project for submit as a final semester project.
Download IGNOU, SMU Sample, Template, Last Year, Previous Year, Final Year / Semester project
files for MCA (Master of Computer Application), BCA (Bachelor of Computer Application), BSc.
(Bachelor of Science), BE (Bachelor of Engineer), BTech (Bachelor of Technologies), BSC-CS
(Bachelor of Computer Science), BSC-IT (Bachelor of Science in Information Technology), DIT
(Diploma In Information Technology), BCom IS (Bachelor of Commerce in Information System),
PGDCA (Post Graduate Diploma in Computer Application), MSc. CS (Master of Science in Computer
Science), MCom IS (Master of Commerce in Information System), MBA IT ( Master of Business
Administration Information Technology), BIT, ADIT, ME, MTech, MBA IT/System, Diploma,
Polytechnic Engineering , Computer Science college student of Indian university.
Click here to get more than 500 unique academic project idea in different programming languages.
Download this project concept, abstract, SRS, source code to complete project for IGNOU, SMU,
DOEACC University and college submission.
Project # 1 eBilling and Invoice System

Computerization of Billing and Invoice system, Download project documentation, project source
code, project executable files.
Type : Desktop / Client Server
Technology : Visual Basic, MS ACCESS
Credit : Mr. Atanu Maity
Project # 2 IMPRO (Industrial Manpower Resource Organizer)

This project is developed for Industrial Manpower Resource Organizer for managing Employees,
branches, planning, controlling and executing HR policies, HR Automation software and Reports.

Type : Desktop / Client Server


Technology : VB.NET, SQL Server
Credit : Mr. Joydeep Dass
Project # 3 Online Registration (Online Student Registration System)

Online Registration System is an web based application for on line submission of


application forms, On-line Quizzes for the first semester courses, online results will display
after completing the test. Inbuilt login security system for Authentication.
Type : Web Application
Technology : ASP (Active Server Page), Java Script, MS Access
Credit : AJProfessionals
Project # 4 WCPS (Web Based Claims Processing System)

Web Based Claims Processing System (WCPS) which is web based so that the employee can
fill the form online and submit it so that the form is sent to Claim Processing Department
(CPD) through Internet. At CPD, the form needs to be checked automatically by a program
which will compute the amount that needs to be reimbursed to the employee for the
treatment undertaken.
Type : Web Application
Technology : ASP.Net, C#, SQL Server
Credit : AJProfessionals
Project # 5 eProperty (Estate Agent / Property Management System)

eProperty is an Estate Agent and Property Management System is a user friendly contact
and property manager for real estate professionals. Save time and sell more by
empowering to easily keep track of leads, manage listings, and market to new prospects.
Type : Desktop / Client Server
Technology : VB6, SQL Server, Crystal Report
Credit : Readymadeproject
Project # 6 Steganography (Technique to hide information within image file)

Steganography is the art of hiding the fact that communication is taking place, by hiding
information in other information. This project is developed for hiding information in any
image file. The scope of the project is implementation of steganography tools for hiding
information includes any type of information file and image files and the path where the
user wants to save Image and extruded file.
Type : Desktop / Client Server
Technology : C#, .Net Framework 3.5

Credit: Mr. Atanu Maity


Project 1 : eBilling, Accounting and Invoice System

eBilling and Invoice System is a live project written in Visual Basic 6 programming language. It is a
working solution. I give you complete project listing with all project file, source code, database,
crystal reports. You can use this project as you want. I am not claim any copyright for this project.
You can free download all the project documentation, project source code, project executable files,
database from download link and submit as SMU, IGNOU project. Code are well commented for your
reference, however if you want any clarification you can contact me for further explanation.
Who can use this project ?
1. Commercial visual basic application developer can use this project as a whole or part of it as
required.
2. Student who are submitting their final year project for BE, BCA, BSC-IT, MCA, MS, SMU, IGNOU
this project is well commented, ready made project documentation available for submission.
3. Who want to learn database programming in visual basic.
4. Who want to know how to develop commercial application from project requirement to
implementation and final documentation.
5. To learn Billing, Invoicing and Accounting project development and Win API Programming in
visual basic.
6. How to create report in Crystal Report and integrate with visual basic application.
Project Description
This project is made for one of the big decorator services in Mumbai, they supply decorating item to
film industry for movie shooting. Presently they issue their client handwritten invoice and they enter
details in manual register. And maintain MS Excel file for product rate. They want computerization
of their manual invoice and bill generation process.
Some important coding features you can get from this project.
1. How to convert MSFlexGrid as editable text box and drop down list box.
2. How to format MS-Excel worksheet with border color, back ground color, text color and change
column width in visual basic.
3. Convert Rupees to amount in word like 123.50 will convert into Rupees one hundred twenty
three and fifty paise only
4. How to connect and show crystal report from visual basic application.
Click here to Download the project documentation, source code, database and report files for
eBilling Invoicing and Accounting System.
For any query and help regarding this project visit
http://www.programmer2programmer.net/forums/forum_main.aspx?forum_id=6
Click here to view the online demo of the eBilling application.

Please send me your college project report format and project guide line at my email id , so that I
can prepare and list projects and project report as per your college/university standard.

All projects listed here can be used for bellow mentioned Indian university. Find the list of
Universities.

Alagappa University, Alagappa Nagar,Karaikud 623 003, Tamil Nadu.


Aligarh Muslim University, Aligarh 202 002, Uttar Pradesh.
Amity University, Amity Campus, Sector 44, Noida 201303
Amravati University, Amravati 444602. Bihar.
Andhra University, Waltair, Vishakhapatnam 530003. Andhra Pradesh.
Anna University, Sardar Patel Road, Guindy, Chennai 600025. Tamil Nadu.
Annamalai University, Annamalainagar 608002. Tamil Nadu.
Arunachal University, Rono Hills, Itanagar 791111, Arunachal Pradesh.
Assam University, PB No.63, Meherpur, Silchar 788 015, Assam
Avinashilingam Institute for Home Science & Higher Education for Women, Coimbatore, Tamil
Nadu.
Awadhesh Pratap Singh University,Rewa 486 003, Madhya Pradesh.
B N Mandal University, Madhepura 852 113. Bihar
Babasaheb Bhimarao Ambedkar University, Gomtinagar, Lucknow 226016. Uttar Pradesh.
Babasaheb Bhimrao Ambedkar Bihar University, Muzafrpur 842001. Uttar Pradesh
Banaras Hindu University, Varanasi 221 005, Uttar Pradesh
Banashtali Vidyapeeth, Banasthali, Rajasthan 304 022.
Bangalore University, JnanaBharathi, Bangalore560056, Karnataka.
Barkatullah Vishwavidyalaya, Bhopal 462 006, Madhya Pradesh
Bengal Engineering College, Howrah 711103, West Bengal.
Berhampur University, Bhanja Bihar, District Ganjarn, Berhampur 760 007, Orissa.
Bharathiar University, Coimbatore 641 046, Tamil Nadu.
Bharathidasan University, Tiruchirappalli 620 024,TamilNadu.
Bharati Vidyapeeth, Lal Bahadur shastri Marg, Pune 411 030, Maharashtra.
Bhavnagar University, GouriShankar Lake Road, Bhavanagar 364 002. Gujarat.
Bidhan Chandra Krishi .P O Krishi Vishwavidyalaya, Haringhata, Dist Nadia 741 252, West Bengal.
Birla Institute of Technology and Science, Pilani 333 031, Rajasthan.
Birla Institute of Technology, Mesra, Ranchi 835 215. Bihar.
Central Institute of English and Foreign Languages, Hyderabad 500 007, Andhra Pradesh.
Central Institute of Higher Tibetan Studies, Sarnath, Varanasi 221007, Uttar Pradesh.
Choudhury Charan Singh University, Meerut 250 005, Uttar Pradesh.
Cochin University of Science & Technology, Kochi 682 022, Kerala.
Dakshina Bharat Hindi Prachar Sabha, PB No.1419, Thyagarayanagar,Madras 600 017, Tamil
Nadu.
Dayalbagh Educational Institute, Dayalbagh, Agra 282 005, Uttar Pradesh.
Deccan College Post Graduate and Research Institute, Pune 411 006, Maharashtra.

Devi Ahilya Vishwavidyalaya,R N Tagore Marg, Indore, Madhya Pradesh.


Dibrugarh University, Dibrugarh 786004, Assam.
Dr B R Ambedkar Open University, Hyderabad 500 033, Andhra Pradesh.
Dr B.R.Ambedkar Open University, Ahmedabad 380 014, Gujarat.
Dr Babasaheb Ambedkar Marathwada University, Aurangabad, Maharashtra.
Dr Babasaheb Ambedkar Technological University P. O. Goregaon, Lonere 402 103, Maharashtra.
Dr Harisingh Gour Vishwavidyalaya, Sagar 470 003, Madhya Pradesh.
Dr Panjabrao Deshmukh Krishi Vidyapeeth, Krishinagar, Akola 444104, Maharashtra.
Dr Ram Manohar Lohia University, izabad 224 001, Uttar Pradesh
Dr Y S Parmar University of Horticulture & Forestry, Nauni 173 230, Dist. Solan, Himachal
Pradesh,
Dr. Bhim Rao Ambedkar University, Agra 282 004. Uttar Pradesh.
Gandhigram Rural Institute, Gandhigram 624 302, Dindigul Anna District, Tamil Nadu.
Gauhati University, Gopinath Bardoloi Nagar, Guwahati 781 014, Assam
Goa University, Goa.
Gokhale Institute of Politics and Economics, Pune 411 004, Maharashtra.
Gujarat Ayurved University, Jamnagar 361 008, Gujarat
Gujarat University, Navrangpura, Ahmedabad 380009, Gujarat.
Gujarat Vidyapeeth, Ashram Road, Ahmedabad 380 014. Gujarat.
Gulbaraga University, Gulbarga 585 106, Karnataka.
Guru Ghasidas University Bilaspur 495 001, Madhya Pradesh
Guru Jambheshwar University, Hissar 125 001, Haryana.
Guru Nanak Dev University, Amritsar 143005, Punjab.
Gurukula Kangri Vishwavidyalaya, Hardwar 249 404, Uttar Pradesh.
Hemwati Nandan Bahuguna Garhwal University, Srinagar 246 174. Jammu & Kashmir
Himachal Pradesh Krishi Vishwavidyalaya, Palampur, Himachal Pradesh. .
Himachal Pradesh University Shimla 171 005, Himachal Pradesh
Indian Institute of Technology, Chennai (Madras) 600 036, Tamil Nadu
Indian Institute of Science, Bangalore 560 012, Karnataka.
Indian Institute of Technology, Institution of Engineers Building Pan Bazar, Guwahati, Assam.
Indian Institute of Technology, Hauz Khas, New Delhi 110 016. Delhi.
Indian Institute of Technology, Kanpur 208 016, Uttar Pradesh.
Indian Institute of Technology, Kharagpur 721 302, West Bengal.
Indian Institute of Technology, Powai, Mumbai 400 076. Maharashtra.
Indian School of Mines, Dhanbad 826 004, Bihar.
Indian Statistical Institute, 203, Barrackpore Trunk Road, Calcutta 700 035, West Bengal.
Indian Veterinary Research Institute, Izatnagar 243 122, Uttar Pradesh. .
Indira Gandhi Institute of Development Research Gen. A.K. Vaidya Marg, Mumbai, Maharashtra.
Indira Gandhi Krishi Vishwavidyalaya, Raipur 492012, Madhya Pradesh.
Indira Gandhi National Open University IGNOU, Maidan Garhi, NewDelhi 110 068.
Indira Kala Sangit Vishwavidyalaya, Khairagarh 491 881. Madhya Pradesh.
International Institute for Population Sciences, Govandi, Deonar, Mumbai. Maharashtra.
Jadavpur University, Calcutta 700 032, West Bengal.
Jai Narain Vyas University, Jodhpur 342 001, Rajasthan.
Jai Prakash Vishwavidyalaya, Chhapra 841 301, Bihar.

Jain Vishva Bharati Institute, P.O. Bo


Jamia Millia Islamia, Jarnia Nagar, New Delhi 110 062.
Jawaharlal Nehru Krishi Vishwavidyalaya, Krishi Nagar, Jabalpur 482 004. Madhya Pradesh.
Jawaharlal Nehru Technological University, Saibad, Hyderabad 500 028, Andhra Pradesh.
Jawaharlal Nehru University, New Mehrauli Road, New Delhi 110 067.
Jiwaji University, Gwalior 474 011. Madhya Pradesh
Kakatiya University, Warangal, Andhra Pradesh.
Kannada University, Hampi 583 211, Karnataka.
Karnatak University, Pavate Nagar, Dharwad 580 003, Karnataka.
Konkan Krishi Vidyapeeth, Dapoli 415712, District. Ratnagiri, Maharashtra.
Kota Open University, Rawatbhata road, Akhelgarh, Kota 324010, Rajasthan.
Kumaun University, Nainital 263 001. Uttar Pradesh.
Kurukshetra University, Kurukshetra 132 119, Haryana.
Kuvempu University, Gnanasahyadri, District. Shimoga, Karnataka
Lakshmibai National Institute of Physical Education, Shaktinagar, Gwalior 474 007, Madhya
Pradesh.
Lalit Narayan Mithila University, Darbhanga 846004, Bihar.
M S University of Baroda, Vadodara 390002, Gujarat.
Madhya Pradesh Bhoj University, Barkatullah University, Bhopal 462 026, Madhya Pradesh.
Madurai Kamaraj University, Madurai 625 021, Tamil Nadu.
Magadh University, Bodh Gaya 824 234, Bihar.
Maharishi Dayanand Saraswati University, Ajmer 305001, Rajasthan.
Maharshi Dayanand University, Rohtak l24001,Haryana.
Mahatma Gandhi Gramodya Vishwavidyalaya, Chitrakut 485 331 District.Satna, Madhya Pradesh ,
Mahatma Gandhi Kashi Vidyapeeth, Varanasi 221002, Uttar Pradesh.
Mahatma Gandhi University, Kottayam 686560, Kerala.
Mahatma Phule Krishi Vidyapeeth, Rahuri 413722, Maharashtra.
Makhanlal Chaturvedi National University, Bhopal 462 016, Madhya Pradesh.
Malabar University, Payyambalam, Kannur 678 710, Kerala.
Mangalore University, Mangalagangothri, Mangalore 574 199, Karnataka.
Manipal Academy of Higher Education Madhav Nagar, Manipal 576 119, Karnataka.
Manipur University, Canchipur, Imphal, Manipur.
Manonmaniam Sundaranar University, Tirunelvali 627 009, Tamil Nadu
Marathwada Krishi .Vidyapeeth, Parbhani 431 402, Maharashtra .
Mohanlal Sukhadia University, Udaipur 313 001, Rajasthan.
Mother Teresa Womens University, Kodaikanal 624102,TamilNadu.
Nagaland University, Lumami, Kohima 797001, Nagaland.
Nagarjuna University, Guntur 522 510, Andhra Pradesh.
Nagpur University, Rabindranath Tagore Marg, Nagpur 440 001, Maharashtra.
Nalanda Open University, Adarsh Colony Patna 800 001, Bihar.
National Dairy Research Institute, Karnal 132 001, Haryana.
National Law School of Indian University, Bangalore 560 072, Karnataka.
National Museum Institute of History of Art, Conservation and Museology, Janpath, New Delhi.
North Eastern Hill University,Shillong, Meghalaya.
North Gujarat University, Rajmahal Road, Patan 384 265, Gujarat.

North Maharashtra University, Jalgaon 425001, Maharashtra.


Osmania University, Hyderabad 500007.Andhra Pradesh
Pandit Ravishankar Shokla University, Raipur 492010. Madhya Pradesh.
Punjab University, Chandigarh 160014, Punjab.
Patna University, Patna 800005, Bihar.
Pondicherry University, Pondicherry 605 014, Pondicherry.
Potti Sriramulu Telugu University, Public Gardens, Hyderabad 500 004, Andhra Pradesh.
Punjabi University, Patiala 147002, Punjab
Purvanchal University, Jaunpur 222 002, Uttar Pradesh.
Rabindra Bharati University, Calcutta 700 050, West Bengal.
Rajasthan Vidyapeeth, Udaipur 313001, Rajasthan.
Ranchi University, Ranchi 834 008, Bihar.
Rani Durgavati Vishwavidyalaya, Saraswati Vihar, Jabalpur 482 001 Madhya Pradesh.
Rohilkhand University, Bareilly 243 001, Uttar Pradesh.
S N DT Womens University, Nathibai Thackersey Road, Mumbai 400 020, Maharashtra.
Sambalpur University, Sambalpur, Orissa.
Sardar Patel University, Vallabh Vidyanagar 388 120, Gujarat.
Saurashtra University, University Road, Rajkot 360 005, Gujarat.
Shivaji University, Kolhapur 416 004, Maharashtra.
Shri Shahu Ji Maharaj University, Kalyanpur, Kanpur 208 024, Uttar Pradesh.
Siddhu Kanhu University, Santal Pargana, Dumka 814101, Bihar.
Sikkim Manipal University of Health, Medical & Technological Sciences SMU, Tadong, Gangtok,
Sikkim
South Gujarat University, Udhana Magdalla Road, Surat 395 007, Gujarat.
Sri Chandrasekharendra Saraswathi Viswamahavidyalaya, Kancheepuram 631 502, Tamil Nadu.
Sri Krishnadevaraya University, Anantapur 515 003, Andhra Pradesh.
Sri Padmavati Mahila Vishwavidyalayam, Tirupati 517 502, Andhra Pradesh.
Sri Sathya Sai Institute of Higher Learning, Prasanthinilayam 515 134, Anantapur, Andhra
Pradesh.
Sri Venkateswara University, Tirupati 5l7 507, Andhra Pradesh.
Swami Ramanand Teerth Marathwada University, Vishnupuri, Nanded 431 603, Maharashtra.
Tamil Nadu Veterinary and Animal Sciences University Chennai 600 007, Tamil Nadu.
Tamil University, Thanjavur 613 005, Tamil Nadu.
Tata Institute of Social Sciences, Deonar, Mumbai 400 088, Maharashtra.
Tezpur University, Tezpur 784 001, Dist. Sonitpur, Assam.
Tilak Maharashtra Vidyapeeth, Pune 411 037. Maharashtra.
Tilakamanihi Bhagalpur University, Bhagalpur 812007, Bihar.
Tripura University, Agartala 799 004, Tripura
University of Allahabad, Allahabad 211 002, Uttar Pradesh.
University of Bombay, M.G.Road, Fort, Mumbai 400001, Maharashtra.
University of Bundelkhand, Jhansi 284 001, Uttar Pradesh
University of Burdwan, Rajbari, Burdwan 713104, West Bengal.
University of Calcutta, Calcutta 700 073.West Bengal
University of Calicut, Kozhikode 673635, Kerala.
University of Delhi, Delhi 110007.

University of Gorakhpur, Gorakhpur 273 009, Uttar Pradesh.


University of Health Sciences,Vijayawada, Andhra Pradesh.
University of Hyderabad, Hyderabad 500 046, Andhra Pradesh.
University of Jammu, Baba Sahib Ambedkar Road, Jarnmu (Tawi) 180 004. Jammu & Kashmir.
University of Kalyani, Kalyani 741 234, West Bengal.
University of Kashmir, Srinagar 190 006,
University of Kerala, Trivandrum 695034, Kerala.
University of Lucknow, Lucknow 226 007, Uttar Pradesh.
University of Madras, Madras 600 005, Tamil Nadu.
University of Mysore, Crawford Hall, Mysore 570 005, Karnataka.
University of North Bengal, Darjeeling 734 430, West Bengal. .
University of Pune, Pune 411 007. Maharashtra.
University of Rajasthan, Jaipur 302 004. Rajasthan
University of Roorkee, Roorkee 247 667, Uttar Pradesh.
Veer Kunwar Singh University, Arrah 802 301, Bihar.
Vidyasagar University, Midnapore 721 102, West Bengal.
Vikram University, Ujjain 456 010, Madhya Pradesh.
Vinoba Bhave University, Hazari Bagh 825 301, Bihar.
Visvabharati University, Santiniketan 731 235, West Bengal
Yashwantrao Chavan Maharashtra Open University, College Road, Nasik 422 005, Maharashtra.

LIVE PROJECT - 3. ONLINE STUDENT


REGISTRATION SYSTEM(FINAL
PROJECTS 2030)
The Online Student Registration System is an web based portal developed in ASP. Online
Registration system will allow online submission of student application, Student Registration,
Perform Computer based quiz/test. Stored test results, modify student profile. Online Student
Registration System Project consists of two functional elements: an enhanced Student module for
Registration, Edit Profile, View Test history, Change Password. Online Test/Quiz Module for Start
test, give examination, calculate results, store test results, manage question banks. You can free
download all the project documentation, project source code, active server page (*.asp) files, Java
Script (.js) files, cascading style sheet (.cs) CSS files, Image and Layout files, database, Installation
Guide from download link. Code are well commented for your reference, however if you want any
clarification you can contact me for further explanation, click here to view online demo of this
application.
Click here to get more than 500 unique academic project ideain different programming languages.
Download this project concept, abstract, SRS, source code to complete project for your college
submission.

Who can use this project ?

Submission of semester and final year college student for academic purpose.
Student who are submitting their mini, major project for BE, BCA, BSC-IT, BIT, MBA, MCA, MS,
this project is well commented, ready made project documentation available for submission.
Who want to learn asp and database programming in visual basic script.
Student of Mumbai, Delhi, Calcutta, Chennai, Pune, Bangalore University of India and other
international university.
IGNOU, SMU, DOEACC student.
How to develop web projects by using ASP, Java Script.
How to host web application in IIS Internet Information Server.

Abstract Currently student submits hardcopy of filled application form to the college/university,
office staff enters all data into excel file and write same in manual register. Issue hall ticket / admit
card to student and conduct test for student. Student comes to college and give test for the specified
date. Office staff check all the paper calculate results and type all the details for taking printout and
display it in college premises. College inform student to check the result, student comes to college
and view the results. Proposed online student registration system will eliminate all the manual
intervention and increase the speed of whole process. System will allow student to fill the form
online, system has inbuilt validation system to validate the entered data. After successful
submission, system will give unique registration no for each student. Student can login into system
by using registration no and give online test. System will show the result after instantly and stored
the results for further use. Project Requirement

On line submission of application forms.


On-line Quizzes for the first semester courses. There should be minimum 50 questions (objective
types with four options)
When user leaves the test its result should be displayed at that moment.
There should be a proper login system for the user where security is required.
The web technologies to be used ; DHTML, CSS, JavaScript and ASP
The proper validation should be done.

Solution After analysis the requirement we decide that we need to create following web pages

Home Page
Login Page
My Page
Registration
Change Password
Edit Profile
Start Test
Examination
Results
FAQ
Contact Us

Deployment Environment

Database Server OS Win 2003 Enterprise Server MS Access HDD Min 10 GB, Recommended
25 GB RAM Min 1 GB, Recommended 2 GB Processor Pentium Dual Xenon Processor
Application Server OS Win 2003 Enterprise Server IIS Internet Information Server HDD
Min 5 GB, Recommended 10 GB RAM Min 1 GB, Recommended 2 GB Processor Pentium Dual
Xenon Processor
Workstation: The online registration system web application will operate with the following Web
Browsers: Microsoft Internet Explorer version 5.0, 6.0. 7.0.

Development Tools and Technologies

ASP (Active Server Pages) -Inbuilt with IISS 4.0 onward -No need of compilation and any special
software package.
MS Access -Easy to use and easy to deployment -ADO compatibility especially with ASP scripting.

Download the project documentation, source code, database and report files.

Size in KB

No of times
download

1. Project Synopsis

19936

2. Project Report

22

17299

3. Installation Guide

318

15625

4. Project Source Code

161

18801

Download Type

Download File

For
any
query
and
help
regarding
this
project
visit.
http://www.programmer2programmer.net/forums/forum_main.aspx?forum_id=6 Click here to view
the online demo of the application.

FINAL YEAR PROJECT IN JAVA, DOT NET,


PHP AND FINAL YEAR PROJECT FOR 2011
IN CHENNAI(FINAL PROJECTS 2030)
Softlogic Solutions, training division of Softlogic Group Of Company India Pvt Ltd, located in
Chennai, providing academic curriculum to the needs of IT industry. It is now extended to the
career-oriented aspirants to provide them with specialized software guidance in Dot net, Java/J2ee,
PHP/ MYSQL/ LAMP/PHYTHON and to give exposure to the IT industry and real time final year
projects. 4S Software SolutionS has come forward to offer academic final year projects for students
having knowledge on computer applications. We provide complete assistance for working on real
time final year projects in Dotnet, Java/J2ee,PHP/MYSQL/LAMP/PHYTHON technologies.
Are you looking for real time project in an it company with realtime exposure from it developers. We
are providing the project assistance training to the candidate with our development environment.
We are concentrating on the below technology like,

1. Dot NET
2. JAVA and J2EE
3. PHP, MYSQL WITH JOOMLA
4. SOFTWARE TESTING
5. NS2
6. IEEE
7. EMBEDDED
KINDLY NOTE:
Even students without this technical knowledge would be offered a training with real time projects
TRAINING SERVICES:
1. DOT NET 2008 WITH ADVANCED CONCEPTS LIKE ATLAS,
AJAX, LINQ, WPF, WCF AND ETC.
2. JAVA, J2EE WITH AJAX, HIBERNATE, SPRINGS
3. PHP, MYSQL WITH JOOMLA
4. SOFTWARE TESTING WITH ADVANCED CONCEPTS OF DESCRIPTIVE
PROGRAMMING.
Apart from that we are providing placement oriented programs like personality development and
communication skills. Once you complete the training program, you are eligible for placements too.
WE PROVIDE INTERNATIONAL CERTIFICATIONS LIKE
1. Microsoft for .Net
2. Sun Microsystem for JAVA, J2EE
3. Zend for PHP
4. ISTQB for software testing
IF YOU WANT TO BULID YOUR CAREER IN IT INDUSTRY..
WALK IN TO Softlogic International BPO SolutionS,
For All Diploma,M.B.A, B.B.A, B.E, M.E, B.C.A, M.C.A, B.Sc ( Electronics ), B.Sc ( Computer Science
), B.Sc( All Departments )
MINI PROJECT KITS,HOBBY PROJECT KITS ARE ALSO SALE HERE
offers final year projects for B.E Students of following department With best rate
final year projects for B.E. Computer Science and Engineering
final year projects for B.E. Electrical & Electronics Engineering
final year projects for B.E. Mechanical Engineering
final year projects for B.E. Electronics and Communication Engineering
final year projects for B.E. Electronics and Instrumentation Engineering
final year projects for B.E. Production Engineering
final year projects for B.Tech. Information Technology
offers final year projects for M.E & M.Tech Students
offers IEEE Based Projects
EMBEDDED MICROCONTROLLER PROJECTS
VLSI- PROJECTS
RFID PROJECTS
ROBOTIC PROJECTS
COMMUNICATION SYSTEM

WEB BASED APPLICATION ON PHP,


ASP.NET, JSP FINAL YEAR
PROJECTS(FINAL PROJECTS 2030)
S. No.

Title

Tools

Online Testing Solution

ASP.Net/PHP

Online Job Portal

ASP.Net/PHP

Cargo Shipping Management

ASP.Net/PHP

Human Resource Management

ASP.Net/PHP

Call Center Management System

ASP.Net/PHP

Online Financial Information & Security

ASP.Net/PHP

Online Examination System

ASP.Net/PHP

Online Customer Service

ASP.Net/PHP

Net Banking

ASP.Net/PHP

10

Online Auctioning

ASP.Net/PHP

11

Jewellery Shop Maintenance

ASP.Net/PHP

12

Electronic Fund Transfer (EFT)

ASP.Net/PHP

13

Online Book Shop

ASP.Net/PHP

.NET IEEE-2011 PROJECTS(FINAL


PROJECTS 2030)
1.Predicting Missing Items in Shopping Carts.
2.A Gen2-Based RFID Authentication Protocol for Security and Privacy.
3 .A Tabu Search Algorithm for Cluster Building in Wireless Sensor Networks.
4 .Biased Random Walks in Uniform Wireless Networks.
5 .Cell Breathing Techniques for Load Balancing in Wireless LANs.
6 .Energy Maps for Mobile Wireless Networks: Coherence Time versus Spreading Period
7 .Greedy Routing with Anti-Void Traversal for Wireless Sensor Networks.

8 .RandomCast: An Energy-Efficient Communication Scheme for Mobile Ad Hoc Networks.


9 .Resource Allocation in OFDMA Wireless Communications Systems Supporting
Multimedia Services
10 .Route Stability in MANETs under the Random Direction Mobility Model.
11 .Secure and Policy-Compliant Source Routing.
12 .Information Content-Based Sensor Selection and Transmission Power Adjustment for
Collaborative Target Tracking.
13.On the Planning of Wireless Sensor Networks: Energy-Efficient Clustering under the
Joint Routing and Coverage Constraint.

14.Enforcing Minimum-Cost Multicast Routing against Selfish Information Flows.


15 .Movement-Assisted Connectivity Restoration in Wireless Sensor and Actor Networks.
16 .Cell Breathing Techniques for Load Balancing in Wireless LANs.
17 .Explicit Load Balancing Technique forNGEO Satellite IP Networks With On-Board
Processing Capabilities.
18 .Two Blocking Algorithms on Adaptive Binary Splitting: Single and Pair Resolutions for
RFID Tag Identification.
19 .Resource Allocation in OFDMA Wireless Communications Systems Supporting
Multimedia Services.
20 .Analysis of Shortest Path Routing for Large Multi-Hop Wireless Networks.
21 .Resequencing Analysis of Stop-and-Wait ARQ for Parallel Multichannel
Communications.
22 .Secure and Policy-Compliant Source Routing.
23 .Biased Random Walks in Uniform Wireless Networks.
24 .Energy Maps for Mobile Wireless Networks: Coherence Time versus Spreading Period.
25 .A Tabu Search Algorithm for Cluster Building in Wireless Sensor Networks.
26 .An Integrated Approach to Sensor Role Selection.

27 .Information Content-Based Sensor Selection and Transmission Power Adjustment for


Collaborative Target Tracking.
28 .On the Planning of Wireless Sensor Networks: Energy-Efficient Clustering under the
Joint Routing and Coverage Constraint.
29.Resequencing Analysis of Stop-and-Wait ARQ for Parallel Multichannel
Communications.30.Greedy Routing with Anti-Void Traversal for Wireless Sensor
Networks.
31.A Gen2-Based RFID Authentication Protocol for Security and Privacy.
32.RandomCast: An Energy-Efficient Communication Scheme for Mobile Ad Hoc Networks.
33.Dynamics of Multiple-Seller and Multiple-Buyer Spectrum Trading in Cognitive Radio
Networks.34.On the Security of Route Discovery in MANETs.35.Route Stability in MANETs
under the Random Direction Mobility Model.
36.A Gen2-Based RFID Authentication Protocol for Security and Privacy .
37 .A Tabu Search Algorithm for Cluster Building in Wireless Sensor Networks.
38 .Analysis of Shortest Path Routing for Large Multi-Hop Wireless Networks.
39 .Biased Random Walks in Uniform Wireless Networks.
40 .Energy Maps for Mobile Wireless Networks: Coherence Time versus Spreading Period.
41 .Explicit Load Balancing Technique for NGEO Satellite IP Networks with On-Board
Processing Capabilities.
42 .Greedy Routing with Anti-Void Traversal for Wireless Sensor Networks.
43 .Information Content-Based Sensor Selection and Transmission Power Adjustment for
Collaborative Target Tracking.
44 .On the Planning of Wireless Sensor Networks: Energy-Efficient Clustering under the
Joint Routing and Coverage Constraint.
45 .Resequencing Analysis of Stop-and-Wait ARQ for Parallel Multichannel
Communications.
46 .Resource Allocation in OFDMA Wireless Communications Systems Supporting
Multimedia Services.

47 .Route Stability in MANETs under the Random Direction Mobility Model .

48.Secure and Policy-Compliant Source Routing.


49 .Single-Link Failure Detection in All-Optical Networks Using Monitoring Cycles and
Paths.
50 .Two Blocking Algorithms on Adaptive Binary Splitting: Single and Pair Resolutions for
RFID Tag Identification.

ASP .NET PROJECTS LIST(FINAL


PROJECTS 2030)
1. Image steganography (Java 1.5).
2. Root Locus Simulator (Visual Basic6.0).
3. Bode Plot Simulator (Visual Basic6.0).
4. Herwitz Determinant Simulator (Visual Basic6.0).
5. RH Criteria Simulator (Visual Basic6.0).
6. Facial Image Compresion (Visual Basic 6.0).
7. Courler Information System (Visual Basic 6.0 MS Access).
8. Online Mailing Application (VB.Net/ASP.NET MS Access 2000 /PLSQL)
9. CRM Solution (Java/Asp .NET Sql Server2000)
10. Health Information System (ASP .Net/Sl Server2000).
11. Blood Bank management System (VB6.0/VB .Net MS Accesss2000).
12. Finger Print Scanning :: Banking Application (VB .Net/VB Sql Server2000/MS Access2000).
13. Finger Print Scanning :: ATM Finger Print (ASP .Net Sql Server2000).
14. Lab Attendance Student using Finger Print Scanner.
(VB/VB.Net/ASP.Net MSAccess/ SqlServer2k). 15. Data Search Optimization (VB,Net/Asp.NetSql
Server2000/ Oracle 10g).
16. Salary information System (VB/VB.Net/Asp.Net SQL Server2000).
17. Fruit Information System (VB MS Access).
18. Cyborg (HTML/FLASH MX / JAVASCRIPT).
19. Tourism Information (ASP.NET Sql Server 2000).
20. Sports Information (ASP.Net MS Sql Server WML).
21. Dyanamic Information System (C#.Net.Net Framework, Html, Java Script).
22. Student Smart Card Application (VC++, MS-Access)
23. Student Information Systems.(VB, C#.Net).
24. Online Shopping (ASP MS Sql Server).

25. Online Banking System. (C# +ASP).


26. Finger Print Scanning Of Criminals (VB,MS Access).
27. Animation Engineering (Flash MX,ASP).
28. Banking S/W accessing with Help Of Biometrics Technology (VB Net And Access H/W:- Finger
print Scanner.)
29. CRM relationship manegment (VB.Net And Oracle).
30. E-Insurance (java)
31. H/W Troubleshooter and its Solution.(VC#.Net/VB and MS -Access)
32. Health Care System Connecting at Various terminals to get the information (ASP/ASP.NET,SQL
Server2000)
33. Banking Softwaer to Access the information at varrious levels with Complete Security (ASP.Netr,
SQL Server2000)
34. Telephonic Resulting System (VC++,VB)
35. Complete ecommerce solution For a Web based store with Searching,Shopping,Payment,Order
Processing etc.(ASP/ASP.NET SQL Server2000).
36. Alumri club for your colloge real Hosting and usage (VE.Net, Java Script/JAVA, SQL Server2000)
37. Majer Level of Crime to be minimized by Desplying the records Online and read the record at
every level with updating from admin level only (VB/VB.NET, SQL Server2000)
38. e-SCM: Supply Chain Management Saolution For a distribution company (ASP/ASP.NET,SQL
Server2000)
39. Helep Desk and Fund raising system at the time of emergency like floods earthquakes.
(VB/VB.Net, SQl Server2000)Wireless accessing the WAP site (WML, GPRS hadset,simulator)
40. Finger Corporate Authentication system with Photo identefication (VB.NET + MS Access).
41. News Portal System (ASP.NET + SQL: Server)
42. Bank Account Access System (Java + VB.Net + Access)
43. Criminial Identification System. (MATLAB + VB + Access).
44. Interactive Classsroom for College (VB.NET + SQL 2k)
45. Digital Parking System (VB.NET + Access)
46. Univercity Admission System (VB.NET + Access)
47. Message converssion tool (ASP.NET + SQL2k)
48. Job Recrument Scheme (ASP.NET + Access)
49. CD Return System (VB.NET + Access).
50. Sending mail using VB.

LIST OF FINAL YEAR PROJECT IN


C#.NET(FINAL PROJECTS 2030)
Here you can download complete project listing with source code, project report, database structure

of live project. If you are a final year college student of Diploma Engineering, BSC-IT, BE, BCA,
MCA, MS, MBA from Indira Gandhi National Open University IGNOU (Distance Education,
Learning), Sikkim Manipal University SMU of India and International Universities and looking for
complete software project source code, abstract, synopsis and documentation, here you can
download readymade project for submission. You can also download this source code as mini, major
project for submit as a final semester project.
Download IGNOU, SMU Sample, Template, Last Year, Previous Year, Final Year / Semester project
files for MCA (Master of Computer Application), BCA (Bachelor of Computer Application), BSc.
(Bachelor of Science), BE (Bachelor of Engineer), BTech (Bachelor of Technologies), BSC-CS
(Bachelor of Computer Science), BSC-IT (Bachelor of Science in Information Technology), DIT
(Diploma In Information Technology), BCom IS (Bachelor of Commerce in Information System),
PGDCA (Post Graduate Diploma in Computer Application), MSc. CS (Master of Science in Computer
Science), MCom IS (Master of Commerce in Information System), MBA IT ( Master of Business
Administration Information Technology), BIT, ADIT, ME, MTech, MBA IT/System, Diploma,
Polytechnic Engineering , Computer Science college student of Indian university.
Click here to get more than 500 unique academic project idea in different programming languages.
Download this project concept, abstract, SRS, source code to complete project for IGNOU, SMU,
DOEACC University and college submission.
Project # 1 eBilling and Invoice System

Computerization of Billing and Invoice system, Download project documentation, project source
code, project executable files.
Type : Desktop / Client Server
Technology : Visual Basic, MS ACCESS
Credit : Mr. Atanu Maity
Project # 2 IMPRO (Industrial Manpower Resource Organizer)

This project is developed for Industrial Manpower Resource Organizer for managing Employees,
branches, planning, controlling and executing HR policies, HR Automation software and Reports.
Type : Desktop / Client Server
Technology : VB.NET, SQL Server
Credit : Mr. Joydeep Dass
Project # 3 Online Registration (Online Student Registration System)

Online Registration System is an web based application for on line submission of


application forms, On-line Quizzes for the first semester courses, online results will display
after completing the test. Inbuilt login security system for Authentication.
Type : Web Application
Technology : ASP (Active Server Page), Java Script, MS Access
Credit : AJProfessionals
Project # 4 WCPS (Web Based Claims Processing System)

Web Based Claims Processing System (WCPS) which is web based so that the employee can
fill the form online and submit it so that the form is sent to Claim Processing Department
(CPD) through Internet. At CPD, the form needs to be checked automatically by a program
which will compute the amount that needs to be reimbursed to the employee for the
treatment undertaken.

Type : Web Application


Technology : ASP.Net, C#, SQL Server
Credit : AJProfessionals
Project # 5 eProperty (Estate Agent / Property Management System)

eProperty is an Estate Agent and Property Management System is a user friendly contact
and property manager for real estate professionals. Save time and sell more by
empowering to easily keep track of leads, manage listings, and market to new prospects.
Type : Desktop / Client Server
Technology : VB6, SQL Server, Crystal Report
Credit : Readymadeproject
Project # 6 Steganography (Technique to hide information within image file)

Steganography is the art of hiding the fact that communication is taking place, by hiding
information in other information. This project is developed for hiding information in any
image file. The scope of the project is implementation of steganography tools for hiding
information includes any type of information file and image files and the path where the
user wants to save Image and extruded file.
Type : Desktop / Client Server
Technology : C#, .Net Framework 3.5
Credit: Mr. Atanu Maity
Project 1 : eBilling, Accounting and Invoice System

eBilling and Invoice System is a live project written in Visual Basic 6 programming language. It is a
working solution. I give you complete project listing with all project file, source code, database,
crystal reports. You can use this project as you want. I am not claim any copyright for this project.
You can free download all the project documentation, project source code, project executable files,
database from download link and submit as SMU, IGNOU project. Code are well commented for your
reference, however if you want any clarification you can contact me for further explanation.
Who can use this project ?
1. Commercial visual basic application developer can use this project as a whole or part of it as
required.
2. Student who are submitting their final year project for BE, BCA, BSC-IT, MCA, MS, SMU, IGNOU
this project is well commented, ready made project documentation available for submission.
3. Who want to learn database programming in visual basic.
4. Who want to know how to develop commercial application from project requirement to
implementation and final documentation.
5. To learn Billing, Invoicing and Accounting project development and Win API Programming in
visual basic.
6. How to create report in Crystal Report and integrate with visual basic application.
Project Description
This project is made for one of the big decorator services in Mumbai, they supply decorating item to

film industry for movie shooting. Presently they issue their client handwritten invoice and they enter
details in manual register. And maintain MS Excel file for product rate. They want computerization
of their manual invoice and bill generation process.
Some important coding features you can get from this project.
1. How to convert MSFlexGrid as editable text box and drop down list box.
2. How to format MS-Excel worksheet with border color, back ground color, text color and change
column width in visual basic.
3. Convert Rupees to amount in word like 123.50 will convert into Rupees one hundred twenty
three and fifty paise only
4. How to connect and show crystal report from visual basic application.
Click here to Download the project documentation, source code, database and report files for
eBilling Invoicing and Accounting System.
For any query and help regarding this project visit
http://www.programmer2programmer.net/forums/forum_main.aspx?forum_id=6
Click here to view the online demo of the eBilling application.
Please send me your college project report format and project guide line at my email id , so that I
can prepare and list projects and project report as per your college/university standard.
All projects listed here can be used for bellow mentioned Indian university. Find the list of
Universities.

Alagappa University, Alagappa Nagar,Karaikud 623 003, Tamil Nadu.


Aligarh Muslim University, Aligarh 202 002, Uttar Pradesh.
Amity University, Amity Campus, Sector 44, Noida 201303
Amravati University, Amravati 444602. Bihar.
Andhra University, Waltair, Vishakhapatnam 530003. Andhra Pradesh.
Anna University, Sardar Patel Road, Guindy, Chennai 600025. Tamil Nadu.
Annamalai University, Annamalainagar 608002. Tamil Nadu.
Arunachal University, Rono Hills, Itanagar 791111, Arunachal Pradesh.
Assam University, PB No.63, Meherpur, Silchar 788 015, Assam
Avinashilingam Institute for Home Science & Higher Education for Women, Coimbatore, Tamil
Nadu.
Awadhesh Pratap Singh University,Rewa 486 003, Madhya Pradesh.
B N Mandal University, Madhepura 852 113. Bihar
Babasaheb Bhimarao Ambedkar University, Gomtinagar, Lucknow 226016. Uttar Pradesh.
Babasaheb Bhimrao Ambedkar Bihar University, Muzafrpur 842001. Uttar Pradesh
Banaras Hindu University, Varanasi 221 005, Uttar Pradesh
Banashtali Vidyapeeth, Banasthali, Rajasthan 304 022.
Bangalore University, JnanaBharathi, Bangalore560056, Karnataka.
Barkatullah Vishwavidyalaya, Bhopal 462 006, Madhya Pradesh
Bengal Engineering College, Howrah 711103, West Bengal.
Berhampur University, Bhanja Bihar, District Ganjarn, Berhampur 760 007, Orissa.
Bharathiar University, Coimbatore 641 046, Tamil Nadu.

Bharathidasan University, Tiruchirappalli 620 024,TamilNadu.


Bharati Vidyapeeth, Lal Bahadur shastri Marg, Pune 411 030, Maharashtra.
Bhavnagar University, GouriShankar Lake Road, Bhavanagar 364 002. Gujarat.
Bidhan Chandra Krishi .P O Krishi Vishwavidyalaya, Haringhata, Dist Nadia 741 252, West Bengal.
Birla Institute of Technology and Science, Pilani 333 031, Rajasthan.
Birla Institute of Technology, Mesra, Ranchi 835 215. Bihar.
Central Institute of English and Foreign Languages, Hyderabad 500 007, Andhra Pradesh.
Central Institute of Higher Tibetan Studies, Sarnath, Varanasi 221007, Uttar Pradesh.
Choudhury Charan Singh University, Meerut 250 005, Uttar Pradesh.
Cochin University of Science & Technology, Kochi 682 022, Kerala.
Dakshina Bharat Hindi Prachar Sabha, PB No.1419, Thyagarayanagar,Madras 600 017, Tamil
Nadu.
Dayalbagh Educational Institute, Dayalbagh, Agra 282 005, Uttar Pradesh.
Deccan College Post Graduate and Research Institute, Pune 411 006, Maharashtra.
Devi Ahilya Vishwavidyalaya,R N Tagore Marg, Indore, Madhya Pradesh.
Dibrugarh University, Dibrugarh 786004, Assam.
Dr B R Ambedkar Open University, Hyderabad 500 033, Andhra Pradesh.
Dr B.R.Ambedkar Open University, Ahmedabad 380 014, Gujarat.
Dr Babasaheb Ambedkar Marathwada University, Aurangabad, Maharashtra.
Dr Babasaheb Ambedkar Technological University P. O. Goregaon, Lonere 402 103, Maharashtra.
Dr Harisingh Gour Vishwavidyalaya, Sagar 470 003, Madhya Pradesh.
Dr Panjabrao Deshmukh Krishi Vidyapeeth, Krishinagar, Akola 444104, Maharashtra.
Dr Ram Manohar Lohia University, izabad 224 001, Uttar Pradesh
Dr Y S Parmar University of Horticulture & Forestry, Nauni 173 230, Dist. Solan, Himachal
Pradesh,
Dr. Bhim Rao Ambedkar University, Agra 282 004. Uttar Pradesh.
Gandhigram Rural Institute, Gandhigram 624 302, Dindigul Anna District, Tamil Nadu.
Gauhati University, Gopinath Bardoloi Nagar, Guwahati 781 014, Assam
Goa University, Goa.
Gokhale Institute of Politics and Economics, Pune 411 004, Maharashtra.
Gujarat Ayurved University, Jamnagar 361 008, Gujarat
Gujarat University, Navrangpura, Ahmedabad 380009, Gujarat.
Gujarat Vidyapeeth, Ashram Road, Ahmedabad 380 014. Gujarat.
Gulbaraga University, Gulbarga 585 106, Karnataka.
Guru Ghasidas University Bilaspur 495 001, Madhya Pradesh
Guru Jambheshwar University, Hissar 125 001, Haryana.
Guru Nanak Dev University, Amritsar 143005, Punjab.
Gurukula Kangri Vishwavidyalaya, Hardwar 249 404, Uttar Pradesh.
Hemwati Nandan Bahuguna Garhwal University, Srinagar 246 174. Jammu & Kashmir
Himachal Pradesh Krishi Vishwavidyalaya, Palampur, Himachal Pradesh. .
Himachal Pradesh University Shimla 171 005, Himachal Pradesh
Indian Institute of Technology, Chennai (Madras) 600 036, Tamil Nadu
Indian Institute of Science, Bangalore 560 012, Karnataka.
Indian Institute of Technology, Institution of Engineers Building Pan Bazar, Guwahati, Assam.
Indian Institute of Technology, Hauz Khas, New Delhi 110 016. Delhi.

Indian Institute of Technology, Kanpur 208 016, Uttar Pradesh.


Indian Institute of Technology, Kharagpur 721 302, West Bengal.
Indian Institute of Technology, Powai, Mumbai 400 076. Maharashtra.
Indian School of Mines, Dhanbad 826 004, Bihar.
Indian Statistical Institute, 203, Barrackpore Trunk Road, Calcutta 700 035, West Bengal.
Indian Veterinary Research Institute, Izatnagar 243 122, Uttar Pradesh. .
Indira Gandhi Institute of Development Research Gen. A.K. Vaidya Marg, Mumbai, Maharashtra.
Indira Gandhi Krishi Vishwavidyalaya, Raipur 492012, Madhya Pradesh.
Indira Gandhi National Open University IGNOU, Maidan Garhi, NewDelhi 110 068.
Indira Kala Sangit Vishwavidyalaya, Khairagarh 491 881. Madhya Pradesh.
International Institute for Population Sciences, Govandi, Deonar, Mumbai. Maharashtra.
Jadavpur University, Calcutta 700 032, West Bengal.
Jai Narain Vyas University, Jodhpur 342 001, Rajasthan.
Jai Prakash Vishwavidyalaya, Chhapra 841 301, Bihar.
Jain Vishva Bharati Institute, P.O. Bo
Jamia Millia Islamia, Jarnia Nagar, New Delhi 110 062.
Jawaharlal Nehru Krishi Vishwavidyalaya, Krishi Nagar, Jabalpur 482 004. Madhya Pradesh.
Jawaharlal Nehru Technological University, Saibad, Hyderabad 500 028, Andhra Pradesh.
Jawaharlal Nehru University, New Mehrauli Road, New Delhi 110 067.
Jiwaji University, Gwalior 474 011. Madhya Pradesh
Kakatiya University, Warangal, Andhra Pradesh.
Kannada University, Hampi 583 211, Karnataka.
Karnatak University, Pavate Nagar, Dharwad 580 003, Karnataka.
Konkan Krishi Vidyapeeth, Dapoli 415712, District. Ratnagiri, Maharashtra.
Kota Open University, Rawatbhata road, Akhelgarh, Kota 324010, Rajasthan.
Kumaun University, Nainital 263 001. Uttar Pradesh.
Kurukshetra University, Kurukshetra 132 119, Haryana.
Kuvempu University, Gnanasahyadri, District. Shimoga, Karnataka
Lakshmibai National Institute of Physical Education, Shaktinagar, Gwalior 474 007, Madhya
Pradesh.
Lalit Narayan Mithila University, Darbhanga 846004, Bihar.
M S University of Baroda, Vadodara 390002, Gujarat.
Madhya Pradesh Bhoj University, Barkatullah University, Bhopal 462 026, Madhya Pradesh.
Madurai Kamaraj University, Madurai 625 021, Tamil Nadu.
Magadh University, Bodh Gaya 824 234, Bihar.
Maharishi Dayanand Saraswati University, Ajmer 305001, Rajasthan.
Maharshi Dayanand University, Rohtak l24001,Haryana.
Mahatma Gandhi Gramodya Vishwavidyalaya, Chitrakut 485 331 District.Satna, Madhya Pradesh ,
Mahatma Gandhi Kashi Vidyapeeth, Varanasi 221002, Uttar Pradesh.
Mahatma Gandhi University, Kottayam 686560, Kerala.
Mahatma Phule Krishi Vidyapeeth, Rahuri 413722, Maharashtra.
Makhanlal Chaturvedi National University, Bhopal 462 016, Madhya Pradesh.
Malabar University, Payyambalam, Kannur 678 710, Kerala.
Mangalore University, Mangalagangothri, Mangalore 574 199, Karnataka.
Manipal Academy of Higher Education Madhav Nagar, Manipal 576 119, Karnataka.

Manipur University, Canchipur, Imphal, Manipur.


Manonmaniam Sundaranar University, Tirunelvali 627 009, Tamil Nadu
Marathwada Krishi .Vidyapeeth, Parbhani 431 402, Maharashtra .
Mohanlal Sukhadia University, Udaipur 313 001, Rajasthan.
Mother Teresa Womens University, Kodaikanal 624102,TamilNadu.
Nagaland University, Lumami, Kohima 797001, Nagaland.
Nagarjuna University, Guntur 522 510, Andhra Pradesh.
Nagpur University, Rabindranath Tagore Marg, Nagpur 440 001, Maharashtra.
Nalanda Open University, Adarsh Colony Patna 800 001, Bihar.
National Dairy Research Institute, Karnal 132 001, Haryana.
National Law School of Indian University, Bangalore 560 072, Karnataka.
National Museum Institute of History of Art, Conservation and Museology, Janpath, New Delhi.
North Eastern Hill University,Shillong, Meghalaya.
North Gujarat University, Rajmahal Road, Patan 384 265, Gujarat.
North Maharashtra University, Jalgaon 425001, Maharashtra.
Osmania University, Hyderabad 500007.Andhra Pradesh
Pandit Ravishankar Shokla University, Raipur 492010. Madhya Pradesh.
Punjab University, Chandigarh 160014, Punjab.
Patna University, Patna 800005, Bihar.
Pondicherry University, Pondicherry 605 014, Pondicherry.
Potti Sriramulu Telugu University, Public Gardens, Hyderabad 500 004, Andhra Pradesh.
Punjabi University, Patiala 147002, Punjab
Purvanchal University, Jaunpur 222 002, Uttar Pradesh.
Rabindra Bharati University, Calcutta 700 050, West Bengal.
Rajasthan Vidyapeeth, Udaipur 313001, Rajasthan.
Ranchi University, Ranchi 834 008, Bihar.
Rani Durgavati Vishwavidyalaya, Saraswati Vihar, Jabalpur 482 001 Madhya Pradesh.
Rohilkhand University, Bareilly 243 001, Uttar Pradesh.
S N DT Womens University, Nathibai Thackersey Road, Mumbai 400 020, Maharashtra.
Sambalpur University, Sambalpur, Orissa.
Sardar Patel University, Vallabh Vidyanagar 388 120, Gujarat.
Saurashtra University, University Road, Rajkot 360 005, Gujarat.
Shivaji University, Kolhapur 416 004, Maharashtra.
Shri Shahu Ji Maharaj University, Kalyanpur, Kanpur 208 024, Uttar Pradesh.
Siddhu Kanhu University, Santal Pargana, Dumka 814101, Bihar.
Sikkim Manipal University of Health, Medical & Technological Sciences SMU, Tadong, Gangtok,
Sikkim
South Gujarat University, Udhana Magdalla Road, Surat 395 007, Gujarat.
Sri Chandrasekharendra Saraswathi Viswamahavidyalaya, Kancheepuram 631 502, Tamil Nadu.
Sri Krishnadevaraya University, Anantapur 515 003, Andhra Pradesh.
Sri Padmavati Mahila Vishwavidyalayam, Tirupati 517 502, Andhra Pradesh.
Sri Sathya Sai Institute of Higher Learning, Prasanthinilayam 515 134, Anantapur, Andhra
Pradesh.
Sri Venkateswara University, Tirupati 5l7 507, Andhra Pradesh.
Swami Ramanand Teerth Marathwada University, Vishnupuri, Nanded 431 603, Maharashtra.

Tamil Nadu Veterinary and Animal Sciences University Chennai 600 007, Tamil Nadu.
Tamil University, Thanjavur 613 005, Tamil Nadu.
Tata Institute of Social Sciences, Deonar, Mumbai 400 088, Maharashtra.
Tezpur University, Tezpur 784 001, Dist. Sonitpur, Assam.
Tilak Maharashtra Vidyapeeth, Pune 411 037. Maharashtra.
Tilakamanihi Bhagalpur University, Bhagalpur 812007, Bihar.
Tripura University, Agartala 799 004, Tripura
University of Allahabad, Allahabad 211 002, Uttar Pradesh.
University of Bombay, M.G.Road, Fort, Mumbai 400001, Maharashtra.
University of Bundelkhand, Jhansi 284 001, Uttar Pradesh
University of Burdwan, Rajbari, Burdwan 713104, West Bengal.
University of Calcutta, Calcutta 700 073.West Bengal
University of Calicut, Kozhikode 673635, Kerala.
University of Delhi, Delhi 110007.
University of Gorakhpur, Gorakhpur 273 009, Uttar Pradesh.
University of Health Sciences,Vijayawada, Andhra Pradesh.
University of Hyderabad, Hyderabad 500 046, Andhra Pradesh.
University of Jammu, Baba Sahib Ambedkar Road, Jarnmu (Tawi) 180 004. Jammu & Kashmir.
University of Kalyani, Kalyani 741 234, West Bengal.
University of Kashmir, Srinagar 190 006,
University of Kerala, Trivandrum 695034, Kerala.
University of Lucknow, Lucknow 226 007, Uttar Pradesh.
University of Madras, Madras 600 005, Tamil Nadu.
University of Mysore, Crawford Hall, Mysore 570 005, Karnataka.
University of North Bengal, Darjeeling 734 430, West Bengal. .
University of Pune, Pune 411 007. Maharashtra.
University of Rajasthan, Jaipur 302 004. Rajasthan
University of Roorkee, Roorkee 247 667, Uttar Pradesh.
Veer Kunwar Singh University, Arrah 802 301, Bihar.
Vidyasagar University, Midnapore 721 102, West Bengal.
Vikram University, Ujjain 456 010, Madhya Pradesh.
Vinoba Bhave University, Hazari Bagh 825 301, Bihar.
Visvabharati University, Santiniketan 731 235, West Bengal
Yashwantrao Chavan Maharashtra Open University, College Road, Nasik 422 005, Maharashtra.

Вам также может понравиться