Yalnız Mesajı Göster
  #5  
Eski 16-07-2006, 04:28 PM
KT-BigeST kullanıcısının avatarı
KT-BigeST KT-BigeST Çevrimdışı
Banned
 
Giriş: Jul 2005
Konum: YTÜ 'den
Mesaj: 190
KT-BigeST is a jewel in the roughKT-BigeST is a jewel in the roughKT-BigeST is a jewel in the rough
5

Deneme.html 'de girilen kelimeyi bu kod sayesinde gif olarak yazdirabilirsiniz.


Deneme.html :
------------------------
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>Gifler ile İsim Yazdırmak</title>
</head>
<body>
<form method="POST" action="yazdir.asp">
<p align="center">Kelimeyi Giriniz:<input type="text" name="kelime" size="25"><input type="submit" value="Yazdir" name="submitwrite"></p>
</form>
</body>
</html>
------------------------

Yazdir.asp :
------------------------
<%
kelime = Request.Form("kelime")
if kelime = "" then
Response.Write "Lütfen Geçerli Bir Kelime Giriniz"
Response.End
end if

for i = 1 to Len(kelime)
x = Mid(kelime,i,1)
if uCase(x) = x and isnumeric(x) = false then
response.write "<img src='b"& x &".gif'>"
else
response.write "<img src='"& x &".gif'>"
end if
next
%>
KT-BigeST kullanıcısına MSN aracılığı ile mesaj yolla
Alıntı Yaparak Cevapla