ABSTRACT:

The proposed web based Search_Engine management system aimed at allowing the businesses to market their services and attract new customers by providing attractive discounts to avail the services with. The discounts would be purchased as Search_Engines through the website which can then be redeemed by the customer at the merchant location. Earlier the businesses had to rely on their own effort to market their services and on print/social media to distribute the Search_Engines. The Search_Engines were being distributed for free, did not generate any revenue on their own and as such the merchants could not provide attractive deals which would generate interest of the public. The customers too are on the lookout for Search_Engines which provided deep discounts on the services they wish to avail. They will not mind paying a small fee for the collecting these Search_Engines.


PROBLEM DEFINITION:

Online Search_Engine Generation System project is aimed to developed an online Search_Engine managing information. Every organization has different Search_Engine management needs; therefore, we design exclusive Search_Engine Generation Systems that are adapted to our managerial requirements. This is designed to assist in strategic planning and will help you ensure that in your organization is equipped with the right level of human resources for your future goals. Also, for those busy Search_Engine members who are always on the go, our systems come with remote access features, which will allow you to manage your workforce anytime, at all times. Which means the allocation of time periods for particular Search_Engine is maintained by this application.
Discount Search_Engines have long been distributed by manufacturer to market their product and retail store to attract customer to their particular store in order to buy their product.
For decades advertisers have issued or published printed Search_Engine which can be taken to redemption center for some value or as a discount towards the purchase of some item. With this method has proved to be effective, there are many processes involved for the user, the redemption Centre or retail store as well as advertise themselves.
First, a user must purchase or otherwise obtain a publication for Search_Engines which would be useful or meaningful to user. The user cut out such Search_Engine being various sizes and shapes being of different types of products.
The user must separate the Search_Engine into product categories and brand the Search_Engine together into the best way possible upon arrival at a particular manufacturer or retail store. Therefore in order to redeemed some Search_Engine to find it necessary to search out the desirable item in a number of some , the consumer must select the Search_Engine for which the product are purchased from a number of Search_Engine the user brought to the store initially.
Moreover, the current system of clearing Search_Engine which are distributed and redeemed Search_Engine to a clearing house, and in turn returns it to the manufacturer or retailer.

FEASIBILITY ANALYSIS

The feasibility of the project is analyzed in this phase and business proposal is put forth with a very general plan for the project and some cost estimates. During system analysis the feasibility study of the proposed system is to be carried out. This is to ensure that the proposed system is not a burden to the company. For feasibility analysis, some understanding of the major requirements for the system is essential.
There are three main types of feasibility. They are as follows:

  • TECHNICAL FEASIBILITY

  • ECONOMIC FEASIBILITY

  • OPERATIONAL FEASIBILITY



ARCHITECTURE:




SCREENSHOT:











SAMPLE CODE:

Loginpage.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Search_Engine_Management
{
    public partial class LoginPage : Form
    {
        public LoginPage()
        {
            InitializeComponent();
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Search_Engine_Details r = new Search_Engine_Details();
            r.Show();
        }

        private void button1_Click(object sender, EventArgs e)
        {

            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select * from dbo.loginTable where username='" + txt_UserName.Text + "' and  password='" + txt_Password.Text + "'", con);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);

            if (ds.Tables[0].Rows.Count > 0)
            {
                AdminSectionPage st = new AdminSectionPage();
                st.Show();
                this.Hide();
               
            }
            else
            {
                MessageBox.Show("please enter correct username and password");
            }
            con.Close();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
         

        }

        

        private void button3_Click(object sender, EventArgs e)
        {
            txt_UserName.Text = " ";
            txt_Password.Text = " ";

        }
    }
}

AdminSectionPage.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Scp_Search_Engine_Management
{
    public partial class AdminSectionPage : Form
    {
        public AdminSectionPage()
        {
            InitializeComponent();
        }

        private void btn_Submit_Click(object sender, EventArgs e)
        {
            Search_Engine_Details st = new Search_Engine_Details();
            st.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Search_EnginevsSubjectAllocation Search_Engine = new Search_EnginevsSubjectAllocation();
            Search_Engine.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            Search_EnginevsSearch_Engine stt = new Search_EnginevsSearch_Engine();
            stt.Show();
            this.Hide();

        }

        private void button3_Click(object sender, EventArgs e)
        {
            finalReallocation final = new finalReallocation();
            final.Show();
            this.Hide();
        }
    }
}

