|
 |
asp_web_howto thread: image gallery(urgent)
Message #1 by nusrat sarwar <nusratsarwar@y...> on Sun, 21 Apr 2002 12:35:42 -0700 (PDT)
|
|
Hi all
hope all of you are fine and well
here I am again to share a problem
I have to have photo gallery
the src of images coming from database
what I need is that pictures be shown in 2 columns and
when I get them they are shown in one row or in one
column
I need to have 2 columns and 10 rows
can any one help me?
many thanx in advance
take care
regards
nusrat
__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/
Message #2 by "Hotmail" <tormented1_au@h...> on Mon, 22 Apr 2002 06:03:40 +1000
|
|
<% Do While (NOT oRs.EOF) %>
<tr>
<td><%=(oRs.Fields.Item("Image").Value)%></td>
<% oRs.MoveNext()
If (oRs.EOF) Then
Exit Do
End If
%>
<td><%=(oRs.Fields.Item("Image").Value)%></td>
</tr>
<%
oRs.MoveNext()
Loop
%>
----- Original Message -----
From: "nusrat sarwar" <nusratsarwar@y...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Monday, April 22, 2002 5:35 AM
Subject: [asp_web_howto] image gallery(urgent)
> Hi all
> hope all of you are fine and well
> here I am again to share a problem
> I have to have photo gallery
> the src of images coming from database
> what I need is that pictures be shown in 2 columns and
> when I get them they are shown in one row or in one
> column
> I need to have 2 columns and 10 rows
> can any one help me?
> many thanx in advance
> take care
> regards
> nusrat
>
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Games - play chess, backgammon, pool and more
> http://games.yahoo.com/
>
>
> ---
>
> Improve your web design skills with these new books from Glasshaus.
>
> Usable Web Menus
> http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
> http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
> http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20
>
Message #3 by nusrat sarwar <nusratsarwar@y...> on Mon, 22 Apr 2002 08:49:02 -0700 (PDT)
|
|
many many thanks hotmail
I'll try it out
take care
regards
nusrat
--- Hotmail <tormented1_au@h...> wrote:
> <% Do While (NOT oRs.EOF) %>
> <tr>
> <td><%=(oRs.Fields.Item("Image").Value)%></td>
> <% oRs.MoveNext()
> If (oRs.EOF) Then
> Exit Do
> End If
> %>
> <td><%=(oRs.Fields.Item("Image").Value)%></td>
> </tr>
> <%
> oRs.MoveNext()
> Loop
> %>
> ----- Original Message -----
> From: "nusrat sarwar" <nusratsarwar@y...>
> To: "ASP Web HowTo" <asp_web_howto@p...>
> Sent: Monday, April 22, 2002 5:35 AM
> Subject: [asp_web_howto] image gallery(urgent)
>
>
> > Hi all
> > hope all of you are fine and well
> > here I am again to share a problem
> > I have to have photo gallery
> > the src of images coming from database
> > what I need is that pictures be shown in 2 columns
> and
> > when I get them they are shown in one row or in
> one
> > column
> > I need to have 2 columns and 10 rows
> > can any one help me?
> > many thanx in advance
> > take care
> > regards
> > nusrat
> >
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Yahoo! Games - play chess, backgammon, pool and
> more
> > http://games.yahoo.com/
> >
> >
> > ---
> >
> > Improve your web design skills with these new
> books from Glasshaus.
> >
> > Usable Web Menus
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > r-20
> > Constructing Accessible Web Sites
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > r-20
> > Practical JavaScript for the Usable Web
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > r-20
> >
>
>
> ---
>
> Improve your web design skills with these new books
> from Glasshaus.
>
> Usable Web Menus
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20
__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/
Message #4 by =?iso-8859-1?q?Deepa=20Ravikumar?= <deepar_07@y...> on Wed, 24 Apr 2002 04:57:00 +0100 (BST)
|
|
Hi Nusrat,
For displaying the images in 2 columns and 10 rows,
you'll have to maintain a counter for col and another
for row.
Keep incrementing both the counters, when the column
counter is > 2 then print (</TR><TR>). Reset the
column counter to 2.
Regards
Deepa
--- nusrat sarwar <nusratsarwar@y...> wrote: >
Hi all
> hope all of you are fine and well
> here I am again to share a problem
> I have to have photo gallery
> the src of images coming from database
> what I need is that pictures be shown in 2 columns
> and
> when I get them they are shown in one row or in one
> column
> I need to have 2 columns and 10 rows
> can any one help me?
> many thanx in advance
> take care
> regards
> nusrat
>
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Games - play chess, backgammon, pool and more
> http://games.yahoo.com/
>
>
> ---
>
> Improve your web design skills with these new books
> from Glasshaus.
>
> Usable Web Menus
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20
________________________________________________________________________
For live cricket scores download Yahoo! Score Tracker
at: http://in.sports.yahoo.com/cricket/tracker.html
Message #5 by =?iso-8859-1?q?Deepa=20Ravikumar?= <deepar_07@y...> on Wed, 24 Apr 2002 05:06:09 +0100 (BST)
|
|
Sorry
you'll have to reset the column counter back to 0
Deepa
--- Deepa Ravikumar <deepar_07@y...> wrote: >
Hi Nusrat,
>
> For displaying the images in 2 columns and 10 rows,
> you'll have to maintain a counter for col and
> another
> for row.
> Keep incrementing both the counters, when the column
> counter is > 2 then print (</TR><TR>). Reset the
> column counter to 2.
>
> Regards
> Deepa
>
>
> --- nusrat sarwar <nusratsarwar@y...> wrote: >
> Hi all
> > hope all of you are fine and well
> > here I am again to share a problem
> > I have to have photo gallery
> > the src of images coming from database
> > what I need is that pictures be shown in 2 columns
> > and
> > when I get them they are shown in one row or in
> one
> > column
> > I need to have 2 columns and 10 rows
> > can any one help me?
> > many thanx in advance
> > take care
> > regards
> > nusrat
> >
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Yahoo! Games - play chess, backgammon, pool and
> more
> > http://games.yahoo.com/
> >
> >
> > ---
> >
> > Improve your web design skills with these new
> books
> > from Glasshaus.
> >
> > Usable Web Menus
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > r-20
> > Constructing Accessible Web Sites
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > r-20
> > Practical JavaScript for the Usable Web
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > r-20
>
>
________________________________________________________________________
> For live cricket scores download Yahoo! Score
> Tracker
> at: http://in.sports.yahoo.com/cricket/tracker.html
>
>
> ---
>
> Improve your web design skills with these new books
> from Glasshaus.
>
> Usable Web Menus
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20
________________________________________________________________________
For live cricket scores download Yahoo! Score Tracker
at: http://in.sports.yahoo.com/cricket/tracker.html
Message #6 by nusrat sarwar <nusratsarwar@y...> on Wed, 24 Apr 2002 06:50:51 -0700 (PDT)
|
|
Hello Deepa
many thanx for yr kind solution
I have done it but I'll try yr solution as well
take care
kind regards
nusrat
--- Deepa Ravikumar <deepar_07@y...> wrote:
> Sorry
> you'll have to reset the column counter back to 0
>
> Deepa
>
> --- Deepa Ravikumar <deepar_07@y...> wrote:
> >
> Hi Nusrat,
> >
> > For displaying the images in 2 columns and 10
> rows,
> > you'll have to maintain a counter for col and
> > another
> > for row.
> > Keep incrementing both the counters, when the
> column
> > counter is > 2 then print (</TR><TR>). Reset the
> > column counter to 2.
> >
> > Regards
> > Deepa
> >
> >
> > --- nusrat sarwar <nusratsarwar@y...> wrote:
> >
> > Hi all
> > > hope all of you are fine and well
> > > here I am again to share a problem
> > > I have to have photo gallery
> > > the src of images coming from database
> > > what I need is that pictures be shown in 2
> columns
> > > and
> > > when I get them they are shown in one row or in
> > one
> > > column
> > > I need to have 2 columns and 10 rows
> > > can any one help me?
> > > many thanx in advance
> > > take care
> > > regards
> > > nusrat
> > >
> > >
> > >
> __________________________________________________
> > > Do You Yahoo!?
> > > Yahoo! Games - play chess, backgammon, pool and
> > more
> > > http://games.yahoo.com/
> > >
> > >
> > > ---
> > >
> > > Improve your web design skills with these new
> > books
> > > from Glasshaus.
> > >
> > > Usable Web Menus
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > > r-20
> > > Constructing Accessible Web Sites
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > > r-20
> > > Practical JavaScript for the Usable Web
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > > r-20
> >
> >
>
________________________________________________________________________
> > For live cricket scores download Yahoo! Score
> > Tracker
> > at:
> http://in.sports.yahoo.com/cricket/tracker.html
> >
> >
> > ---
> >
> > Improve your web design skills with these new
> books
> > from Glasshaus.
> >
> > Usable Web Menus
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > r-20
> > Constructing Accessible Web Sites
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > r-20
> > Practical JavaScript for the Usable Web
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > r-20
>
>
________________________________________________________________________
> For live cricket scores download Yahoo! Score
> Tracker
> at: http://in.sports.yahoo.com/cricket/tracker.html
>
>
> ---
>
> Improve your web design skills with these new books
> from Glasshaus.
>
> Usable Web Menus
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20
__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/
|
|
 |