473,811 Members | 2,915 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

I know this can be done...

tearing my hair out here...,

I am creating a site to show artists work. I have a database and can
retrieve and display a list of artisits, other info, and a related image for
each artist - all drawn from the respective entries on the database. What i
would like to do is then use that record to dynamically generate another
page that would display more detailed information about that one specific
artist that the user clicks on - again drawn from that entry in the
database, (rather than merely linking to a static html page - which would
require making some 120 extra pages). I was wondering whether i would link
to another .asp page and force it to display contents relating to a specific
id - but i dont know how to do that anyway.

Im using access database and iis 5.0 generating .asp pages with VBscript.

Any help would be much appreciated.

K

Jul 22 '05 #1
4 1378
one way to do is jsut build a dynamic hyperlink to another page feeding it
the variable (user ID maybe) needed to show more information.. its simple
stuff

http://www.powerasp.com/content/new/...hyperlinks.asp

"Apple Plexy" <ma******@yahoo .co.uk> wrote in message
news:42******** *************@p tn-nntp-reader03.plus.n et...
tearing my hair out here...,

I am creating a site to show artists work. I have a database and can
retrieve and display a list of artisits, other info, and a related image
for
each artist - all drawn from the respective entries on the database. What
i
would like to do is then use that record to dynamically generate another
page that would display more detailed information about that one specific
artist that the user clicks on - again drawn from that entry in the
database, (rather than merely linking to a static html page - which would
require making some 120 extra pages). I was wondering whether i would link
to another .asp page and force it to display contents relating to a
specific
id - but i dont know how to do that anyway.

Im using access database and iis 5.0 generating .asp pages with VBscript.

Any help would be much appreciated.

K

Jul 22 '05 #2
Thanks for the quick response - it wasnt really hyperlink building i had a
problem with - moreover it was where to send the information to - however
you're reply promted me to think more laterally and i managed to get it to
work by creating another asp page that will list the correct details when i
link to it i.e. artistspage.asp ?id=56 - where "id", I can generate on the
initial results page. - It is basic stuff - if you know how! lol -

K

"Kyle Peterson" <kp*****@hotmai l.com> wrote in message
news:Om******** ******@tk2msftn gp13.phx.gbl...
one way to do is jsut build a dynamic hyperlink to another page feeding it
the variable (user ID maybe) needed to show more information.. its simple
stuff

http://www.powerasp.com/content/new/...hyperlinks.asp

"Apple Plexy" <ma******@yahoo .co.uk> wrote in message
news:42******** *************@p tn-nntp-reader03.plus.n et...
tearing my hair out here...,

I am creating a site to show artists work. I have a database and can
retrieve and display a list of artisits, other info, and a related image
for
each artist - all drawn from the respective entries on the database. What i
would like to do is then use that record to dynamically generate another
page that would display more detailed information about that one specific artist that the user clicks on - again drawn from that entry in the
database, (rather than merely linking to a static html page - which would require making some 120 extra pages). I was wondering whether i would link to another .asp page and force it to display contents relating to a
specific
id - but i dont know how to do that anyway.

Im using access database and iis 5.0 generating .asp pages with VBscript.
Any help would be much appreciated.

K


Jul 22 '05 #3
Perhaps this may hopefully give you some ideas:

Classic ASP Design Tips - QueryString
http://www.bullschmidt.com/devtip-querystring.asp

Example URL with a querystring:
http://www.mysite.com/mypg.asp?Category=Baseball

Because a variable might contain some odd characters like spaces, it's
usually a good idea to use Server.URLEncod e when creating a querystring
from a variable:
<a href="http://www.mysite.com/mypage?Category =<%=
Server.URLEncod e(objRS("Catego ry")) %>">objRS("Cate gory")</a>

And in the page that is opened you can use
Request.QuerySt ring("Category" ) to get the value of Category.

Category = Request.QuerySt ring("Category" )

' Set strSQL.
strSQL = "SELECT * FROM MyTable WHERE"
strSQL = strSQL & " (Category='" & Category & "')"
strSQL = strSQL & " ORDER BY Subcategory"

Best regards,
J. Paul Schmidt, Freelance ASP Web Developer
http://www.Bullschmidt.com
ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...
*** Sent via Developersdex http://www.developersdex.com ***
Jul 22 '05 #4
On Tue, 26 Apr 2005 18:03:16 +0100, "Apple Plexy"
<ma******@yahoo .co.uk> wrote:
Thanks for the quick response - it wasnt really hyperlink building i had a
problem with - moreover it was where to send the information to - however
you're reply promted me to think more laterally and i managed to get it to
work by creating another asp page that will list the correct details when i
link to it i.e. artistspage.asp ?id=56 - where "id", I can generate on the
initial results page. - It is basic stuff - if you know how! lol -
And there are alternatives. Postback to the same page for example,
checking to see if the URL has an artist ID sent, if so, display the
choices and the detals on that artist. Or DHTML with hidden layers,
exposing the layer if the artist is selected.

Just to nudge you further into looking at all the options for
something you wish to do. There's often several ways to do something,
and one may be better technically or experientially for your needs.