finalReallocation.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using acep_avas_kas_Evaluator;

namespace Scp_Search_Engine_Management
{
    public partial class finalReallocation : Form
    {
        public finalReallocation()
        {
            InitializeComponent();
        }

        acep_avas_kas_102234 acep = new acep_avas_kas_102234();

        private void finalReallocation_Load(object sender, EventArgs e)
        {
          


            combo.Items.Clear();
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("select Search_Engine_Name from Search_Engine_Details", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            foreach (DataRow dr in ds1.Tables[0].Rows)
            {

                combo.Items.Add(dr[0].ToString());
            }
            combo.SelectedIndex = 0; con1.Close();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            comboBox2.Items.Clear();
            
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("select Class_Period  from  dbo.Search_EnginevsTimeTable where Name = '" + combo .SelectedItem.ToString() + "' and DayOrder='" + txt_Day.Text + "' and Degree='BCA' AND Student_Year='"+ comboBox3.SelectedItem.ToString() +   "'", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            foreach (DataRow dr in ds1.Tables[0].Rows)
            {

                comboBox2.Items.Add(dr[0].ToString());
            }

           
            // cmb_Search_EngineID.SelectedIndex = 0; 
            ///////////////////////////////

            con1.Close();
            ///////////////////////////////////


            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("abc", con);
            cmd.CommandType = CommandType.StoredProcedure;

            SqlParameter param1 = new SqlParameter("@studentyear", SqlDbType.VarChar);
            cmd.Parameters.Add(param1);
            param1.Value = comboBox3.SelectedItem.ToString();

            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);

            if (ds.Tables[0].Rows.Count > 0)
            {
                dataGridView1.DataSource = ds.Tables[0];
            }
            else
            {
                MessageBox.Show("No Data to show");
            }
            con.Close();





        }

        private void combo_SelectedIndexChanged(object sender, EventArgs e)
        {
            cmb_Search_EngineID.Items.Clear();

            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("select Search_EngineID from dbo.Search_EngineTable where Search_Enginename='" + combo .SelectedItem.ToString() + "'", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            foreach (DataRow dr in ds1.Tables[0].Rows)
            {

                cmb_Search_EngineID.Items.Add(dr[0].ToString());
            }
           // cmb_Search_EngineID.SelectedIndex = 0; 
            
            con1.Close();



        }

        private void cmb_Search_EngineID_SelectedIndexChanged(object sender, EventArgs e)
        {
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("SELECT dateval1, [day]  FROM [Scp_Search_Engine_Management].[dbo].[Search_EngineTable] where Search_EngineID='" + cmb_Search_EngineID.SelectedItem.ToString() + "'", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            
            txt_Date.Text = ds1.Tables[0].Rows[0][0].ToString();
            txt_Day.Text = ds1.Tables[0].Rows[0][1].ToString();
            /////////////////////////////////////
            comboBox3.Items.Clear();
            SqlCommand cmd11 = new SqlCommand("select distinct Student_Year from dbo.Search_EnginevsTimeTable   where Name = '" + combo.SelectedItem.ToString() + "' and DayOrder='" + txt_Day.Text + "' and Degree='BCA' ", con1);
            SqlDataAdapter sda11 = new SqlDataAdapter(cmd11);
            DataSet ds11 = new DataSet();
            sda11.Fill(ds11);
            foreach (DataRow dr in ds11.Tables[0].Rows)
            {

                comboBox3.Items.Add(dr[0].ToString());
            }

            con1.Close();
        }

        private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
        {
            comboBox1.Items.Clear();
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("select distinct name   from [Scp_Search_Engine_Management].[dbo].[Search_EnginevsTimeTable] where name not in  ( SELECT name       FROM [Scp_Search_Engine_Management].[dbo].[Search_EnginevsTimeTable]  where DayOrder='" + txt_Day .Text  + "'  and  Class_Period = '" + comboBox2.SelectedItem.ToString() + "')", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            foreach (DataRow dr in ds1.Tables[0].Rows)
            {

                comboBox1.Items.Add(dr[0].ToString());
            }
            // cmb_Search_EngineID.SelectedIndex = 0; 

            con1.Close();

        }

        private void button2_Click(object sender, EventArgs e)
        {

             
            SqlConnection con1 = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con1.Open();
            SqlCommand cmd1 = new SqlCommand("drop table temp_student; select * into temp_student from (select T.* from   ( SELECT DayOrder,I =  (SELECT Name FROM dbo.Search_EnginevsTimeTable WHERE class_period = 'I' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder),II =  (SELECT Name FROM dbo.Search_EnginevsTimeTable WHERE class_period = 'II' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder),III =  (SELECT Name FROM dbo.Search_EnginevsTimeTable WHERE class_period = 'III' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder),IV =  (SELECT Name FROM dbo.Search_EnginevsTimeTable WHERE class_period = 'IV' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder),V =  (SELECT Name FROM dbo.Search_EnginevsTimeTable WHERE class_period = 'V' and Student_Year='" + comboBox3.SelectedItem.ToString() + "' and  Degree='BCA' and "+ acep._GeneTic_Info() +" and DayOrder=m.DayOrder) FROM dbo.Search_EnginevsTimeTable m GROUP BY DayOrder )t inner join [days] d on t.DayOrder = d.[days]   )t ; update [Scp_Search_Engine_Management].[dbo].[temp_student]   set " + comboBox2.SelectedItem.ToString() + "='" + comboBox1.SelectedItem.ToString() + "' where DayOrder='" + txt_Day.Text + "' ; select t.* from temp_student t inner join [days] d on t.DayOrder = d.[days] order by d.id;", con1);
            SqlDataAdapter sda1 = new SqlDataAdapter(cmd1);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1);
            dataGridView2.DataSource = ds1.Tables[0];
            // cmb_Search_EngineID.SelectedIndex = 0; 

            con1.Close();

           

        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
        
        }
    }
}


Register.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Search_Engine_Management
{
    public partial class Register : Form
    {
        public Register()
        {
            InitializeComponent();
        }

        private void Register_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");


        }
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            LoginPage f = new LoginPage();
            f.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
           

        } 
        
     
        private void btn_Submit_Click(object sender, EventArgs e)
        {
            SqlConnection conn = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            conn.Open();

            string myQuery = "insert into loginTable values('" + txt_Name.Text + "' , '" + txt_UserName.Text + "' , '" + txt_Password.Text + "' , '" + txt_Mobile.Text + "' , '" + cmb_secQuestion.SelectedItem.ToString() + "' , '" + txt_SecAnswer.Text + "')";
            SqlCommand cmd = new SqlCommand(myQuery, conn);
            cmd.CommandType = CommandType.Text;
            int i = cmd.ExecuteNonQuery();
            conn.Close();

            if (i > 0)
            {
                MessageBox.Show("User Added Successfully");

            }
            else

                MessageBox.Show("Issue in amending the user data");

        }

        private void btn_Cancel_Click(object sender, EventArgs e)
        {
            AdminSectionPage admin = new AdminSectionPage();
            admin.Show();
            this.Hide();

        }

        private void label12_Click(object sender, EventArgs e)
        {

        }
    }
}
 

Search_Engine_Details.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Search_Engine_Management
{
    public partial class Search_Engine_Details : Form
    {
        public Search_Engine_Details()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con.Open();
          
            SqlCommand cmd = new SqlCommand("insert into Search_Engine_Details values('" + txt_Search_EngineName.Text + "','" + dateTimePicker1.Value + "','" + txt_Email.Text + "','" + txt_SubjectSpecilist.Text + "','" + txt_Password.Text + "','" + txt_Address.Text + "','" + txt_ContactNo.Text + "','" + txt_AlternativeNo.Text + "','" + txt_BloodGroup.Text + "')", con);
            int x = cmd.ExecuteNonQuery();
            if (x > 0)
            {
                MessageBox.Show("Search_Engine Details added successsfully");
            }
            else
            {
                MessageBox.Show(" Issue in adding Search_Engine Details");


            }
            con.Close();
        }

        private void Search_Engine_Details_Load(object sender, EventArgs e)
        {

        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Search_EnginevsSubjectAllocation s = new Search_EnginevsSubjectAllocation();
            s.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            AdminSectionPage admin = new AdminSectionPage();
            admin.Show();
            this.Hide();
        }
    }
}



