Ejemplo n.º 1
0
        protected void Button2_Click(object sender, EventArgs e)
        {
            String opField = operationField.Items[operationField.SelectedIndex].Value;

            System.Web.UI.HtmlControls.HtmlTextArea textArea = (System.Web.UI.HtmlControls.HtmlTextArea)(form1.FindControl("description"));
            String description = textArea.Value;

            System.Web.UI.HtmlControls.HtmlTextArea textArea2 = (System.Web.UI.HtmlControls.HtmlTextArea)(form1.FindControl("skills"));
            String skills = textArea2.Value;

            System.Web.UI.HtmlControls.HtmlTextArea textArea3 = (System.Web.UI.HtmlControls.HtmlTextArea)(form1.FindControl("education"));
            String education  = textArea3.Value;
            int    user       = Convert.ToInt32(Session["id"]);
            String type       = jobtype.Items[jobtype.SelectedIndex].Value;
            String gendertype = gender.Items[gender.SelectedIndex].Value;

            if (description.Equals("") || skills.Equals("") || education.Equals("") || jobtitle.Text.Equals(""))
            {
                errors.Text = "Ju lutem plotesoni te gjitha fushat!";
            }
            else
            {
                CompanyDB.addNotifications(opField, Convert.ToInt32(type), experience.Text, skills, gendertype, education, description, jobtitle.Text, user);

                Response.Redirect("mainPageCompany.aspx");
            }
        }
Ejemplo n.º 2
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            System.Web.UI.HtmlControls.HtmlTextArea textArea = (System.Web.UI.HtmlControls.HtmlTextArea)(form1.FindControl("description"));
            String textarea = textArea.Value;
            int    user     = Convert.ToInt32(Session["id"]);
            String opfield  = operationField.Items[operationField.SelectedIndex].Value;

            if (name.Text.Equals("") || contactnumber.Text.Equals("") || contactemail.Text.Equals("") || textarea.Equals("") || state.Text.Equals("") || city.Text.Equals("") || street.Text.Equals(""))
            {
                Label8.Text = "Ju lutem plotesoni te gjitha fushat!";
            }
            else
            {
                CompanyDB.addCompanyInfo(opfield, contactnumber.Text, contactemail.Text, textarea, user, name.Text);
                UsersDB.addAddress(state.Text, city.Text, street.Text, user);
                //UsersDB.addSocialMedia(company.Text, facebook.Text, twitter.Text, linkedin.Text, instagram.Text,user);
                Response.Redirect("companyProfile.aspx");
            }
        }