College management system
#1

College management system is an integrated web application that handles various academic and non academic activities of a College/Academic Institute. The system can access by every students/faculties/employees of the institution through internet connected computers or internet enabled mobile devices with the aid of his user name and password. Every user will have a customized home page with his/her profile management facilities. Through links that displays in the home page the user can access different options of the website assigned to him.

Though the system allows access to every one there is a significant security risk involved in this project. To tackle this problem we suggest a modular structure in the proposed system and a complete isolation of the financial and administrative modules from the public portal. Only trusted IPâ„¢s can access these modules. Web services will interact to the financial and administrative modules to fetch necessary information to display in the public portal. Although a standard password policy will be followed in the designing of the system to prevent the possibilities of malicious activities of itching users.

A self driven module in the proposed system will accomplish the automated tasks such as Email Alerts, SMS alerts, Notifications to the administrator etc.

The system can be developed using ASP.NET 2005 and MS SQL Server 2005.

Some of the features of the proposed system are

1. Student Admission
2. Student Fee management
3. Student Attendance Management
4. Staff Attendance Management
5. Staff Payroll Management
6. Library Management
7. User Management
Reply
#2
[attachment=3336]
Reply
#3
wat d fuck it is..
i am unable to get the complete report..
Reply
#4
Shocked 
[attachment=5947]
College Admission Management System


OBJECTIVE: The goal of this project is to design a system for registration of a student for admission in college.

DESCRIPTION: This college admission management system will help a student to register for college by filling up the details in the admission form and submitting it online. Then the student will be checked for eligibility and assigned an interview date.



PROPOSED METHODOLOGY-
• Studying the problem.
• Analysing the system, application of the system, the hardware and software requirements for implementing the system.
• Choosing Java platform for design. The Java Platform is designed for running highly interactive, dynamic, and secure applets and applications on networked computer systems. Thus, the Java Platform has benefits not only for the developer and support personnel, but also for the end user.
 For the end users, the platform provides live, interactive content on the World Wide Web, with just-in-time software access. Applications are readily available on all operating systems at once. Users do not have to choose operating systems based on the applications, they can run the applications on their favorite machines.
 Developers can develop applications on one platform to deliver to that same platform -- the Java Platform, which is available on a wide variety of OS and hardware platforms. This much reduces the developing cost.
 For support personnel, version control and upgrades are much simplified because Java-enabled application can be kept in a central repository and served from there for each individual use.
• Implementing the system using DBMS. A DBMS is a set of software programs that controls the organization, storage, management, and retrieval of data in a database. DBMS are categorized according to their data structures or types. It is a set of prewritten programs that are used to store, update and retrieve a Database. The DBMS accepts requests for data from the application program and instructs the operating system to transfer the appropriate data. When a DBMS is used, information systems can be changed much more easily as the organization's information requirements change. New categories of data can be added to the database without disruption to the existing system.
• Interpreting the result and making it more user friendly.
Reply
#5
hi, i need data flow diagram and java code for college timetable management system.
Reply
#6
please download the attached files for more details
Reply
#7

[attachment=7581]

SYNOPSIS

The system COLLEGE MANAGEMENT SYSTEM can be used to manage the data of all type of educational institutes. It will support both stand alone and also networking environment. The system uses VB. Net Technology. The main modules involved in this system are:

1. Login
2. Forms
3. Reports
4. Window

Module wise description

Login

Login module is used to check whether the user is an authorized person to use the system or not. For this the user should give the correct user name and password.
The different types of users are
1. Admin
2. Student
3. Employee

Forms

This module consists of the following sub modules


1. Student Registration Form
2. Student Fee Form
3. Student Marks Form
4. Student ID Form
5. Employee Detail Form
6. Employee Salary Form
7. Employee ID Form
8. Course Detail Form
9. Library Form

The Student Registration Form is designed for registering the new students details and course details.

The Student Fee Form is used to enter the student’s fee details.

The Student Marks Form is designed for submitting the semester or exam marks of the students for a particular course or an individual student.
The Student Id Form is used to create the identity number for each student for different course.
The Employee details form is designed for entering the staff details and other relevant details .
The Employee Id used to create the identity number for each student for different course.
The salary form is used to derive the salary for employees
The Course details form is designed for entering the different course available in the campus and other relevant details .
The Library module is used for the data process of library and book accessing for students and staffs.

Reports

All the above mentioned data are stored in the back end and can be retrieved as reports with filtering options. The Following are the reports can be taken from this system

