This is definitely a miscellaneous question and has nothing to do with RAD controls but everyone is so smart here I thought I'd ask it! :- )
I have an .aspx web form in my website and I have it set up to be hit once per hour. I have a special requirement, however. There are tons of things being done inside the "Page_Load" event and I only want that code executing one at a time. In other words, if the web form was hit twice at about the same time, I dont want the Page_Load executing twice at the same time. I want the first "Page_Load" to be completely done before the second "Page_Load" even starts. How do I set this up? The rest of the web app needs to be running at full speed at this time of course, I just am concerned with the Page_Load on this particular web form. This probably has something to do with locking and threads but I can't find out how to do it.
I have an .aspx web form in my website and I have it set up to be hit once per hour. I have a special requirement, however. There are tons of things being done inside the "Page_Load" event and I only want that code executing one at a time. In other words, if the web form was hit twice at about the same time, I dont want the Page_Load executing twice at the same time. I want the first "Page_Load" to be completely done before the second "Page_Load" even starts. How do I set this up? The rest of the web app needs to be running at full speed at this time of course, I just am concerned with the Page_Load on this particular web form. This probably has something to do with locking and threads but I can't find out how to do it.