Jeff

"Kyle Peterson" <kp*****@hotmai l.com> wrote in message
news:Om******* *******@tk2msft ngp13.phx.gbl.. .
one way to do is jsut build a dynamic hyperlink to another page feeding it
the variable (user ID maybe) needed to show more information.. its simple
stuff

http://www.powerasp.com/content/new/...hyperlinks.asp

"Apple Plexy" <ma******@yahoo .co.uk> wrote in message
news:42******** *************@p tn-nntp-reader03.plus.n et...
> tearing my hair out here...,
>
> I am creating a site to show artists work. I have a database and can
> retrieve and display a list of artisits, other info, and a related image
> for
> each artist - all drawn from the respective entries on the database.What > i
> would like to do is then use that record to dynamically generate another
> page that would display more detailed information about that onespecific > artist that the user clicks on - again drawn from that entry in the
> database, (rather than merely linking to a static html page - whichwould > require making some 120 extra pages). I was wondering whether i wouldlink > to another .asp page and force it to display contents relating to a
> specific
> id - but i dont know how to do that anyway.
>
> Im using access database and iis 5.0 generating .asp pages withVBscript. >
> Any help would be much appreciated.
>
> K
>
>
>



Jul 22 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
6942
by: Peter Row | last post by:
Hi, I am writing a DLL in VB.NET that implements IHttpHandler.ProcessRequest. This code calls a sub and I need to know if that sub did a response redirect or not. Specifically I need to know that either the sub did a redirect or a specific value was specified in the URL. If neither a redirect was done and a certain value was
2
1957
by: David | last post by:
SUMMARY: If you don't want to read all of this, what I'm looking for more or less is ideas on how to implement websites using ASP.NET that have a templated look and feel and many pages that make use of a template design. Hi- I'm new to ASP.NET and have been working for about 2 weeks on learning ASP.NET but it all still seems very murky to me. I've programmed sites in PHP and MySQL and also done programming in C++ and Java but I
1
1899
by: lauralucas | last post by:
Hello I'm using ASP.NET 1.1, Visual Studio 2003, IIS 5.1 and windows XP as development machine. I can work in this machine locally and create web apps that I can access via localhost. No problem at all. Now, I'm trying to deploy the app I done to a windows 2003 server, with IIS 6.0 and in wich I installed the Visual Studio 2003 server components (for web development). It has ASP.Net 1.1 too.
15
2580
by: Pucca | last post by:
I'm getting an error when I tried to use this BerConverter class in my C# code. Even though the Interent doc says that it runs on Win2000 sp4, I just thgouth I'll double check. Does anyone know if BerConverter is supported for Win2000 server? http://msdn2.microsoft.com/en-us/library/system.directoryservices.protocols.berconverter.decode.aspx -- Thanks.
9
1902
by: Coleen | last post by:
Hi All :-) I am desperately looking for some help/information on how to direct page flow. Forget what I have done - here's what I need to do: I have a large ASPX.Net - VB.Net web application (around 35-40 pages) that once the user logs in, I need to direct them to the correct page, depending on what they select from the directory. In other words...when they login, if they are a new user, a new account screen comes up and from there a...
10
3115
by: =?Utf-8?B?UHVjY2E=?= | last post by:
Hi, I'm using vs2005 and .net 2.0. I started 2 threadpool threads. How do I know when they're done with their tasks? Thanks. ThreadPool.QueueUserWorkItem(new WaitCallback(PopulateContextTable)); ThreadPool.QueueUserWorkItem(new WaitCallback(PopulatAdTable)); -- Thanks.
12
1946
by: better_cs_now | last post by:
Hello all, I suspect that a threading issue is leading to an object being destructed in one thread context while one of its member functions is still running in another thread context. As a means of confirming this, I would like to have the object check if it is alive in the referenced member function and report to me if it is not. However, I cannot think of a standards-compliant way for an object to know that it has been destructed.
20
3774
by: johnnyboy7 | last post by:
I don't know a lot about ASP and I know even less about SQL. I have been trying to search the web for information to be able to get done what I need. I've tried piecing things together from many different sites, adding my own info in where needed, but it just isn't working. What I want to do is, using an existing database setup for a calendar application, pull information out of the database and display a title of an entry that corresponds...
2
1718
by: Zerge | last post by:
I can launch threads just fine, but then I have to do a time.sleep(n) so the main thread from which they where launched will wait for all the threads to return. How can I detect when all threads are done and then return control to the main threads? Thanks for your help
3
1754
Parul Bagadia
by: Parul Bagadia | last post by:
Hello, I guess it may be related with some sort of memory organisation, but am not sure. Nywaz, the situation is , am working in Turbo C++ compiler..am making a program to simulate an assembler, where my input is a file named "micro", which has assembly code in it and needs to be converted in assembly language by no. of steps, out of which m done with some of them and working with other steps. Here I have taken a structure named MOT having 3...
0
9726
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9605
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10384
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10395
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10130
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5553
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5692
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3865
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3017
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.