Advanced Forum Search Results
-
Hai,
I have Linq query like
public List getFieldDetails()
{
CompanyDataContext fieldcontext = new CompanyDataContext();
var selectedfields = from t in fieldcontext.FIELDs orderby t.Order select new Elitea.Web.FIELD
{ Field_ID = t.Field_ID, Field_name = t.Field_name, Field_type ...
-
Thank You Very Much Elango.
-
I want to Display a text and its id for each item in combo box
-
Hai,
I am joining two tables using linq query as the following
var
result = from c in refcontext.REFs from ca in refcontext.Companies
where c.Company_ID == ca.Company_ID select new
{Name=c.Name,CompanyName=ca.Company_Name,Telephone=ca.Telephone};
return result.ToList();
But i got the error like
Cannot
implicitly convert ...
-
Hai,
I have Tabcontrol with 3 tabitems.
Each has datagrid with hyperlink column.
When i click a column, the Radwindow will open.
I achieved this for two tab items.But in the first tab item the event go to Application_Exit.
Please tell me the solution. Very Urgent.
Sofia.