Gönderen: 14-Temmuz-2011 Saat 18:17 | Kayıtlı IP
|
|
|
Yapmak istediğim şu;
Veri tabanımda fiyat alanı var bu alan para birimiolarak tanımlı. eğer ürün fiyatı 10,00 Tl den buyuk ıse farklı bır sorgu calıstıracak kucukse farklı bır sorgu
nasıl yapabılırım
benım sorgum asagıda
<tr> <td valign='top' background="etiket.jpg"> <%if request("fiyat") < "10,00" then
<div style="position: absolute; font-size: 28pt; left: 53px; top: 15px; width: 63px; height:38px; visibility: visible"> <table width="30" height="10" > <%=kayit("fiyat")%> ;</table></div>
<%else%>
<div style="position: absolute; font-size: 32pt; left: 73px; top: 15px; width: 63px; height:38px; visibility: visible"> <table width="30" height="10" > <%=kayit("fiyat")%> ;</table></div>
<%end if>
</tr>
|