Sie sind auf Seite 1von 3

rocess project is developed using .

Net this project is useful for computer scien ce final year students who are interested in developing web based application. T he main idea for implementing this application is to provide computerization of visa processing process. Visa Resource a Very important Department in any Organization. Our Project gives the depth solution to one of its important requirements as Visa Data Processing . The client of this project is any organization who is having many abroad clients especially US clients. This type of organizations is frequently sending their e mployees for their overseas clients. Our project is used to process their visa a nd store all the details regarding the passport holder. Our project will handle all type of visas, and very much concentrate in visa processing. It will genera te all possible reports, which are need by Consulate.

using using using using using using using using using using using using using

System; System.Collections; System.Configuration; System.Data; System.Linq; System.Web; System.Web.Security; System.Web.UI; System.Web.UI.HtmlControls; System.Web.UI.WebControls; System.Web.UI.WebControls.WebParts; System.Xml.Linq; System.Data.SqlClient;

public partial class getdates : System.Web.UI.Page { SqlConnection sqlCon = new SqlConnection(ConfigurationManager.ConnectionStrings[ "con"].ToString()); protected void Page_Load(object sender, EventArgs e) { getdates1(); approval(); Label4.Text=Session["username"].ToString(); } public void approval() { sqlCon.Open(); SqlCommand sqlCmd1 = new SqlCommand("select * from userreg where status='Approve d' and username='" + Session["username"].ToString() + "'", sqlCon); SqlDataReader sqlDr1 = sqlCmd1.ExecuteReader(); if (sqlDr1.Read()) { Label5.Text = sqlDr1[0].ToString(); } else { Panel1.Visible = false;

Label7.Visible = true; Label7.Text = "Admin as not approved"; } sqlCon.Close(); } public void getdates1() { sqlCon.Open(); SqlCommand sqlCmd = new SqlCommand("select distinct(interviewdates) from dates", sqlCon); SqlDataReader sqlDr = sqlCmd.ExecuteReader(); while (sqlDr.Read()) { DropDownList1.Items.Add(sqlDr[0].ToString()); } sqlCon.Close(); } protected void btnPost_Click(object sender, EventArgs e) { sqlCon.Open(); SqlCommand sqlCmd = new SqlCommand("insert into interviewdates values('" + Label 5.Text + "','" + Label4.Text + "','" + DropDownList1.SelectedItem.Text + "')", s qlCon); SqlDataReader sqlDr = sqlCmd.ExecuteReader(); sqlCon.Close(); btnPost.Text = "Add Successfully"; } protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { sqlCon.Open(); SqlCommand sqlCmd = new SqlCommand("select * from interviewdates where date='" + DropDownList1.SelectedItem.Text + "'", sqlCon); SqlDataReader sqlDr = sqlCmd.ExecuteReader(); if (sqlDr.Read()) { Label6.Visible = true; Label6.Text = "Please select another date"; DropDownList1.Text = ""; } sqlCon.Close(); } } It is a Client Server Project, Admin probably HR Manager can be able to create m any no of users and the users are called as HRExecutive. HR Manager will describ e the utilities accessed by an HRExecutive. Conclusion The Visa Processing Information System is a web-based application for tracking t he visa transactions in a visa processing company which provide customized solut ions to meet company/customer needs. This application software has been computed successfully and was also tested suc cessfully by taking test cases . It is user friendly, and has required options, whi ch can be utilized by the user to perform the desired operations. The software is developed using Java as front end and MySQL as back end in Windows environment. The goals that are achieved by the software are:

Instant access. Improved productivity. Optimum utilization of resources. Efficient management of records. Simplification of the operations. Less processing time and getting required information. User friendly. Portable and flexible for further enhancement.

Das könnte Ihnen auch gefallen