Click here to Skip to main content
15,887,683 members

Comments by NaibedyaKar (Top 72 by date)

NaibedyaKar 17-Sep-16 11:11am View    
Awesome!!!
NaibedyaKar 8-Sep-16 6:27am View    
Can you check this

http://forums.asp.net/post/5531588.aspx
NaibedyaKar 8-Sep-16 3:36am View    
I think the application is not able to connect to the database.
NaibedyaKar 8-Sep-16 3:09am View    
I am not sure what kind of data you are showing, but 2 lacs records on a page is a very bad idea. You better look for server side paging to show data.
NaibedyaKar 8-Sep-16 3:01am View    
Can you try with this.

public HttpResponseMessage Get()
{
var results = _productRepository.GetPackCounts();
return Request.CreateResponse(HttpStatusCode.OK, results, new XmlMediaTypeFormatter());
}