does not implement interface member

Your class GetVenues does not implement the method mentioned in your error message. Where exactly are you stuck? GetVenuesByLocation(string search) is defined in the class Venue. I have noticed that this question is starting to garner interest. The issue here is very easy: your class does not implement (even if it’s abstract, you have to … Read more

what is ScriptResource.axd in the page load in web app?

You shouldn’t try to remove requests to those handlers without understanding why the requests are being made. A batch of ScriptResource.axd requests like that are usually due to ASP.NET controls registering includes to the scripts that they’re dependent on, especially scripts for the ASP.NET AJAX Control Toolkit controls. If you want to minimize the number … Read more

Response Content type as CSV

Using text/csv is the most appropriate type. You should also consider adding a Content-Disposition header to the response. Often a text/csv will be loaded by a Internet Explorer directly into a hosted instance of Excel. This may or may not be a desirable result. The above will cause a file “Save as” dialog to appear … Read more

The localhost page isn’t working. localhost redirected you too many times

I got a problem when debugging my MVC program and I want to acces to my db called “UserActivity”. on the browser, it saying that “The localhost page isn’t working localhost redirected you too many times.” but without showing the specific error location. here is my UserActivtyController, GET /UserActivity/Index code: Really appreciate if there anyone … Read more