Click here to Skip to main content
15,897,891 members

Comments by Member 10525430 (Top 62 by date)

Member 10525430 18-Mar-18 14:35pm View    
Sorry for confiliction

When i push the add cart image button. Normally it redirect me to product.aspx?id= page how ever when i press the button datalist itemcommand event didnt work and it diidnt forward me to the pruduct.aspx?id= page
Member 10525430 2-Oct-17 8:54am View    
sorry...

im getting count values on sql code.
but i want to get the all count values
like
Urun:(show count values of product sql code),Barcode:(showing count values of barcode sql code)

i think this is more understandable i hope
Member 10525430 3-Jul-17 6:29am View    
all the metod is:

public DataTable selectGrup()
{
DataTable dt = new DataTable();

var element = (from h in ent.REPORTHEADERs
join d in ent.REPORTDETAILS on h.FIS_NO equals d.FIS_NO
select new
{
h.SUBE_ID,
h.FIS_NO,
h.TERAZI_NO,
h.TERAZI_REYON_NO,
d.URUN_NO,
d.BIRIM_FIYAT,
h.SATICI_NO,
h.MUSTERI_NO,
h.FIS_ADET,
h.FIS_AGIRLIK,
h.TUTAR,
h.IPTAL,
h.ILK_ISLEM_TARIHI,
h.SON_ISLEM_TARIHI,
h.FIS_SAYISI,
h.TERAZI_ADIIP
}).Distinct().ToList();


dt = ToDataTable(element);

return dt;
}
my db have 3 item on report details,3 item on report header

when i run the program i get 2 same item for your code
Member 10525430 3-Jul-17 4:36am View    
its not working correctly
when i use your code i get only 2 same item
the other 2 different item not come
Member 10525430 3-Jul-17 4:19am View    
actually,

my db have 3 item

however when i use this entity code i get 9 item on gridview