当前位置: 首页>>代码示例>>C#>>正文


C# EFDal.KullaniciBelirliBirRoleSahipMi方法代码示例

本文整理汇总了C#中EFDal.KullaniciBelirliBirRoleSahipMi方法的典型用法代码示例。如果您正苦于以下问题:C# EFDal.KullaniciBelirliBirRoleSahipMi方法的具体用法?C# EFDal.KullaniciBelirliBirRoleSahipMi怎么用?C# EFDal.KullaniciBelirliBirRoleSahipMi使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在EFDal的用法示例。


在下文中一共展示了EFDal.KullaniciBelirliBirRoleSahipMi方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RadComboBoxFirma_ItemsRequested

    protected void RadComboBoxFirma_ItemsRequested(object o, Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs e)
    {
        EFDal ed=new EFDal();
        bool TumBolgelerdekiCİhazlariGorebilir = ed.KullaniciBelirliBirRoleSahipMi(Context.User.Identity.Name, "TumBolgelerdekiCİhazlariGorebilir");
        //string BolgeKodu = Session["BolgeKodu"].ToString();
        //string bak = e.Text;
        if (e.Text.Length > 2)
        {
            string BolgeKodu = intBolgeKodu.ToString();
            string sqlSelectCommand = "";
            /*
            if (rdbtnlstAramaTipi.SelectedIndex == 0)//isnodan arama
                sqlSelectCommand = "SELECT [ObjectID], [isno], [adi], [birim] from [tblIsEmri] WHERE [isno] LIKE '%'+ @text + '%' ORDER BY [isno]";
            if (rdbtnlstAramaTipi.SelectedIndex == 1)//is adından arama
                sqlSelectCommand = "SELECT [ObjectID], [isno], [adi], [birim] from [tblIsEmri] WHERE [adi] LIKE '%'+ @text + '%' ORDER BY [adi]";
            if (rdbtnlstAramaTipi.SelectedIndex == 2)//Birimden arama
                sqlSelectCommand = "SELECT [ObjectID], [isno], [adi], [birim] from [tblIsEmri] WHERE [birim] LIKE '%'+ @text + '%' ORDER BY [birim]";
            */

            if (!TumBolgelerdekiCİhazlariGorebilir)
            {
                sqlSelectCommand =
                    "SELECT [FIRMAID],[MUSTNO], [FIRMAADI], [IL_ILCE],case BOLGEKODU when '1' then 'Gebze' when '2' then 'Ankara' when '3' then 'Bursa' end  as BOLGEKODU from [firma] WHERE [FIRMAADI] LIKE '%'+ @text + '%' and SILINDI=0 and BOLGEKODU=" +
                    BolgeKodu + " ORDER BY [FIRMAADI]";
            }
            else
            {
                sqlSelectCommand =
                    "SELECT [FIRMAID],[MUSTNO], [FIRMAADI], [IL_ILCE], case BOLGEKODU when '1' then 'Gebze' when '2' then 'Ankara' when '3' then 'Bursa' end  as BOLGEKODU from [firma] WHERE [FIRMAADI] LIKE '%'+ @text + '%' and SILINDI=0   ORDER BY [FIRMAADI]";
            }
            SqlDataAdapter adapter = new SqlDataAdapter(sqlSelectCommand, ConfigurationManager.ConnectionStrings["KalData"].ConnectionString);
            adapter.SelectCommand.Parameters.AddWithValue("@text", e.Text);
            DataTable dataTable = new DataTable();
            adapter.Fill(dataTable);
            //lblBulunanIsSayisi.Text = dataTable.Rows.Count.ToString();

            RadComboBoxFirma.Items.Clear();
            foreach (DataRow dataRow in dataTable.Rows)
            {
                string IlIlce = "";
                RadComboBoxItem item = new RadComboBoxItem();
                item.Text = (string)dataRow["MUSTNO"].ToString();
                item.Value = dataRow["FIRMAID"].ToString();
                string FirmaAdi = (string)dataRow["FIRMAADI"];
                string BOLGEKODU = (string)dataRow["BOLGEKODU"];
                if (dataRow["IL_ILCE"] != System.DBNull.Value)
                {
                    IlIlce = (string)dataRow["IL_ILCE"];
                }
                item.Attributes.Add("FIRMAADI", FirmaAdi);
                item.Attributes.Add("IL_ILCE", IlIlce);
                item.Attributes.Add("BOLGEKODU", BOLGEKODU);
                RadComboBoxFirma.Items.Add(item);
                item.DataBind();
            }
            Label lbl = (Label)RadComboBoxFirma.Footer.FindControl("lblBulunanKayitSayisi");
            lbl.Text = "Bulunan kayıt sayısı:" + "  " + dataTable.Rows.Count.ToString();
        }
    }
开发者ID:inancakcan,项目名称:kalibrasyon,代码行数:59,代码来源:FirmaAra.ascx.cs

