|
 |
asp_web_howto thread: Links
Message #1 by "John Tarbell" <kmind711@a...> on Sat, 17 Nov 2001 00:38:24
|
|
Hello, I am new at .asp and I have seen sites with links for example
like "http://www.blah.com/sport?id=23" and I was just wondering how you
put the "?id=23" in there (like do you have to put something special on a
different page)?
Thanks and I hope I get some responses b/c I really need to know how!!! =)
Message #2 by "Daniel O'Dorisio" <daniel@o...> on Fri, 16 Nov 2001 21:56:04 -0500
|
|
anything after the ? is a querystring.. basically you just link to a page
and in the href statement, you just add that text there.. nothing special.
the special part comes when you get to the page you are going too.. on that
page you use the request object, and the querystring collection.. so it
would be:
request.querystring("name") where name is the name of the part of the
quweystring that you want. for example, this address in the browser
http://www.mydomain.com/page.asp?myval=asd&myval2=fgh
and this code in the page:
dim var1, var2
var1 = request.querystring("myval1")
var2 = request.querystring("myval2")
response.write var1 & " " var2
anyway. this should help you. things with the querystring can also be done
in clientside javascript as well.. allthough i have to look it up as im not
a great javascript coder. i do know that when you get the querystring. it
comes back all at once..
i took a little more time to reply on this one.... i guess i have too much
free time.. HA. but you can easily find all this info in a book. go get
beginning asp 3.0 by WROX.. im not affiliated with them in any way.. i just
love their stuff.
daniel
--
-----------------------------
Daniel O'Dorisio
daniel@o...
www.odorisio-networks.com
-----------------------------
"John Tarbell" <kmind711@a...> wrote in message
news:120737@a..._web_howto...
>
> Hello, I am new at .asp and I have seen sites with links for example
> like "http://www.blah.com/sport?id=23" and I was just wondering how you
> put the "?id=23" in there (like do you have to put something special on a
> different page)?
>
> Thanks and I hope I get some responses b/c I really need to know how!!! =)
>
>
Message #3 by "JOHN P. PARLATO" <jparlato@m...> on Sat, 17 Nov 2001 00:23:07 -0500
|
|
all you have to do is add the ?id-23 to the end of the url.
This is adding what is called a query string to the request. The ? signals
the beginging of the
first string. You add others like this ?id=23&name=Jp&nextpage=10
-----Original Message-----
From: John Tarbell [mailto:kmind711@a...]
Sent: Saturday, November 17, 2001 12:38 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Links
Hello, I am new at .asp and I have seen sites with links for example
like "http://www.blah.com/sport?id=23" and I was just wondering how you
put the "?id=23" in there (like do you have to put something special on a
different page)?
Thanks and I hope I get some responses b/c I really need to know how!!! =)
$subst('Email.Unsub')
Message #4 by "John Tarbell" <kmind711@a...> on Sat, 17 Nov 2001 13:46:56
|
|
Thank you all for answering this question!!!
Thanks again,
John
Message #5 by "Jason Salas" <jason@k...> on Sat, 17 Nov 2001 14:18:30
|
|
The other are right...any characters starting with a question mark in a
URL are a QUERYSTRING. The easiest way to put values into the querystring
would be to do so from a posting a form with the "GET" method set in the
ACTION attribute of the HTML <form> tag. For example, using the following
two pages will produce the folllowing URL:
page2.asp?FIRSTNAME=jason&LASTNAME=salas
************* PAGE1.ASP *******************
<html><body>
<form action="page2.asp" metod="get">
<input type="text" name="FIRSTNAME"><br>
Enter your first name:<p>
<input type="text" name="LASTNAME"><br>
Enter your last name:<p>
<input type="submit" name="SUBMIT">
</body></html>
************* PAGE2.ASP *******************
<% @ Language=VBScript %>
<%
Dim first, last
first = Request.QueryString("FIRSTNAME")
last = Request.QueryString("LASTNAME")
Response.Write "This is the data you entered: " & first & " " & last
%>
At higher levels, ASP developers use querystrings to pass values stored in
databases, for things like publishing in e-commerce.
HTH,
Jason
---------------------------------------------------
Jason Salas, MBA, MCP
Web Development Manager
Pacific Telestations, Inc. (dba, "KUAM")
> Hello, I am new at .asp and I have seen sites with links for example
> like "http://www.blah.com/sport?id=23" and I was just wondering how you
> put the "?id=23" in there (like do you have to put something special on
a
> different page)?
>
> Thanks and I hope I get some responses b/c I really need to know how!!!
=)
Message #6 by "John Tarbell" <kmind711@a...> on Sun, 18 Nov 2001 23:47:30
|
|
> The other are right...any characters starting with a question mark in a
> URL are a QUERYSTRING. The easiest way to put values into the
querystring
> would be to do so from a posting a form with the "GET" method set in the
> ACTION attribute of the HTML <form> tag. For example, using the
following
> two pages will produce the folllowing URL:
>
> page2.asp?FIRSTNAME=jason&LASTNAME=salas
>
> ************* PAGE1.ASP *******************
> <html><body>
> <form action="page2.asp" metod="get">
> <input type="text" name="FIRSTNAME"><br>
> Enter your first name:<p>
> <input type="text" name="LASTNAME"><br>
> Enter your last name:<p>
> <input type="submit" name="SUBMIT">
> </body></html>
>
OK, i understand how to do the code with like the first name and last name
but i see on the links how it says like ?id=23 or whatever and when i go
to the page it has a lot of things on the page but it never says like that
the id=23 on the page. How is this done?
> ************* PAGE2.ASP *******************
> <% @ Language=VBScript %>
>
> <%
> Dim first, last
> first = Request.QueryString("FIRSTNAME")
> last = Request.QueryString("LASTNAME")
>
> Response.Write "This is the data you entered: " & first & " " & last
>
> %>
>
> At higher levels, ASP developers use querystrings to pass values stored
in
> databases, for things like publishing in e-commerce.
>
> HTH,
> Jason
>
> ---------------------------------------------------
> Jason Salas, MBA, MCP
> Web Development Manager
> Pacific Telestations, Inc. (dba, "KUAM")
>
>
>
> > Hello, I am new at .asp and I have seen sites with links for example
> > like "http://www.blah.com/sport?id=23" and I was just wondering how
you
> > put the "?id=23" in there (like do you have to put something special
on
> a
> > different page)?
> >
> > Thanks and I hope I get some responses b/c I really need to know
how!!!
> =)
Message #7 by "Jason Salas" <jason@k...> on Mon, 19 Nov 2001 09:52:31 +1000
|
|
Hi John,
When people do things like "filename.asp?id=23" they are typically
connecting to a database and displaying the results of a specific record in
the DB which is called when a user does something, like clicking on a
hyperlink. The number is usually the unique key identifier for the record.
In the code, this is assigned dynamically by writing the SQL statement
on-the-fly. An example of this would be:
Dim id, strSQL
strSQL = "SELECT * FROM tableName WHERE id = '" & id & "'"
...this would call upon a precice value for the "id" (again, typically the
unique key in a DB table) and then bring up that record.
HTH,
Jason
----- Original Message -----
From: "John Tarbell" <kmind711@a...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Sunday, November 18, 2001 11:47 PM
Subject: [asp_web_howto] Re: Links
>> OK, i understand how to do the code with like the first name and last
name
> but i see on the links how it says like ?id=23 or whatever and when i go
> to the page it has a lot of things on the page but it never says like that
> the id=23 on the page. How is this done?
Message #8 by "Daniel O'Dorisio" <daniel@o...> on Sun, 18 Nov 2001 19:05:38 -0500
|
|
have you studied any?? go get a book on asp.. beginning asp 3.0 is a good
one.. it will let you in on all the secrets:-)
daniel
--
-----------------------------
Daniel O'Dorisio
daniel@o...
www.odorisio-networks.com
-----------------------------
"John Tarbell" <kmind711@a...> wrote in message
news:120898@a..._web_howto...
>
> > The other are right...any characters starting with a question mark in a
> > URL are a QUERYSTRING. The easiest way to put values into the
> querystring
> > would be to do so from a posting a form with the "GET" method set in the
> > ACTION attribute of the HTML <form> tag. For example, using the
> following
> > two pages will produce the folllowing URL:
> >
> > page2.asp?FIRSTNAME=jason&LASTNAME=salas
> >
> > ************* PAGE1.ASP *******************
> > <html><body>
> > <form action="page2.asp" metod="get">
> > <input type="text" name="FIRSTNAME"><br>
> > Enter your first name:<p>
> > <input type="text" name="LASTNAME"><br>
> > Enter your last name:<p>
> > <input type="submit" name="SUBMIT">
> > </body></html>
> >
>
> OK, i understand how to do the code with like the first name and last name
> but i see on the links how it says like ?id=23 or whatever and when i go
> to the page it has a lot of things on the page but it never says like that
> the id=23 on the page. How is this done?
> > ************* PAGE2.ASP *******************
> > <% @ Language=VBScript %>
> >
> > <%
> > Dim first, last
> > first = Request.QueryString("FIRSTNAME")
> > last = Request.QueryString("LASTNAME")
> >
> > Response.Write "This is the data you entered: " & first & " " & last
> >
> > %>
> >
> > At higher levels, ASP developers use querystrings to pass values stored
> in
> > databases, for things like publishing in e-commerce.
> >
> > HTH,
> > Jason
> >
> > ---------------------------------------------------
> > Jason Salas, MBA, MCP
> > Web Development Manager
> > Pacific Telestations, Inc. (dba, "KUAM")
> >
> >
> >
> > > Hello, I am new at .asp and I have seen sites with links for example
> > > like "http://www.blah.com/sport?id=23" and I was just wondering how
> you
> > > put the "?id=23" in there (like do you have to put something special
> on
> > a
> > > different page)?
> > >
> > > Thanks and I hope I get some responses b/c I really need to know
> how!!!
> > =)
>
>
Message #9 by "Daniel O'Dorisio" <daniel@o...> on Sun, 18 Nov 2001 19:21:17 -0500
|
|
one other thing to try.. search google for using querystrings in asp:
http://www.google.com/search?hl=en&q=using+querystrings+in+asp
(watch wrapping)
daniel
--
-----------------------------
Daniel O'Dorisio
daniel@o...
www.odorisio-networks.com
-----------------------------
"John Tarbell" <kmind711@a...> wrote in message
news:120898@a..._web_howto...
>
> > The other are right...any characters starting with a question mark in a
> > URL are a QUERYSTRING. The easiest way to put values into the
> querystring
> > would be to do so from a posting a form with the "GET" method set in the
> > ACTION attribute of the HTML <form> tag. For example, using the
> following
> > two pages will produce the folllowing URL:
> >
> > page2.asp?FIRSTNAME=jason&LASTNAME=salas
> >
> > ************* PAGE1.ASP *******************
> > <html><body>
> > <form action="page2.asp" metod="get">
> > <input type="text" name="FIRSTNAME"><br>
> > Enter your first name:<p>
> > <input type="text" name="LASTNAME"><br>
> > Enter your last name:<p>
> > <input type="submit" name="SUBMIT">
> > </body></html>
> >
>
> OK, i understand how to do the code with like the first name and last name
> but i see on the links how it says like ?id=23 or whatever and when i go
> to the page it has a lot of things on the page but it never says like that
> the id=23 on the page. How is this done?
> > ************* PAGE2.ASP *******************
> > <% @ Language=VBScript %>
> >
> > <%
> > Dim first, last
> > first = Request.QueryString("FIRSTNAME")
> > last = Request.QueryString("LASTNAME")
> >
> > Response.Write "This is the data you entered: " & first & " " & last
> >
> > %>
> >
> > At higher levels, ASP developers use querystrings to pass values stored
> in
> > databases, for things like publishing in e-commerce.
> >
> > HTH,
> > Jason
> >
> > ---------------------------------------------------
> > Jason Salas, MBA, MCP
> > Web Development Manager
> > Pacific Telestations, Inc. (dba, "KUAM")
> >
> >
> >
> > > Hello, I am new at .asp and I have seen sites with links for example
> > > like "http://www.blah.com/sport?id=23" and I was just wondering how
> you
> > > put the "?id=23" in there (like do you have to put something special
> on
> > a
> > > different page)?
> > >
> > > Thanks and I hope I get some responses b/c I really need to know
> how!!!
> > =)
>
>
Message #10 by "John Tarbell" <kmind711@a...> on Mon, 19 Nov 2001 22:22:15
|
|
> Hi John,
>
> When people do things like "filename.asp?id=23" they are typically
> connecting to a database and displaying the results of a specific record
in
> the DB which is called when a user does something, like clicking on a
> hyperlink. The number is usually the unique key identifier for the
record.
>
> In the code, this is assigned dynamically by writing the SQL statement
> on-the-fly. An example of this would be:
>
> Dim id, strSQL
> strSQL = "SELECT * FROM tableName WHERE id = '" & id & "'"
>
> ...this would call upon a precice value for the "id" (again, typically
the
> unique key in a DB table) and then bring up that record.
>
> HTH,
> Jason
>
OK, thanks again for all your help and, yes, I do have another question!
(sorry) I know that you are supposed to use Access databases but I donnot
have that and was wondering if I could use a Microsoft Works database? If
so, would I do anything different with a Works database and an Access
database?
Thanks,
John
>
>
>
> ----- Original Message -----
> From: "John Tarbell" <kmind711@a...>
> To: "ASP Web HowTo" <asp_web_howto@p...>
> Sent: Sunday, November 18, 2001 11:47 PM
> Subject: [asp_web_howto] Re: Links
>
>
> >> OK, i understand how to do the code with like the first name and last
> name
> > but i see on the links how it says like ?id=23 or whatever and when i
go
> > to the page it has a lot of things on the page but it never says like
that
> > the id=23 on the page. How is this done?
>
>
Message #11 by "Jason Salas" <jason@k...> on Tue, 20 Nov 2001 08:28:40 +1000
|
|
Hmmm...ouch. I don't believe there's a way to connect an MS Works database
to a Web pages...Works' DB program isn't really a "real" DB application,
like Access or SQL Server would be. Like the rest of the tools in Works,
it's a scaled-down version of a traditional business app.
Jason
----- Original Message -----
From: "John Tarbell" <kmind711@a...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Monday, November 19, 2001 10:22 PM
Subject: [asp_web_howto] Re: Links
> > Hi John,
> OK, thanks again for all your help and, yes, I do have another question!
> (sorry) I know that you are supposed to use Access databases but I donnot
> have that and was wondering if I could use a Microsoft Works database? If
> so, would I do anything different with a Works database and an Access
> database?
>
> Thanks,
> John
>
> >
> >
> >
> > ----- Original Message -----
> > From: "John Tarbell" <kmind711@a...>
> > To: "ASP Web HowTo" <asp_web_howto@p...>
> > Sent: Sunday, November 18, 2001 11:47 PM
> > Subject: [asp_web_howto] Re: Links
> >
> >
> > >> OK, i understand how to do the code with like the first name and last
> > name
> > > but i see on the links how it says like ?id=23 or whatever and when i
> go
> > > to the page it has a lot of things on the page but it never says like
> that
> > > the id=23 on the page. How is this done?
> >
> >
>
$subst('Email.Unsub')
>
>
Message #12 by "Daniel O'Dorisio" <daniel@o...> on Mon, 19 Nov 2001 23:03:58 -0500
|
|
i would have to argue that access is even a "real" db application..
daniel
--
-----------------------------
Daniel O'Dorisio
daniel@o...
www.odorisio-networks.com
-----------------------------
"Jason Salas" <jason@k...> wrote in message news:121278@a..._web_howto...
>
> Hmmm...ouch. I don't believe there's a way to connect an MS Works
database
> to a Web pages...Works' DB program isn't really a "real" DB application,
> like Access or SQL Server would be. Like the rest of the tools in Works,
> it's a scaled-down version of a traditional business app.
>
> Jason
>
>
> ----- Original Message -----
> From: "John Tarbell" <kmind711@a...>
> To: "ASP Web HowTo" <asp_web_howto@p...>
> Sent: Monday, November 19, 2001 10:22 PM
> Subject: [asp_web_howto] Re: Links
>
>
> > > Hi John,
> > OK, thanks again for all your help and, yes, I do have another question!
> > (sorry) I know that you are supposed to use Access databases but I
donnot
> > have that and was wondering if I could use a Microsoft Works database?
If
> > so, would I do anything different with a Works database and an Access
> > database?
> >
> > Thanks,
> > John
> >
> > >
> > >
> > >
> > > ----- Original Message -----
> > > From: "John Tarbell" <kmind711@a...>
> > > To: "ASP Web HowTo" <asp_web_howto@p...>
> > > Sent: Sunday, November 18, 2001 11:47 PM
> > > Subject: [asp_web_howto] Re: Links
> > >
> > >
> > > >> OK, i understand how to do the code with like the first name and
last
> > > name
> > > > but i see on the links how it says like ?id=23 or whatever and when
i
> > go
> > > > to the page it has a lot of things on the page but it never says
like
> > that
> > > > the id=23 on the page. How is this done?
> > >
> > >
> >
> $subst('Email.Unsub')
> >
> >
>
>
>
Message #13 by "Ken Schaefer" <ken@a...> on Tue, 20 Nov 2001 15:41:19 +1100
|
|
Well, Access is an application, and Jet is the database.
That said Access/Jet is a great single user database. It's just not designed
to be multi-user database.
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Daniel O'Dorisio" <daniel@o...>
Subject: [asp_web_howto] Re: Links
: i would have to argue that access is even a "real" db application..
:
: daniel
:
: --
: -----------------------------
: Daniel O'Dorisio
: daniel@o...
: www.odorisio-networks.com
: -----------------------------
: "Jason Salas" <jason@k...> wrote in message
news:121278@a..._web_howto...
: >
: > Hmmm...ouch. I don't believe there's a way to connect an MS Works
: database
: > to a Web pages...Works' DB program isn't really a "real" DB application,
: > like Access or SQL Server would be. Like the rest of the tools in
Works,
: > it's a scaled-down version of a traditional business app.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message #14 by "Morgan, Rob" <Rob.Morgan@o...> on Tue, 20 Nov 2001 06:43:59 -0500
|
|
I thought I saw somewhere that jet could only handle a max of 30 users.
That true?
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: Monday, November 19, 2001 11:41 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Links
Well, Access is an application, and Jet is the database.
That said Access/Jet is a great single user database. It's just not designed
to be multi-user database.
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Daniel O'Dorisio" <daniel@o...>
Subject: [asp_web_howto] Re: Links
: i would have to argue that access is even a "real" db application..
:
: daniel
:
: --
: -----------------------------
: Daniel O'Dorisio
: daniel@o...
: www.odorisio-networks.com
: -----------------------------
: "Jason Salas" <jason@k...> wrote in message
news:121278@a..._web_howto...
: >
: > Hmmm...ouch. I don't believe there's a way to connect an MS Works
: database
: > to a Web pages...Works' DB program isn't really a "real" DB application,
: > like Access or SQL Server would be. Like the rest of the tools in
Works,
: > it's a scaled-down version of a traditional business app.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$subst('Email.Unsub')
Message #15 by Kyle Burns <kburns@c...> on Tue, 20 Nov 2001 12:00:53 -0500
|
|
I wouldn't trust a 30 user app to Jet. I get uncomfortable when the user
count hits 5-10.
=================================
Kyle M. Burns, MCSD, MCT
ECommerce Technology Manager
Centra Credit Union
kburns@c...
-----Original Message-----
From: Morgan, Rob [mailto:Rob.Morgan@o...]
Sent: Tuesday, November 20, 2001 6:44 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Links
I thought I saw somewhere that jet could only handle a max of 30 users.
That true?
-----Original Message-----
From: Ken Schaefer [mailto:ken@a...]
Sent: Monday, November 19, 2001 11:41 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Links
Well, Access is an application, and Jet is the database.
That said Access/Jet is a great single user database. It's just not designed
to be multi-user database.
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Daniel O'Dorisio" <daniel@o...>
Subject: [asp_web_howto] Re: Links
: i would have to argue that access is even a "real" db application..
:
: daniel
:
: --
: -----------------------------
: Daniel O'Dorisio
: daniel@o...
: www.odorisio-networks.com
: -----------------------------
: "Jason Salas" <jason@k...> wrote in message
news:121278@a..._web_howto...
: >
: > Hmmm...ouch. I don't believe there's a way to connect an MS Works
: database
: > to a Web pages...Works' DB program isn't really a "real" DB application,
: > like Access or SQL Server would be. Like the rest of the tools in
Works,
: > it's a scaled-down version of a traditional business app.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$subst('Email.Unsub')
$subst('Email.Unsub')
Message #16 by "Daniel O'Dorisio" <daniel@o...> on Tue, 20 Nov 2001 12:33:48 -0500
|
|
if you are concerned about cost.. get mysql.. www.mysql.com you will have to
use odbc, unless you can find a ole db driver.. i havnt found one yet.
daniel
--
-----------------------------
Daniel O'Dorisio
daniel@o...
www.odorisio-networks.com
-----------------------------
"John Tarbell" <kmind711@a...> wrote in message
news:121262@a..._web_howto...
>
> > Hi John,
> >
> > When people do things like "filename.asp?id=23" they are typically
> > connecting to a database and displaying the results of a specific record
> in
> > the DB which is called when a user does something, like clicking on a
> > hyperlink. The number is usually the unique key identifier for the
> record.
> >
> > In the code, this is assigned dynamically by writing the SQL statement
> > on-the-fly. An example of this would be:
> >
> > Dim id, strSQL
> > strSQL = "SELECT * FROM tableName WHERE id = '" & id & "'"
> >
> > ...this would call upon a precice value for the "id" (again, typically
> the
> > unique key in a DB table) and then bring up that record.
> >
> > HTH,
> > Jason
> >
> OK, thanks again for all your help and, yes, I do have another question!
> (sorry) I know that you are supposed to use Access databases but I donnot
> have that and was wondering if I could use a Microsoft Works database? If
> so, would I do anything different with a Works database and an Access
> database?
>
> Thanks,
> John
>
> >
> >
> >
> > ----- Original Message -----
> > From: "John Tarbell" <kmind711@a...>
> > To: "ASP Web HowTo" <asp_web_howto@p...>
> > Sent: Sunday, November 18, 2001 11:47 PM
> > Subject: [asp_web_howto] Re: Links
> >
> >
> > >> OK, i understand how to do the code with like the first name and last
> > name
> > > but i see on the links how it says like ?id=23 or whatever and when i
> go
> > > to the page it has a lot of things on the page but it never says like
> that
> > > the id=23 on the page. How is this done?
> >
> >
>
>
Message #17 by "Jason Salas" <jason@k...> on Wed, 21 Nov 2001 07:20:30 +1000
|
|
Simultaneous connections...users accessing a particular DB resource through
Access at the very same nanosecond...yeah (actually, I thought it was little
less for Web DBs using Access). Yikes.
Jason
----- Original Message -----
From: "Morgan, Rob" <Rob.Morgan@o...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Tuesday, November 20, 2001 9:43 PM
Subject: [asp_web_howto] Re: Links
> I thought I saw somewhere that jet could only handle a max of 30 users.
> That true?
>
> -----Original Message-----
> From: Ken Schaefer [mailto:ken@a...]
> Sent: Monday, November 19, 2001 11:41 PM
> To: ASP Web HowTo
> Subject: [asp_web_howto] Re: Links
>
>
> Well, Access is an application, and Jet is the database.
> That said Access/Jet is a great single user database. It's just not
designed
> to be multi-user database.
>
> Cheers
> Ken
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> From: "Daniel O'Dorisio" <daniel@o...>
> Subject: [asp_web_howto] Re: Links
>
>
> : i would have to argue that access is even a "real" db application..
> :
> : daniel
> :
> : --
> : -----------------------------
> : Daniel O'Dorisio
> : daniel@o...
> : www.odorisio-networks.com
> : -----------------------------
> : "Jason Salas" <jason@k...> wrote in message
> news:121278@a..._web_howto...
> : >
> : > Hmmm...ouch. I don't believe there's a way to connect an MS Works
> : database
> : > to a Web pages...Works' DB program isn't really a "real" DB
application,
> : > like Access or SQL Server would be. Like the rest of the tools in
> Works,
> : > it's a scaled-down version of a traditional business app.
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
>
rob.morgan@o...
> $subst('Email.Unsub')
>
$subst('Email.Unsub')
>
>
Message #18 by "Ken Schaefer" <ken@a...> on Wed, 21 Nov 2001 12:49:04 +1100
|
|
Connections? Max theoretical limit is 256. There is a really good paper on
Jet locking you can download from here:
http://support.microsoft.com/support/kb/articles/Q176/6/70.ASP
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Morgan, Rob" <Rob.Morgan@o...>
Subject: [asp_web_howto] Re: Links
: I thought I saw somewhere that jet could only handle a max of 30 users.
: That true?
:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
 |