Search_EnginevsSearch_Engine.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Search_Engine_Management
{
    public partial class Search_EnginevsSearch_Engine : Form
    {
        public Search_EnginevsSearch_Engine()
        {
            InitializeComponent();
           
        }

        private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
        {
            String datepic = dp_Date.Text;
            
        }

        private void Search_EnginevsSearch_Engine_Load(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select id from Search_Engine_Details", con);
            SqlDataAdapter sda = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            sda.Fill(ds);
            foreach (DataRow dr in ds.Tables[0].Rows)
            {

                cmb_ID.Items.Add(dr[0].ToString());
            }
            con.Close();
        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
 
               DateTime dt = dp_Date.Value;
               DayOfWeek dow = dt.DayOfWeek;  
               string str = dow.ToString();
               Random ran = new Random();
               int val = ran.Next(1, 5000);

               txt_Day.Text = str.ToUpper();
               // MessageBox.Show(str);
               SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
               con.Open();

               SqlCommand cmd = new SqlCommand("insert into dbo.Search_EngineTable values('" + cmb_ID.SelectedItem.ToString() + "','" + cmb_Name.SelectedItem.ToString() + "','" + dp_Date.Value.ToString() + "','" + txt_Day.Text + "','" + txt_ReasonSearch_Engine.Text + "'," + val.ToString() + ")", con);
               int x = cmd.ExecuteNonQuery();
               if (x > 0)
               {
                   MessageBox.Show("Search_Engine Details added successsfully");
               }
               else
               {
                   MessageBox.Show(" Issue in adding Search_Engine Details");


               }
               con.Close();
        }

        private void cmb_ID_SelectedIndexChanged(object sender, EventArgs e)
        {

            cmb_Name.Items.Clear();
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select Search_Engine_Name from Search_Engine_Details where id=" + cmb_ID.SelectedItem.ToString(), con);
            SqlDataAdapter sda = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            sda.Fill(ds);
            foreach (DataRow dr in ds.Tables[0].Rows)
            {

                cmb_Name.Items.Add(dr[0].ToString());
            }
            cmb_Name.SelectedIndex = 0;
            con.Close();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            AdminSectionPage admin = new AdminSectionPage();
            admin.Show();
            this.Hide();

        }

        private void label6_Click(object sender, EventArgs e)
        {

        }

        private void label2_Click(object sender, EventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void label4_Click(object sender, EventArgs e)
        {

        }

        private void label5_Click(object sender, EventArgs e)
        {

        }
    }
}


Search_EnginevsSubjectAllocation.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Scp_Search_Engine_Management
{
    public partial class Search_EnginevsSubjectAllocation : Form
    {
        public Search_EnginevsSubjectAllocation()
        {
            InitializeComponent();
          
        }

        private void label7_Click(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("insert into [Search_EnginevsTimeTable] values('" + cmb_ID.Text + "','" + cmb_Name.Text + "','" + cmb_Degree.Text + "','" + cmb_Stu_Year.Text + "','" + cmb_Class_Periods.Text + "','" + cmb_SUbjects.Text + "','" + cmb_DayOrder.Text + "')", con);
           int x = cmd.ExecuteNonQuery();
           if (x > 0)
            {
                MessageBox.Show("Record Added");
            }
            else
            {
                MessageBox.Show("Record not Added");


            } con.Close();
       }

        private void cmb_Name_SelectedIndexChanged(object sender, EventArgs e)
        {
            
        }

        private void cmb_ID_SelectedIndexChanged(object sender, EventArgs e)
        {
            
            
            cmb_Name.Items.Clear();
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select Search_Engine_Name from Search_Engine_Details where id=" + cmb_ID.SelectedItem.ToString(), con);
            SqlDataAdapter sda = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            sda.Fill(ds);
            foreach (DataRow dr in ds.Tables[0].Rows)
            {

                cmb_Name.Items.Add(dr[0].ToString());
            }
            cmb_Name.SelectedIndex = 0; con.Close();
        }

        private void Search_EnginevsAttendance_Load(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("select id from Search_Engine_Details", con);
            SqlDataAdapter sda = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            sda.Fill(ds);
            foreach (DataRow dr in ds.Tables[0].Rows)
            {

                cmb_ID.Items.Add(dr[0].ToString());
            } con.Close();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            AdminSectionPage admin = new AdminSectionPage();
            admin.Show();
            this.Hide();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            SqlConnection con = new SqlConnection(@"Data Source=COMPAG-PC\SUMATHI;Integrated security=true;Initial Catalog=Scp_Search_Engine_Management");
            con.Open();
            SqlCommand cmd = new SqlCommand("abc", con);
            cmd.CommandType = CommandType.StoredProcedure;


            SqlParameter param1 = new SqlParameter("@studentyear", SqlDbType.VarChar);
            cmd.Parameters.Add(param1);
            param1.Value = cmb_Stu_Year.SelectedItem.ToString();



            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);

            if (ds.Tables[0].Rows.Count > 0)
            {
                dataGridView1.DataSource = ds.Tables[0];
            }
            else
            {
                MessageBox.Show("No Data to show");
            }
            con.Close();
        }
    }
}



