In this blog post, I will show a simple fix for the error HTTP 404 Not Found for the font files e.g. woff, woff2, otf etc. used in ASP.NET or MVC or Azure. I was creating a dynamic ad and in that ad I have to show custom font-family. I added the… read more →
I love jquery fullcalendar plugin. But sometime we need to do customizations as per our requirements. So I had a challenge to add a feature to copy last week events to next week on button click. I started work on this and created some logic to copy last week data and move… read more →
I created a new project using asp.net visual studio 2013, Then tried to add new area but found there wasn’t any option to add areas. I did google but didn’t found any proper solution. After some time I found someone wasn’t able to add controller in their project by right click and… read more →
In this article, I am going to explain how to do we can fix HttpAntiForgeryException. I was working on asp.net MVC project and it was the exception occurring most of the time on the production server. I got many exception messages from the rollbar. I did google research and found some methods… read more →
Now days web api of mvc is using more than the wcf services. So when the security of api come to mind then everyone try to make api calls secure so no one can hack and access the api without access. So I implemented the token based authentication to allow only authenticated… read more →
Hi, I was working with Ajax.BeginForm and found that when I submit a form it was adding same entry twice. I tried to figure out but didn’t get some proper solution because it was working fine at my local. When I pushed my code to live it was inserting a twice entry… read more →
Hi friends, I was working on asp.net mvc project with web api. But when I return the json from the web api and try to get in my application it throw the error while deserialize. Could not cast or convert from System.String to System.Collections.Generic.List`1. When I debug the code and found json… read more →
Browser cache is a problem, most of the developer faced. I also faced this problem while worked on asp.net mvc project. Actually my application was working fine on the other browsers like Chrome, Firefox. But on the Internet Explorer, it was causing some issues. In the IE my application cache the values… read more →
Amazon S3 is very fast growing cloud computing and storage hosting. I was working with amazon s3 cloud server to upload images using file upload with asp.net mvc. I have faced some problems due to version upgrade by amazon s3. I get the code older one that wasn’t compatible with new version… read more →
I have to access google calendar api with asp.net mvc application and fetch all the events from the google calendar show all in a schedular. When I started work it seems very complex as I was working google api first time. I searched on the google but didn’t find justified code sample.… read more →