Click here to Skip to main content
15,919,341 members

Comments by Naveen020190 (Top 2 by date)

Naveen020190 19-Aug-15 3:10am View    
public Article GetArticle(long id) // error - The type or namespace name 'Article' could not be found (are you missing a using directive or an assemble reference?)
{
List articles = QueryList("select * from [product] where [ID] = " + id.ToString());

// Only return the first record.
if (articles.Count > 0)
{
return articles[0];
}
return null;
}
Naveen020190 1-Aug-13 23:49pm View    
How to separate eamil , while emails are in multiple rows, please help me....