Implementing Plugin Architecture – Dynamic DLL loading
I’ve an application which is basically a designer with preloaded controls where you can design your pages using the controls.
I’ve an application which is basically a designer with preloaded controls where you can design your pages using the controls.
I am running a world targeted website where people from all over the world visit. The database contains time in International Date Line West format. I am taking the user time zone using JavaScript and converting the time in the database to user’s time and then showing on the page. I want to ask that … Read more
In class Employee I’ve got some methods, which work fine. Now I wanted to add new method, for example
Using ASP.NET MVC 5, I would like to return appropriate HTTP status code for different scenarios (401 for user is not authenticated, 403 when user has no right for some resource, etc.), than handle them in jQuery.
I have a div element:
I want to extract first frame of uploaded video and save it as image file.
Possible video formats are mpeg, avi and wmv.
I want to show certain parts of an ItemTemplate based according to whether a bound field is null. Take for example the following code:
I’m looking for the proper way to handle multiple database calls that would likely benefit from running simultaneously. The queries are just to stored procedures that are either doing inserts or merges using data that is programmatically assembled into DataTables in my ASP.NET MVC app.
I know it’s possible to use DependencyResolver and register Castle Windsor with MVC but due to the issues described in https://stackoverflow.com/a/4889222/139392 we have stuck to the WindsorControllerFactory method of implementation on our MVC projects.
All I want to create is basic recursive category. Category is root if RootCategory_Id is set to null and it belongs to some other category if it is set to some id. I’ve added category with two child-categories in Seed() method to test and it does not work. (I’ve checked DB afterwards, there are inserted)