本文整理汇总了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();
}
}
示例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;
}
}
}
示例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();
}
}