Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 4 of 4
Search took 0.03 seconds.
Search: Posts Made By: germus
Forum: ASP 10-08-2012, 08:55 AM
Replies: 3
Views: 1,660
Posted By germus
solved ! In place of ...

solved !

In place of

Response.BinaryWrite objStream.Read

I tried

Do While Not objStream.EOS
Response.BinaryWrite objStream.Read(4096)
Forum: ASP 10-06-2012, 08:20 PM
Replies: 3
Views: 1,660
Posted By germus
forcing asp download problems with large files

I use this code to force the download files:

<%
file = Request.QueryString("file")
path=Request.QueryString("dir")+file
ContentType = "application/x-msdownload"
Response.Buffer = True
...
Forum: JavaScript programming 10-03-2012, 09:32 AM
Replies: 2
Views: 399
Posted By germus
thank you 100 times to perfect analysis :thumbsup:

thank you 100 times to perfect analysis :thumbsup:
Forum: JavaScript programming 10-02-2012, 06:21 PM
Replies: 2
Views: 399
Posted By germus
problems with FF and Chrome disabling F5

to disable f5 I use this code:

<%
brow=Request.ServerVariables("http_user_agent")
if instr(brow,"MSIE")>0 then tk="MS" else tk="FF" end if
got=tk+"cancelRefresh()"
%>
<html>
<head>...
Showing results 1 to 4 of 4

 
Forum Jump

All times are GMT +1. The time now is 08:36 AM.