Exemplo n.º 1
0
    protected void ButtonAdd_Click(object sender, EventArgs e)
    {
        DataView dv = SqlDataSourceWebsiteKeys.Select(DataSourceSelectArguments.Empty) as DataView;

        if (dv != null)
        {
            bool exists = false;
            for (int i = 0; i < dv.Table.Rows.Count; i++)
            {
                if (url.Text.ToLower() == dv.Table.Rows[i]["Website_Url"].ToString().ToLower() ||
                    WebsiteName.Text.ToLower() == dv.Table.Rows[i]["Website"].ToString().ToLower())
                {
                    exists = true;
                    break;
                }
            }
            if (exists)
            {
                msg.Text     = "key already generated for the website";
                msg.CssClass = "text-danger";
            }
            else
            {
                msg.Text             = "";
                HiddenFieldKey.Value = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(Session["did"].ToString() + DateTime.Now.ToFileTime().ToString(), "MD5");
                SqlDataSourceWebsiteKeys.Insert();
                GridView1.DataBind();
                msg.Text     = "key generated successfully";
                msg.CssClass = "text-success";
            }
            ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "", "$('#myModal').modal('hide');$('body').removeClass('modal-open');$('.modal-backdrop').remove();$('#myModal').modal('show');", true);
        }
    }
Exemplo n.º 2
0
 protected void Button1_Command(object sender, CommandEventArgs e)
 {
     HiddenFieldKeyId.Value = e.CommandArgument.ToString();
     SqlDataSourceWebsiteKeys.Delete();
     GridView1.DataBind();
 }