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

Visa Processing a .

Net Project
November 9, 2011 by Projects Helper

Visa process project is developed


using .Net this project is useful for computer science final year students who
are interested in developing web based application. The 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 employees for their overseas clients. Our project is used to process their
visa and 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
generate all possible reports, which are need by Consulate.

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;

using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using 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='Approved'
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('" + Label5.Text + "','" + Label4.Text + "','" + DropDownList1.SelectedItem.Text + "')"
, sqlCon);
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


many no of users and the users are called as HRExecutive. HR Manager will
describe the utilities accessed by an HRExecutive.
Conclusion
The Visa Processing Information System is a web-based application for
tracking the visa transactions in a visa processing company which provide
customized solutions to meet company/customer needs.
This application software has been computed successfully and was also tested
successfully by taking test cases. It is user friendly, and has required options,
which 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.
download Project Report and paper presentation and project code on Visa

Processing A .Net Project.

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