Six Weeks Summer Training in Core JAVA in Kharar-Birth Certificate Registration FormSix Weeks Summer Training in Core JAVA in Kharar-Birth Certificate Registration Form
Six Weeks Summer Training in Core JAVA in Kharar-Birth Certificate Registration Form
Six Weeks Summer Training in Core JAVA in Kharar-Birth Certificate Registration Form
Six Weeks Summer Training in Core JAVA in Kharar-Birth Certificate Registration Form

Birth Certificate Registration Form - Six Weeks Summer Training in Core JAVA in Kharar

Following coding has been done by Dupinder Deep Kaur, 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 Dupinder Deep Kaur

Dupinder Deep KaurHer areas of interest are .NET Development for Desktop Apps, C++, PHP CMS Systems, Web Development in ASP.NET, etc., She likes net surffing,reading books, playing badminton. And this what she has to say about herself: I am Dupinder Deep Kaur. I have done Masters in Computer Application from Chandigarh Group of Colleges,Landran,Mohali.Before going through this training i felt, i can never do programming, but now i am very much sure about .NET programming ethics.This training develop my interest in programming. Now,I would like to develop my programming skills more.. She has been trained at Hoven where she learnt to write serious, professional level code.

Synopsis

This module is consist of making record of birth. It include person's name, date of birth and the city of birth.In this form we use custom validator to validate the calander dates. One more thing is also used in this module i.e validationSummary, to validate the whole data entered into the form. A function is called named DataSet to fetch the names that are stored in the database to show in the dropdown list of cities.Then their is page load which contains the UnobtrusiveValidationMode and data of cities.calshortcode is taken as primary key.The click on Save is used to save the data entered into the database table related to the birth.

Language

C# with Desktop

Database

Microsoft SQL Server

IDE

Microsoft Visual Web Developer Express

Video on this Code

Framework Classes

TextBox,RequiredFieldValidator, DropDownList,LinkButton, Label,Calendar, CustomValidator, ValidationSummary, birthcertificate, Page,EventArgs, DataSet

Code Sample

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;

namespace BirthCertificate
{
    public partial class birthcertificate : System.Web.UI.Page
    {
        private DataSet GetDeveloper()
        {
            using (SqlConnection con = new SqlConnection(CConstants.ConnString))
            {
                con.Open();
                using (SqlDataAdapter da = new SqlDataAdapter("SELECT calCitiesNames, calShortCode FROM tblCities ", con))
                {
                    DataSet ds = new DataSet();
                    da.Fill(ds);
                    return ds;
                }
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            UnobtrusiveValidationMode = UnobtrusiveValidationMode.None;

            if (!IsPostBack)
            {
                
                DataSet ds = GetDeveloper();
                ddlCities.DataSource = ds;
                ddlCities.DataTextField = "calCitiesNames";
                ddlCities.DataValueField = "calShortCode";
                ddlCities.DataBind();
            }

        }

        protected void cv_ServerValidate(object source, ServerValidateEventArgs args)
        {
            args.IsValid = calBirthDate.SelectedDate > DateTime.Now;
        }

        protected void lnksave_Click(object sender, EventArgs e)
        {
            lblMessage.Text = "";
            if (Page.IsValid)
            {
                String strINSERTQuery = String.Format("INSERT INTO tblcertificate (calName, calBirthDate, calCities) " + " VALUES ('{0}', '{1:dd-MMM-yyyy}', '{2}')",
                    txtName.Text, calBirthDate.SelectedDate, ddlCities.SelectedValue);
                using (SqlConnection con = new SqlConnection(CConstants.ConnString))
                {
                    con.Open();
                    using (SqlCommand cmd = con.CreateCommand())
                    {
                        cmd.CommandText = strINSERTQuery;
                        try
                        {
                            cmd.ExecuteNonQuery();
                            lblMessage.Text = "Saved !";
                        }
                        catch (System.Exception ex)
                        {
                            lblMessage.Text = "Failed: " + ex.Message;
                            return;
                        }
                    }
                }
            }
        }
    }
}

User Reviews

Six Weeks Summer Training in Core JAVA in Kharar-Birth Certificate Registration Form Reviewed by Aditya Agrawal on. Cool Industrial Training. Rating: 4.96. The programming experience in Hoven I would like to say it was altogether a good experience, I have learnt a lot and planning to play a game in the world of ASP.NET
Aditya Agrawal,
Mobile App Developer

Useful Links

Six Month Industrial Training - Saving Time | Six Month Industrial Training - Syllabus | Six Month Industrial Training - Types | Six Month Industrial Training in DOTNET in Chandigarh | Six Month Industrial Training in JAVA in Chandigarh | Free Six Month Industrial Training in Chandigarh | Six Month Industrial Training in Chandigarh | .NET Training in Chandigarh | Companies Providing 6 Months Industrial Training in Chandigarh | Training for 6 Months in Chandigarh | Java Company in Chandigarh | Best Institute for Java in Chandigarh | Java Training in Chandigarh | Industrial Training in JAVA in Chandigarh | Industrial Training in Android in Chandigarh | PHP Training in Chandigarh | Six Month Industrial Training in PHP in Chandigarh | Six Months Industrial Training in PHP in Chandigarh | Industrial Training in PHP | Best PHP Training in Chandigarh | PHP Training Chandigarh | PHP Training in Chandigarh Mohali | Industrial Training in Chandigarh for 6 Months | Industrial Training in Chandigarh for Six Months | Industrial Training in Chandigarh for Six Months, Six Weeks | Industrial Training | Industrial Training in Chandigarh in MNCs | Summer Training Chandigarh | 6 Months Industrial Training in Chandigarh for Free | 6 Weeks Industrial Training in Chandigarh | 6 Month Industrial Training in Chandigarh | Industrial Training in Chandigarh IT Park | Industrial Training in Chandigarh | Free Industrial Training for MCA in Chandigarh | Six Week C++ Training by Professionals in Kharar | Hoven's Youtube Channel
Average Attendee Evaluation*
5 Stars:
 
72%
4 Stars:
 
26%
3 Stars:
 
2%
2 Stars:
 
0%
1 Star:
 
0%

I am Hoven Trained

Six Weeks Summer Training in Core JAVA in Kharar-Birth Certificate Registration FormHoven's trainers are experts in the fields in which they teach - you benefit from their extensive, real world knowledge and expertise. The trainers are knowledgeable. They know the hurdles we face and our mind-set, so they know in advance the approaches we are likely to take and what mistakes we are likely to make. Hoven is indispensible for a fresher.
Sham Sunder
.NET Reporter
*Last one year
Hoven's Video Tutorials
Using NetBeans with MySQL

>> More Video Tutorials by Hoven

Find us on Google+