MODULES SPECIFICATION:

A module is a part of a program. Programs are composed of one or more independently developed modules that are not combined until the program is linked. A single module can contain one or several routines. The project contains the following main modules.

List of Modules:

• ADMIN LOGIN MODULE
• NEW USER MODULE
• ADD COMPANY MODULE
• SEARCH COMPANY MODULE
• DELETE COMPANY MODULE
• UPDATE COMPANY MODULE

Admin Login Module:

This module lists out the details of the admin. The entire website is handled by the admin only and the admin has a separate username and password to access the website. Only admin has the control to view all the reports generated in the website.


New User Module:

Here, we specify the details of the user after include the details like, username, password, email id of the user, date of birth, location etc.
• Name: Name of the person
• Email id: Email id of the user
• Password: It is a user's choice.
• DOB: It must be in dd/mm/yyyy format.
• Location: Where the user is present
• Mobile no: Contact no. of the user

Add Company Module:

Here, we specify the details of the company and include the details like, company name, type, company location, time since when company is existing etc.
Name: Name of the company
Type: Type of the company
Company location: Where the company is located
Time: Time since when company was created

Search Company Module:

Searching within the Company module is easy. You can find a company by typing a partial name or under ‘Advanced Search’ you can define complex searches that can include Standard Fields, Custom Fields and Keyword Tags.
For searches performed frequently it is a good idea to save these search criteria so they can be quickly recalled when required.


Delete Company Module:

Only a deactivated company can be deleted. If a company is inactive, a delete link will appear. It is only control for admin.

Update Company Module:

Admin can only update the details of the company.
• Achievement: company development
• Details: company workers details
• Projects: updated projects

ISO CERTIFIED - MINI PROJECTS FOR MSC COMPUTER SCIENCE :

KaaShiv Offers, mini projects for msc computer science. mini projects for msc computer science includes Block Chain, Artificial Intelligence, Machine Learning, Python and R programming, Application Development, Web designing and Networking . This internship includes the topics related to mini projects for msc computer science 2nd year students .This company runs by,

    • 10 Years Awarded Microsoft Most Valuable Professional
    • Google Recognized Experts
    • Cisco Recognized Certified Experts
    • Microsoft Awarded Certified Experts
    • Robotics Experts
    • HCL Technologies Awarded Expert

Trainers at KaaShiv InfoTech are real-time Software / IT professionals worked in leading MNCs like,
    • CTS,
    • Wipro,
    • TCS,
    • Infosys,
    • Accenture and
    • Mindtree.

The Course curriculum for mini projects for msc computer science is carefully researched and prepared by professionals from MNC to meet the demands expected in the IT industry. After completing the mini project Training in Chennai at KaaShiv Infotech, students will be familiar with the Software development process followed in IT industry. Below are some of the insights of our mini projects program for msc computer science.

    • Real-time project development and Technology Training by Microsoft Awarded Most Valuable Professiona
    • mini projects for msc computer science students involves Full practical training
    • Hardware and software tools full support
    • Technology training
    • Placement training
    • Full documentation and report analysis
    • R & D projects
    • Industrial exposure
    • Endorsing Corporate skills

WHAT IS MINI PROJECT ?

    • The mini Projects plays a crucial role in the teaching-learning process.
    • It is also a way of identifying the ability of the student to perform an industrial project or applied research linked to the knowledge discipline.
    • A project is defined as an effort to create or modify a specific product or service.
    • Projects are temporary work efforts with a clear beginning and end.
    • mini project (or program) any undertaking, carried out individually or collaboratively and possibly involving research or design, that is carefully planned (usually by a project team) to achieve a particular aim.

WHAT ARE THE BENEFITS GAINED BY DOING MINI PROJECT :

    • mini projects if done well can add a lot of credibility to your profile.
    • And especially your mini projects building experience can help you perform well in core job placements & higher studies admission interviews.

TIPS TO SELECT GOOD MINI PROJECTS:

    • Analyze the current trends
    • Focus your mini projects on any social issue
    • Get expert’s assistance whenever possible
    • Research about the mini projects done by your seniors
    • Refer the research journals published by scholars
    • Check the feasibility of your mini projects
    • Work with organizations like Kaashiv InfoTech

WHY, MSC COMPUTER SCIENCE STUDENTS MINI PROJECTS SHOULD BE A REAL TIME MINI PROJECTS ?

    • mini projects for msc computer science students provides a real time exposure for the mini projects for msc computer science students on the latest and trending technologies. Below are some of the Top jobs in the IT Industry Job Openings ,
    • Software Developers – Good in Python, Machine Learning, Data Science and AI programming
    • BlockChain Administrators
    • IOT Specialists
    • Cyber Security
    • Web Application Developer – Web Designers
    • Information Security Analyst – Security Specialist
    • Network Engineers / Analyst
KaaShiv Infotech, msc computer science Student mini projects - programme hornes you in the above said skills / job roles from basics to Advanced.

MINI PROJECTS FOR MSC COMPUTER SCIENCE - PROGRAMME HIGHLIGHTS :

    • mini projects for msc computer science program duration: 5days/ 10days / Or Any number of days
    • Training hours: 3hrs per day
    • Software & others tools installation Guidance
    • Hardware support
    • mini projects for msc computer science Report creation / Project Report creation
    • mini projects for msc computer science students based 2 projects ( real time)
    • Mini project Certificate & Inplant Training Certificate & Industrial exposure certificate + (Achievement certificate for best performers)

ADVANTAGES OF OUR- MINI PROJECTS FOR MSC COMPUTER SCIENCE :

    • Get Real Work Experience
    • Get a Taste of Your Chosen Field
    • Start Networking
    • Helps You Choose a Speciality
    • Helps You Become More Self-Confident
    • Boosts Your CV
    • Increases Your Market Value

MINI PROJECTS FOR MSC COMPUTER SCIENCE - MATERIALS :

    • mini project for msc computer science student , includes Materials after the internship programme
    • Technological guidance and materials will be shared in entire year for the students to mold technically.
    • Our be student involves Free Projects at the end of the programme.

QUERIES OR CONTACT DETAILS :

Venkat (7667662428) and Asha (7667668009)
Email ID: kaashiv.info@gmail.com , priyanka.kaashiv@gmail.com

MINI PROJECTS FOR MSC COMPUTER SCIENCE- PROGRAMME DURATION :

1 months / 2 months / 3 months to 6 Months ( Any Number of Days - Based on student preferences)

WHO CAN ATTEND THIS MINI PROJECTS FOR MSC COMPUTER SCIENCE PROGRAMME :

Mini projects for msc computer science - Programme can be attended by the students who are looking for mini projects for msc computer science/ mini projects for msc computer science 2nd year.

MINI PROJECTS FOR MSC COMPUTER SCIENCE- PROGRAMME OUTCOME :

1. Student will be specialized in Block Chain, Artificial Intelligence, Machine Learning, Python and R programming, Application Development , Web designing and Networking concepts (Basics to Advanced)
2. Covering 45 concepts
3. Students will be getting trained in / writing 45 Programs – Will change based on the durations of the program.
4. 2 Projects and project documents will be given at the end of the program

REFERENCE YOUTUBE URL FOR MINI PROJECTS FOR MSC COMPUTER SCIENCE :

Check our Internship Training sample videos at this URL –
www.youtube.com/channel

REGISTRATION LINK FOR – MINI PROJECTS MSC COMPUTER SCIENCE :

mini projects for msc computer science - Offline - Office training
Fill our online Internship form

MINI PROJECTS FOR MSC COMPUTER SCIENCE – DEMO LINK :

Check out our Sample mini project for msc computer science Content for the training
kaashivinfotech.com/inplant-training-in-chennai-for-cse-demo

CHECK OUR PREVIOUS TESTIMONIALS FROM STUDENTS FROM DIFFERENT COUNTRIES AND DIFFERENT STATES :

www.kaashivinfotech.com/testimonials/

CHECK OUR STUDENTS FEEDBACK ON OUR - MINI PROJECTS FOR MSC COMPUTER SCIENCE:

mini projects for msc computer science- Feedback - inplant-training-feedback /
mini projects for msc computer science - Feedback - internship-feedback

CHECK OUT THE COLLEGES ATTENDED OUR FINAL YEAR PROJECT FOR MSC COMPUTER SCIENCE:

internship-and-inplant-training-attendees/

CHECK OUR SOCIAL SERVICE YOUTUBE CHANNELS :

www.youtube.com/channel
Check our Social Service youtube channels

REAL TIME PROJECT :

We ranked Top 200 technological companies in Tamil Nadu, Click here to view

MORE ON OUR, MINI PROJECTS FOR MSC COMPUTER SCIENCE:

In our, internship on mini projects for msc computer science- programme below are following different kind of programmes focused such as,
1. mini projects for msc computer science (or) paid mini projects for msc computer science,
- Kaashiv Provides an in-depth knowledge of software Platform and other relevant software technologies.
2. mini projects for msc computer science work from home – Our company provides facility for the students to learn from home as an mini projects for msc computer science based on latest technological trends.
3. mini projects for msc computer science report – Reports are also provided for the mini projects for msc computer science students in our company related 4. mini projects for msc computer science jobs – 100% Job assistance will be provided for the students to gain practical knowledge during the mini projects for msc computer science period in our company.
5. mini projects for msc computer science summer / Winter internship 2019/2020 – Summer / Winter holiday internship in mini projects will be given to the student based on the developer knowledge base.
6. mini projects for msc computer science interview questions – We provide top trending and frequently asked question for the intern students during the internship period based on software development and trending technologies.
7. mini projects for msc computer science test – Based on the students request, if you are looking for any test to validate your knowledge. we are ready to provide the same.
8. mini projects for msc computer science certificate – Industry recognized certificates will be provided for the students who perform internship in our company based .
9. mini projects for msc computer science online– Learn mini projects for msc computer science from home, our company perform internship through online too.
10. mini projects for msc computer science ppt / mini projects for msc computer science / projects report – We provide Final year projects for mba based ppts. projects and project reports as materials after the internship in our company.
11. Free mini projects for msc computer science - Our company will provide free mini projects for msc computer science the best students of kaashiv infotech.
12. Project For Diploma mini projects for msc computer science – We offer project for the diploma mini projects for msc computer science in our company.
13. mini projects for msc computer science 2nd Year – Our company offers you final year project for be the above students.


MORE PROJECTS