How does it happen Azure web role entry point and .aspx page handler are run in different processes?

后端 未结 2 1522
甜味超标
甜味超标 2020-12-10 20:22

I\'m playing with this Azure web role sample. It contains a class derived from RoleEntryPoint and a .aspx page that contains a button click handler.

I t

2条回答
  •  醉酒成梦
    2020-12-10 21:12

    David is correct. In addition to that, you can turn off this behavior and run everything in the hostable web core (as it worked before SDK 1.4). You just need to comment out the "Sites" section in the services definition like in the example below:

    
    
      
        
          
            
              
            
          
        
        
          
          
          
        
    

提交回复
热议问题