1. Student Report
2. Employee Report
3. Course Detail Report
4. Book Detail Report
5. Issued Book Report
6. Fee Detail Report
7. Marks Detail Report
8. Generate Pay Slip
Reply
#8
[attachment=15566]
Code:
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.sql.*;
public class examschedule1 extends HttpServlet
{
    Connection con;
    Statement stmt;
    ResultSet rs;
    PrintWriter out;
    public void service(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException
    {
        try
        {
            ServletContext context=getServletConfig().getServletContext();
           String driver=    context.getInitParameter("driver");
           String url=context.getInitParameter("url");
           String uname=context.getInitParameter("uname");
           String pwd=context.getInitParameter("pwd");
         out=response.getWriter();
            response.setContentType("text/vnd.wap.wml");
            Class.forName(driver);
            con=DriverManager.getConnection(url,uname,pwd);
            stmt=con.createStatement();
        System.out.println("Entered1");    

out.println("<?xml version=\"1.0\" encoding=\"utf-8\"?> "+
"<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.3//EN\" \"http://wapforumDTD/wml13.dtd\"> "+"<wml>"+
   "<card id=\"card1\" title=\"Mobile Information System\"><p align=\"center\">");
out.println("<br/><br/>");
out.println("<u>Exam Schedule</u>");
out.println("<br/><br/>");
rs=stmt.executeQuery("select distinct(branch) from examination");
out.println("List of branches<select  name=\"branch\">");
        System.out.println("Entered1");    
            while(rs.next())
            {
                        System.out.println("Entered1");    
                String s=rs.getString("branch");

                 out.println("<option value=\""+s+"\">"+s+"</option>");
                    
            }
            out.println("</select>");

rs=stmt.executeQuery("select distinct(year) from examination");

out.println("Select Year<select  name=\"year\" >");
while(rs.next())
            {
                    String s=rs.getString("year");
                  out.println("<option value=\""+s+"\">"+s+"</option>");
            }
            
out.println("</select>");

rs=stmt.executeQuery("select distinct(semester) from examination");
out.println("Select Sem<select name=\"sem\">");
while(rs.next())
            {
                 String s=rs.getString("semester");
                 out.println("<option value=\""+s+"\">"+s+"</option>");
            }

out.println("</select><br/><br/>");
out.println("<anchor>");
out.println("<go href=\"examschedule2\">");
out.println("<postfield name=\"branch\" value=\"$branch\"/>");
out.println("<postfield name=\"year\" value=\"$year\"/>");
out.println("<postfield name=\"sem\" value=\"$sem\"/>");
out.println("</go>    Search</anchor>");
out.println("</p></card></wml>");


        }
        catch (Exception e)
        {
            System.out.println(e);
        }
        
    
    }

}
Reply
#9

to get information about the topic " college management system" full report ppt and related topic refer the page link bellow

http://studentbank.in/report-synopsis-of...ent-system

http://studentbank.in/report-college-management-system
Reply
#10
Sir can I get the complete report n code of this its very urgent..

Sir can I get the complete report of this
Reply
#11

To get full information or details of College management system please have a look on the pages

http://studentbank.in/report-college-management-system

if you again feel trouble on College management system please reply in that page and ask specific fields in College management system
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: aix uname 64, college management system in vb 6, inurl c99 uname, redhat uname, seminar on college management system, college management system pdf, college management system ppt,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  event management system project report tiger 3 6,342 30-08-2017, 12:43 PM
Last Post: jaseela123d
  Development of a Recipe Management System seminar topics 1 3,020 24-04-2017, 10:17 AM
Last Post: Zakir Hussain
  The impact of technology on queue management system holax 1 1,400 14-07-2016, 02:39 PM
Last Post: seminar report asees
  School Management System project topics 9 8,440 27-06-2016, 09:23 AM
Last Post: computer science crazy
Smile school management system amrita 2211 4 5,555 27-06-2016, 09:23 AM
Last Post: computer science crazy
  Employee Cubicle Management System full report computer science technology 4 5,081 07-04-2016, 11:37 AM
Last Post: dhanabhagya
  Attendance Management System mechanical engineering crazy 18 23,339 05-04-2016, 09:50 AM
Last Post: dhanabhagya
  warehouse management system project report tiger 3 4,131 17-12-2015, 02:23 PM
Last Post: seminar report asees
  college website project full report project report tiger 28 67,021 29-11-2015, 02:37 PM
Last Post: Guest
  Student Fee Management System project topics 4 5,945 25-09-2015, 09:54 AM
Last Post: seminar report asees

Forum Jump: