Click here to Skip to main content
15,887,485 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: ie css display issue, I need advice Pin
cjoki15-Oct-10 5:57
cjoki15-Oct-10 5:57 
GeneralRe: ie css display issue, I need advice Pin
cjoki16-Oct-10 8:05
cjoki16-Oct-10 8:05 
GeneralRe: ie css display issue, I need advice Pin
phil.o26-Oct-10 3:41
professionalphil.o26-Oct-10 3:41 
GeneralRe: ie css display issue, I need advice Pin
W Balboos, GHB8-Nov-10 2:34
W Balboos, GHB8-Nov-10 2:34 
GeneralRe: ie css display issue, I need advice Pin
cjoki10-Nov-10 15:10
cjoki10-Nov-10 15:10 
QuestionTabbed Page in HTML Pin
swornavidhya_m14-Oct-10 1:26
swornavidhya_m14-Oct-10 1:26 
GeneralRe: Tabbed Page in HTML Pin
Murugesan G14-Oct-10 20:51
Murugesan G14-Oct-10 20:51 
QuestionWant to display images from database with thumbnails but I have errors [modified] Pin
dababy13-Oct-10 5:43
dababy13-Oct-10 5:43 
HTML
<%
strSearch = "SELECT  Brief,Area,City,Country,Telephone,File Data" & "FROM [registration] " & "WHERE City LIKE  '" & Replace(request.Form("txtsearch"), "'", "''") & "%' " 

rsSearch.open strSearch, strconn, 3,3

%>

              <%
			  On error resume next
              rsSearch.movefirst
              while Not rsSearch.eof
               %> 
               </p>
              <table>
              <tr> 
                <td height="20" colspan="4" class="fontbold"> <%=rsSearch("Brief")%> </td>
              </tr>
              <tr> 
                <td width="217" height="20" class="font"> <%=rsSearch("Area")%> </td>
                <td width="99" class="font"> <%=rsSearch("City")%> </td>
                <td width="94" class="font"> <%=rsSearch("Country")%> </td>
                <td width="225" class="font"> <%=rsSearch("Telephone")%> </td>
				<td width="200">
				<%
				if not (rsSearch.EOF and rsSearch.BOF) then
				 PicSize = rsSearch("File Data").ActualSize
				 if PicSize > 0 then
				 Response.BinaryWrite rsSearch("File Data").GetChunk(rsSearch("File Data").ActualSize)
				 End if
				End If
				response.End
				 
				'if rsSearch.eof then
                 '  respond.end
                  ' else
                   'Response.ContentType ="image/jpeg"
                   'Response.BinaryWrite(rsSearch("File Data"))
               'end if
                   %>
				</td>
				
              </tr>                    
              <%
rsSearch.Movenext
%>
<%

Wend
%>


modified on Thursday, October 14, 2010 9:07 AM

AnswerRe: Want to display images from database with thumbnails but I have errors Pin
Not Active14-Oct-10 0:17
mentorNot Active14-Oct-10 0:17 
AnswerRe: Want to display images from database with thumbnails but I have errors Pin
NeverHeardOfMe14-Oct-10 3:46
NeverHeardOfMe14-Oct-10 3:46 
GeneralRe: Want to display images from database with thumbnails but I have errors Pin
dababy14-Oct-10 4:33
dababy14-Oct-10 4:33 
GeneralRe: Want to display images from database with thumbnails but I have errors Pin
NeverHeardOfMe14-Oct-10 4:39
NeverHeardOfMe14-Oct-10 4:39 
QuestionRe: Want to display images from database with thumbnails but I have errors Pin
Luc Pattyn14-Oct-10 4:57
sitebuilderLuc Pattyn14-Oct-10 4:57 
AnswerRe: Want to display images from database with thumbnails but I have errors Pin
T M Gray21-Oct-10 10:14
T M Gray21-Oct-10 10:14 
GeneralRe: Want to display images from database with thumbnails but I have errors Pin
Anupam Singh2-Jan-11 19:57
Anupam Singh2-Jan-11 19:57 
QuestionSetting background image for iframe? Pin
swornavidhya_m12-Oct-10 4:54
swornavidhya_m12-Oct-10 4:54 
AnswerRe: Setting background image for iframe? Pin
Jules VDV26-Oct-10 15:46
Jules VDV26-Oct-10 15:46 
QuestionSimple CSS Question. Pin
Dalek Dave11-Oct-10 8:59
professionalDalek Dave11-Oct-10 8:59 
AnswerRe: Simple CSS Question. [modified] PinPopular
DaveAuld11-Oct-10 9:06
professionalDaveAuld11-Oct-10 9:06 
GeneralRe: Simple CSS Question. [modified] Pin
Dalek Dave11-Oct-10 10:28
professionalDalek Dave11-Oct-10 10:28 
GeneralRe: Simple CSS Question. Pin
DaveAuld12-Oct-10 1:18
professionalDaveAuld12-Oct-10 1:18 
AnswerRe: Simple CSS Question. Pin
Pete O'Hanlon11-Oct-10 9:47
mvePete O'Hanlon11-Oct-10 9:47 
GeneralRe: Simple CSS Question. Pin
Jules VDV26-Oct-10 4:46
Jules VDV26-Oct-10 4:46 
GeneralRe: Simple CSS Question. Pin
Dalek Dave26-Oct-10 12:02
professionalDalek Dave26-Oct-10 12:02 
GeneralRe: Simple CSS Question. Pin
User 171649226-Oct-10 13:22
professionalUser 171649226-Oct-10 13:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.