Slm, bu kodu düzeltmemi ayrıntılı tarif edicek birisi varsa sevinirim.
Şimdiden saolun.
hata kodu:
Active Server Pages error 'ASP 0113'
Script timed out
/default.asp
The maximum amount of time for a script to execute was exceeded. You can change this limit by specifying a new value for the property Server.ScriptTimeout or by changing the value in the IIS administration tools
Server.ScriptTimeout hatasını nasıl düzeltirim.
6
●5.323
- 11-06-2007, 15:22:29Diğer kodlarla etkileşime girip ters etki yamasın. iis de connection timeout 120 secods gosteriyori Diğer ayar buradan mı yapılıyor.
ona benzer bir sorunda bu
Microsoft OLE DB Provider for SQL Server error '80040e31'
Timeout expired
/sagblog.asp, line 450
ve böyle bir hatada var
/404.asp
The maximum amount of time for a script to execute was exceeded. You can change this limit by specifying a new value for the property Server.ScriptTimeout or by changing the value in the IIS administration tools.
- 11-06-2007, 15:40:31/sagblog.asp, line 450
450 deki kırmızı renkli txt
<%
for i=1 to 6
set rast = server.createobject("ADODB.recordset")
SQL = "SELECT * FROM video"
filtre = Request.Cookies("Filtre")
if filtre = "acik" then
SQL = SQL & " where kilit = 0"
end if
rast.Open SQL, veri, 3, 1
Randomize
kac = Int((rast.RecordCount * Rnd)+ 0)
rast.Move(kac)%>