如何在Windows Azure网站上更改脚本超时?
答案 0 :(得分:5)
鉴于您没有引用特定语言,我认为它是ASP.NET。无论哪种方式,您都必须更改web.config
文件并将httpRuntime
的{{1}}属性设置为所需的值,以秒为单位:
executionTimeout
如果您不在ASP.NET中编码,只需使用FTP登录您的网站,导航到该站点的根文件夹,打开web.config文件并进行编辑。它必须看起来像(只是更臃肿):
<httpRuntime executionTimeout="300" />
如果没有名为<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<httpRuntime executionTimeout="300" />
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>
</configuration>
的文件,只需创建包含上述内容的XML文件,请将其命名为web.config
并将其放在网站的根文件夹中。那应该是你的伎俩。