Is it possible to share HttpRuntime.Cache between multiple web servers?
We have a web application that is storing all the site data in HttpRuntime.Cache.
We have a web application that is storing all the site data in HttpRuntime.Cache.
I was wondering if there is easy solution to this or I’m stuck with following:
I have created an asp.net console application using visual studio 2012, the console application is a sync job between our ERP system and our custom Database. now i need this sync job to run on timely basis , so i created a new task under our windows task scheduler , which calls the console application each hour, which works well.
My team and I have a asp.net web forms application and are using several class libraries. In one of those libraries, we are trying to consume a web service. The web reference was added in the web app project and the appropriate references have been added. The app compiles. When attempting to consume said web service in the class library, the credentials don’t seem to work, and the call fails. However, if we take the web service call out of the class library, and consume it within the web app, it works.
I need to set up billing cycles and process payments. So for example I will process a payment immediately and then set the next one up to process exactly one month from then.
I’m trying to send a image and text fields to an API endpoint but I’m received
I am having problem in EditItemTemplate of FormView.
I currently have MVC project that calls python script via Process (new processStartinfo(“/path/to/python.exe”, ” /path/to/script.py”). Which works perfectly fine in visual studio.
When i publish this on azure how will it be able to call python.exe? (Im probably not constructing this question accurately since this is my very first web to publish and do not have full understanding of publishing)
I have an issue hope someone can help.
I have a text box and a button next to it. I want to send the content of textbox through Jquery ajax call to webmethod and get back the upper case value of the same and display that in alert. So far i have this code but its not working. JAVASCRIPT: function CallWM() { var … Read more