css - Update Embedded Resource at runtime -


In my asp.net MVC application, I want to update CSS file or JS file content that dynamically inside DLL Are embedded runtime without restarting the application

The reason for this is that my application is a huge one which will take more time to restart. So for the change in JS or CSS in the development phase, I do not want to run the application again and do not want to wait for minutes.

Please provide the solution ASAP.

Embedded resources are compiled into your assembly items and can not be modified at run time at all can. It is the same as you can not modify the bytes (compiled from your source code) in your assembly in the runway. You may need to think about a separate architecture for your application so that you do not need to update your embedded resource at runtime.

Anyway, you can find this link useful:

Comments

Popular posts from this blog

java - ImportError: No module named py4j.java_gateway -

python - Receiving "KeyError" after decoding json result from url -

.net - Creating a new Queue Manager and Queue in Websphere MQ (using C#) -