Bilgi Dağıtmak İçin El Ele
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1254"> <meta name="GENERATOR" content="Microsoft FrontPage 4.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <title>response clear</title> </head> <% @ LANGUAGE=VBScript CODEPAGE=1254 %> <% Response.buffer=true %> Bu satır sunucunun hafızasında saklanan ilk satır <% response.clear %> bu satır ise tampon hafızadaki bilgiler silindikten sonra gönderildi </html>
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1254"> <meta name="GENERATOR" content="Microsoft FrontPage 4.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <title>Response end</title> </head> <% @ LANGUAGE=VBScript CODEPAGE=1254 %> <% Response.buffer=true %> Bu yazıdan sonraki yazılar gözükmeyecek çünkü sunucu bu satırdan sonraki response.end stırında çalışmasını durduracak <% response.end %> İşte bu yazı hiçbir zaman Gözükmeyecek. </html>
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1254"> <meta name="GENERATOR" content="Microsoft FrontPage 4.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <title>Requestquerystring</title> </head> <body> <A href="requestquerystring2.asp?ad=erhan&yas=20">bu linke basıldığında diğer sayfa değişkenler aktarılacak [/url] </body> </html>
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO 8859-9"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1254"> <title>Request querystring</title> </head> <% ad=request.querystring("ad") yas=request.querystring("yas") %> Bir önceki sayfadan gönderilen değerler AD=<%=ad%> YAS=<%=yas%> </html>
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO 8859-9"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1254"> <title>Request querystring</title> </head> <form method="get" action="Requestquerystring4.asp"> İsminiz : <input type="text" name="isim" size="20"> <input type="submit" value="Gir"> </form> </html>
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO 8859-9"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1254"> <title>Request querystring</title> </head> <% Response.write("Merhaba : " & Request.querystring("isim") & "") %> </html>