Next .NET Training is Starting from Feb 27, 2013, Book your Seat, Call Now! 9988011975. * Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next PHP Training is Starting from Mar 2, 2013, Book your Seat, Call Now! 9988011975. * Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next C/C++ Training is Starting from Mar 7, 2013, Book your Seat, Call Now! 9988011975.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next Core JAVA Course is Starting from Mar 10, 2013, Book your Seat, Call Now! 9988011975.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next Android Course is Starting from Mar 12, 2013, Book your Seat, Call Now! 9988011975.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
Next Advanced JAVA Course is Starting from Mar 15, 2013, Book your Seat, Call Now! 9988011975.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
All Trainings are Live Project Based. Video Lectures + SyBooks are provided with each Course.* Corporate Trainings * Six Month/Six Week Industrial Training for Students
Best Institute Java Chandigarh | Best Institute PHP in Chandigarh | Best Institute .NET in Chandigarh
Android Training with Live Projects in Kharar-Government College Placement Form
Government College Placement Form - Android Training with Live Projects in Kharar
Following coding has been done by Rajni, who has received training from our company. We are very particular about minute things like naming conventions, proper releasing of heap allocated handles and memory, and also about the use of OOPS programming constructs like enums, const, static qualifiers. Our trainees exhibit all these features in their code. A high quality code always keeps a developer ahead of others. We can cite hundreds of instances where students trained by us have received appreciation letters from their employers. This is possible because of the overall development of a trainee not as a coder but also as a skilled organiser. You too can join us and benefit from our training methodology.
About Rajni
Her areas of interest are .NET Development for Desktop Apps, C++, Database Administration, PHP Scripting, Software Training, SQL Server Database, Web Designing, Web Development in ASP.NET, etc., She likes Programming , Drawing, . And this what she has to say about herself: Hey ! This is Rajni Bajaj from Mohali .I am pursuing my B.TECH in CSE from Rayat Institute of Engineering and Information Technology,Railmajra. . She has been trained at Hoven where she learnt to write serious, professional level code.
My Code is for creating a registration form which can be used for storing the data about the candidates who are registering themselves for the placement. The form consists of the name of candidate, date on which he/she registered himself/herself and his/her qualification. A database is maintained at the back end which is used to maintain the record of the students registered for placement.Also, their qualification is stored along with their data.
Language
C# with Desktop
Database
Microsoft SQL Server
IDE
Microsoft Visual Web Developer Express
Video on this Code
Framework Classes
DataSet, SqlConnection, SqlDataAdapter, SqlCommand, Page, RequiredFieldValidator, TextBox, Calender, DropDownList, CustomValidator, ValidationSummary. Namespaces used are System.Web, System,Web,UI, System.Data.SqlClient, System.Web.UI.WebControls
Code Sample
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Data.SqlClient;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace RegistrationForm
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DataSet ds = GetQualification();
ddlQualification.DataSource = ds;
ddlQualification.DataValueField = "qualification";
ddlQualification.DataBind();
}
}
private DataSet GetQualification()
{
using (SqlConnection con = new SqlConnection(CRegistration.ConnString))
{
con.Open();
using (SqlDataAdapter da = new SqlDataAdapter(
"SELECT qualification FROM tblQualification " +
" WHERE qualification <> 'MBA'", con))
{
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
}
}
protected void cvDateOfRegistration_ServerValidate(object source, ServerValidateEventArgs args)
{
args.IsValid = calDateOfRegistration.SelectedDate > DateTime.Now;
}
protected void lnkSubmit_Click(object sender, EventArgs e)
{
lblMessage.Text = "";
if (Page.IsValid)
{
String strINSERTQuery = String.Format(
" INSERT INTO tblRegistration (candidateName,dateOfRegistration,qualification) " +
" VALUES('{0}','{1:dd-MMM-yyyy}','{2}')",
txtCandidateName.Text,
calDateOfRegistration.SelectedDate,
ddlQualification.SelectedValue);
using (SqlConnection con = new SqlConnection(CRegistration.ConnString))
{
con.Open();
using (SqlCommand cmd = con.CreateCommand())
{
cmd.CommandText = strINSERTQuery;
try
{
cmd.ExecuteNonQuery();
lblMessage.Text = "Data Saved !";
}
catch (System.Exception ex)
{
lblMessage.Text = "Registration Failed:" + ex.Message;
return;
}
}
}
}
}
}
}
User Reviews
Android Training with Live Projects in Kharar-Government College Placement Form Reviewed by Gaurav Minocha on. Strongly Recommended for Advanced JAVA, PHP WordPress, C#.NET. Rating: 4.92. I would like to say that this is the best institute for C/C++ training. I have done many projects in both and can tell you that it not only helped me in understanding core concepts but also gave me an indepth view of the technology to enhance my skills and to gain expertise. Later, I joined Hoven again for .NET classes to raise my bar in technology and to boost up my career.
Hoven helped me knowing that I can do programming and when I myself knew it I could tell it confidently to the companies which came for placements. And yes I got good offers and all the credit goes to Hoven only. The way they teach is the best way as they keep updating their teaching skills by understanding current demand of the industry and the current knowledge status of every individual joining Hoven.