Click here to Skip to main content
15,905,686 members

Comments by jatinchandarana (Top 11 by date)

jatinchandarana 12-Sep-11 13:44pm View    
You can provide check box list for each role and delete selected role...
or you can provide button near user id text box when user click on that button then you can display associate role with them and delete selected role.......
jatinchandarana 10-Sep-11 13:53pm View    
Solution is...

lstCust = (from p in _NorthWindDataContext.Customers
join q in _NorthWindDataContext.Orders on
p.CustomerID equals q.CustomerID
where p.Region == "WA"
select new CusInfomration
{
CustomerName = Convert.ToString(p.CompanyName),
CustomerID = Convert.ToString(p.CustomerID),
OrderId = Convert.ToString(q.OrderID),
OrderDate = Convert.ToString(q.OrderDate),
}).ToList();
jatinchandarana 10-Sep-11 13:43pm View    
Ok,i have solved this....
thanks.....
jatinchandarana 10-Sep-11 12:06pm View    
List<cusinfomration> lstCust = CustomerFromWash.ToList();
When i write this it throw complie time error.....

Error 1 Cannot implicitly convert type 'System.Collections.Generic.List<anonymoustype#1>' to 'System.Collections.Generic.List<LinqToSqlExample.CusInfomration>'
jatinchandarana 25-Apr-11 13:25pm View    
Not Working....
When i write var d= Date.parseDate("2011.11.02","yyyy.mm.dd");
it gives me this error
TypeError: Date.parseDate is not a function