Comment by Lalit Kale on Font won't get found on server for firefox
I understand that you tried all but can you take a look here in issues of fontawesome. I also see that they have closed the issues but still since nothing is working, I think this will give some hints...
View ArticleComment by Lalit Kale on Intermittent SSL/TLS error using Azure SDK in Azure...
Can you check this thread forums.asp.net/post/1695893.aspx#1695893
View ArticleComment by Lalit Kale on MVC Action Filters Collection was modified;...
Can you put your code as well. If you are using custom filters, check in which orders they are executing. It seems in 5.1.3 they are getting asynchronously executed and struggling to get the same...
View ArticleComment by Lalit Kale on Publish an MVC application with a web.config for...
We have solved this with two types of files. One is Environment Definition file, which contains all key-value mappings of specific deployment enviornment say prod1,prod2 etc. and our web.config files...
View ArticleComment by Lalit Kale on InnerException : Table 'xxx.aspnetusers' doesn't exist
Please check whether you have "MySql.Data" assembly in your reference folder or now. If it is there then check the version and try to match it with web.config version. Hope this helps.
View ArticleComment by Lalit Kale on Strategy to keep local cache see the same "version"...
Reading the problem, looks like you need a map-reduce system or are you looking for something more complex than that?
View ArticleComment by Lalit Kale on Cross-thread conflicts in StructureMap
I think, reasons are same as described in 'Why Nested Containers over HttpContext or ThreadLocal Scoping?' here structuremap.github.io/the-container/nested-containers
View ArticleComment by Lalit Kale on How do I start/stop IIS Express Server?
The process you are explaining is about re-installing IIS and nothing to do with question.
View ArticleComment by Lalit Kale on How to get currentuser in asp.net mvc active...
principally, this question is, Duplicate of stackoverflow.com/questions/263486/…
View ArticleComment by Lalit Kale on Visual Studio 2010 shortcut to find classes and...
so the default mapping is Ctrl + 1 + F1
View ArticleComment by Lalit Kale on How to self register a service with Consul
You can use tools like Registrar(gliderlabs.github.io/registrator/latest) for auto registration of your services.
View ArticleComment by Lalit Kale on Serious delay using HttpClient in combination with...
Can you please let me know where you disabled System.Diagnostics. I am facing exact same issue with NServicebus, asp.net core based endpoint and SQSTransport.
View ArticleAnswer by Lalit Kale for Configuring Authorization in a mixed MVC / WebForms...
In the question, you are mixing two parts 1. Authentication and 2. Authorization.For Authentication: Forms authentication can be worked out.For Authorization: You have to implement custom Authorization...
View ArticleAnswer by Lalit Kale for Logging crosscutting concern needs access to data layer
IMO, Since Logging is cross cutting concern, it should not refer your Data layer. In your question, I see that you had assumed that you are logging into the database. Even if this is your requirement,...
View ArticleAnswer by Lalit Kale for DDD - Aggregates with large graphs
I think you need to clearly distinguish between your presentationObjects and Domain Objects, if you are truely following DDD. If you are thinking of exposing Domain objects towards UI then I think,...
View ArticleAnswer by Lalit Kale for How can I get PDF Reports in MVC 4
use jspdf library which takes care of CSS and all the styling. https://github.com/MrRio/jsPDF
View ArticleAnswer by Lalit Kale for How can I restrict the event that must be initiated...
Erik is right.However, If your question is looked from different perspective, it seems like you are looking for some sort of Authentication mechanism. Are you sure you are not looking for...
View ArticleAnswer by Lalit Kale for Creating REST Api in MVC 5 with Byte[] as Parameter
REST means your methods would be closer to what HTTP verbs are.For byte[] NoteBookData parameter, you can tweak it as base64 string so as to get consumed by any of the platform.
View ArticleAnswer by Lalit Kale for cant figure out whats wrong with my enum dropdown...
Enums are supported in Razor views from MVC 5.1. Check if you are using any prior version of mvc. Additionally, MVC 5.1 Razor DisplayFor not working with Enum DisplayName this will also help you.
View ArticleAnswer by Lalit Kale for InnerException : Table 'xxx.aspnetusers' doesn't exist
The exception clearly states that aspnetusers is missing from your database. However, on more findings, I think you would like to go through this answer from asp.net...
View Article