示例2: grd_OnRowDataBound

    //protected void cboTheme_SelectedIndexChanged(object sender, EventArgs e)
    //{
    //    ThemesCSS.Attributes.Add("href", "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/" + cboTheme.SelectedValue + "/ui.all.css");
    //    SaveThemesCookie(cboTheme.SelectedValue);
    //    BindGrid();
    //}
    protected void grd_OnRowDataBound(object sender, GridViewRowEventArgs e)
    {
        EFDal ed =new EFDal();
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            TableCellCollection cells = e.Row.Cells;
            cells[2].Text = ed.IKBSPersonelUNdenTurkceAdiDon(Guid.Parse(cells[2].Text));//"Alan";
            cells[3].Text = ed.IKBSPersonelUNdenTurkceAdiDon(Guid.Parse(cells[3].Text));

            //Button btnSave = (Button)e.Row.Cell[6].Controls[0];
            Button btnSave = (Button) e.Row.Cells[6].Controls[0];
            if (!ed.KullaniciBelirliBirRoleSahipMi(Context.User.Identity.Name, "Mudur"))
            {
                btnSave.Enabled = true;
            }
            else
            {
                btnSave.Enabled = false;
            }
        }
    }
开发者ID:inancakcan,项目名称:kalibrasyon,代码行数:27,代码来源:Vekalet.aspx.cs

示例3: Page_Load

    protected void Page_Load(object sender, EventArgs e)
    {
        EFDal ed=new EFDal();
        bool TumBolgelerdekiCihazlariGorebilir = ed.KullaniciBelirliBirRoleSahipMi(Context.User.Identity.Name, "TumBolgelerdekiCİhazlariGorebilir");
        key = int.Parse(Request["IstId"].ToString());
        if (!IsPostBack)
        {
            UserName = Context.User.Identity.Name;
            intBolgeKodu = kal_BolgeKoduDon(UserName);
            if (key != 0)//yeni kayıt yapılmıyorsa yani
            {
                DataSet ds = null;
                using (Service1Client proxy = new Service1Client())
                {
                    if (!TumBolgelerdekiCihazlariGorebilir)
                    {
                         ds = proxy.kal_IstIddenIstekDon(key, intBolgeKodu);
                    }
                    else
                    {
                         ds = ed.kal_IstIddenIstekDonBolgeKodsuz(key);
                    }
                    int IstIdyeAitIstekNo=int.Parse(ds.Tables[0].Rows[0]["ISTEKNO"].ToString());
                    int IstIdyeAitYil=int.Parse(ds.Tables[0].Rows[0]["YIL"].ToString());
                    lblUyari.ForeColor = System.Drawing.Color.Maroon;
                    lblUyari.Text = ed.kal_IstegeAitIlkCihazdakiNotuDon(intBolgeKodu,IstIdyeAitYil,IstIdyeAitIstekNo);

                    int FirmaId = proxy.IstekIddenFirmaIdDon(key);
                    KamuFirmasiMi = false;//proxy.FirmaKamuFirmasiMi(FirmaId);
                }
            }
            ddlCihazDoldur();
            ddlIndirimOranlariDoldur();
            //chkbxlstTarifeDoldur();
            if (key != 0)//Yeni bir istek kaydı için gelmemiş..varolan bir kayıt düzenlenmek için gelinmiş
            {
                Doldur(key);
            }
            if (key == 0)//Yeni bir istek kaydı için gelmiş
            {
                lblSertifikaNo.Visible = false;
                txtSertifikaNo.Visible = false;
                btnEkle.Visible = true;
                btnGuncelle.Visible = false;
                btnSil.Visible = false;
                txtFirmaId.Text = Session["IstekleriGosterilecekFirmaId"].ToString();

                txtYil.Text = DateTime.Now.Year.ToString();
                int Yil = int.Parse(txtYil.Text.Trim());
                txtIstekNo.Text = ed.kal_BolgeyeAitMaxIstekNoBul(Yil, intBolgeKodu).ToString();
                txtAltIstekNo.Text = ed.kal_OYilinIsIdsininSiradakiAltIstekNosunuDon(Yil, intBolgeKodu, int.Parse(txtIstekNo.Text.Trim().ToString())).ToString();
                txtMustNo.Text = Session["UzerineKayitYapilacakFirmaninMustNo"].ToString();
                txtBolgeKodu.Text = intBolgeKodu.ToString();
                raddtGelTar.SelectedDate = DateTime.Today;
               // if (UserManager.Default.IsUserInRole(UserName, "LabPers"))//Cihaz kaydını yapmaya çalışan LabPers rolune sahip bir kullanıcı ise
                //{
                  //  txtSorumlu.Text = UserName;
                //}
            }
            else//Yeni istek kaydı için gelmmemiş..güncelleme oluyor
            {
                btnEkle.Visible = false;
            }
            if (Session["UzerineKayitYapilacakFirmaAdi"] != null)
            {
                lblFirmaAdi.Text = Session["UzerineKayitYapilacakFirmaAdi"].ToString();
                //Session["UzerineKayitYapilacakFirmaAdi"] = null;
            }
            else
            {
                lblFirmaAdi.Text =ed.kal_IstIddenFirmaAdiDon(key);
            }
            ddlSorumluDoldur(int.Parse(intBolgeKodu.ToString()), "LabPers");
            ddlLablariDoldur();
            RoleGoreGorunumAyarla();
        }
    }
开发者ID:inancakcan,项目名称:kalibrasyon,代码行数:77,代码来源:Istek.aspx.cs


注:本文中的EFDal.KullaniciBelirliBirRoleSahipMi方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。