Ошибка тайм-аута для источника данных sql

Код ошибки:

Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

Может ли кто-нибудь предоставить мне код, который я могу скопировать и вставить, чтобы изменить время ожидания по умолчанию? Я не уверен, куда поместить это в этот код:

<head runat="server">
<title>Proxy Report</title>
</head>
<body>
<form id="form1" runat="server">
<div>

    <asp:Label ID="Label1" runat="server" Text="Proxy Report"></asp:Label>

</div>
<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1">
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" 
    ConnectionString="<%$ ConnectionStrings:ISALog1ConnectionString %>" 
    SelectCommand="ProxyReport" SelectCommandType="StoredProcedure">

</asp:SqlDataSource>
</form>
</body>
</html>
7
задан Nima Derakhshanjan 23 June 2016 в 06:39
поделиться