473,320 Members | 2,006 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

user access to only selected pages

joe
Some time ago I set up an ASP application that used a login page which
checked a username and password against a database to determine a users
authorization to access certain pages on the site. This was done by setting
a session variable within the application if the user was authorized and
using code one each page for which protection was required to check for the
status of the session variable.

Now I am aware of the various techniques that ASP.NET provides to allow or
preclude access to asp.net apps but frankly I really liked that other one
because it didn't use cookies which many users are a bit afraid of.

My problem is this....I can't remember how I set it up and I don't know
where to look. I think I found the technique in an old ASP book (vs
asp.net).

Does anyone know where I can look to find this technique in the form of
sample code or a tutorial?

and

Is this a viable technique to use in ASP.Net?
Thanks in advance
Nov 17 '05 #1
8 1640
You can put each group of files into their own subfolders under your root
web application, and then create a web.config for each subfolder with the
appropriate settings in it.
You could alternately do this with a single web.config file by using the
<location> tag.
Here's more info on that and an example:
http://www.dotnetbips.com/displayarticle.aspx?id=117

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"joe" <contact_by_Newsgroup_only.please> wrote in message
news:u$**************@TK2MSFTNGP10.phx.gbl...
Some time ago I set up an ASP application that used a login page which
checked a username and password against a database to determine a users
authorization to access certain pages on the site. This was done by setting a session variable within the application if the user was authorized and
using code one each page for which protection was required to check for the status of the session variable.

Now I am aware of the various techniques that ASP.NET provides to allow or
preclude access to asp.net apps but frankly I really liked that other one
because it didn't use cookies which many users are a bit afraid of.

My problem is this....I can't remember how I set it up and I don't know
where to look. I think I found the technique in an old ASP book (vs
asp.net).

Does anyone know where I can look to find this technique in the form of
sample code or a tutorial?

and

Is this a viable technique to use in ASP.Net?
Thanks in advance

Nov 17 '05 #2
joe
Thanks Steve I've read that but call me dumb but I don't see how it works.
Perhaps I'm missing something, I don't see the way it :

1) determines which users to permit access to

nor

2) how it maintains the users status once authorized should the user request
additional pages in the protected folder.
Is that done in the web.config file? I don't see any instructions at that
link on how to accomplish this whithout using cookies.


"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:ev**************@tk2msftngp13.phx.gbl...
You can put each group of files into their own subfolders under your root
web application, and then create a web.config for each subfolder with the
appropriate settings in it.
You could alternately do this with a single web.config file by using the
<location> tag.
Here's more info on that and an example:
http://www.dotnetbips.com/displayarticle.aspx?id=117

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"joe" <contact_by_Newsgroup_only.please> wrote in message
news:u$**************@TK2MSFTNGP10.phx.gbl...
Some time ago I set up an ASP application that used a login page which
checked a username and password against a database to determine a users
authorization to access certain pages on the site. This was done by

setting
a session variable within the application if the user was authorized and
using code one each page for which protection was required to check for

the
status of the session variable.

Now I am aware of the various techniques that ASP.NET provides to allow or preclude access to asp.net apps but frankly I really liked that other one because it didn't use cookies which many users are a bit afraid of.

My problem is this....I can't remember how I set it up and I don't know
where to look. I think I found the technique in an old ASP book (vs
asp.net).

Does anyone know where I can look to find this technique in the form of
sample code or a tutorial?

and

Is this a viable technique to use in ASP.Net?
Thanks in advance


Nov 17 '05 #3
It uses forms authentication, which uses cookies.
Here's more info on basic forms authentication:
http://www.dotnetbips.com/displayarticle.aspx?id=9

Of course you can also set Forms Authentication to work if the user has
cookies turned off by setting the cookieless="true" in your web.config.
Then it will munge the session id into the URL automatically.
You can specify which files and folders to allow to to which users in your
web.config file.
There is a link to sample code that you can download and play with.
http://www.dotnetbips.com/displayarticle.aspx?id=117

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"joe" <contact_by_Newsgroup_only.please> wrote in message
news:u4*************@tk2msftngp13.phx.gbl...
Thanks Steve I've read that but call me dumb but I don't see how it works.
Perhaps I'm missing something, I don't see the way it :

1) determines which users to permit access to

nor

2) how it maintains the users status once authorized should the user request additional pages in the protected folder.
Is that done in the web.config file? I don't see any instructions at that
link on how to accomplish this whithout using cookies.


"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:ev**************@tk2msftngp13.phx.gbl...
You can put each group of files into their own subfolders under your root
web application, and then create a web.config for each subfolder with the appropriate settings in it.
You could alternately do this with a single web.config file by using the
<location> tag.
Here's more info on that and an example:
http://www.dotnetbips.com/displayarticle.aspx?id=117

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"joe" <contact_by_Newsgroup_only.please> wrote in message
news:u$**************@TK2MSFTNGP10.phx.gbl...
Some time ago I set up an ASP application that used a login page which
checked a username and password against a database to determine a users authorization to access certain pages on the site. This was done by setting
a session variable within the application if the user was authorized and using code one each page for which protection was required to check for
the
status of the session variable.

Now I am aware of the various techniques that ASP.NET provides to

allow or preclude access to asp.net apps but frankly I really liked that other one because it didn't use cookies which many users are a bit afraid of.

My problem is this....I can't remember how I set it up and I don't

know where to look. I think I found the technique in an old ASP book (vs
asp.net).

Does anyone know where I can look to find this technique in the form of sample code or a tutorial?

and

Is this a viable technique to use in ASP.Net?
Thanks in advance



Nov 17 '05 #4
joe
Thanks Steve...I'll check it out.
"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:Ok**************@TK2MSFTNGP12.phx.gbl...
It uses forms authentication, which uses cookies.
Here's more info on basic forms authentication:
http://www.dotnetbips.com/displayarticle.aspx?id=9

Of course you can also set Forms Authentication to work if the user has
cookies turned off by setting the cookieless="true" in your web.config.
Then it will munge the session id into the URL automatically.
You can specify which files and folders to allow to to which users in your
web.config file.
There is a link to sample code that you can download and play with.
http://www.dotnetbips.com/displayarticle.aspx?id=117

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"joe" <contact_by_Newsgroup_only.please> wrote in message
news:u4*************@tk2msftngp13.phx.gbl...
Thanks Steve I've read that but call me dumb but I don't see how it works.
Perhaps I'm missing something, I don't see the way it :

1) determines which users to permit access to

nor

2) how it maintains the users status once authorized should the user

request
additional pages in the protected folder.
Is that done in the web.config file? I don't see any instructions at that link on how to accomplish this whithout using cookies.


"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:ev**************@tk2msftngp13.phx.gbl...
You can put each group of files into their own subfolders under your root web application, and then create a web.config for each subfolder with the appropriate settings in it.
You could alternately do this with a single web.config file by using the <location> tag.
Here's more info on that and an example:
http://www.dotnetbips.com/displayarticle.aspx?id=117

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"joe" <contact_by_Newsgroup_only.please> wrote in message
news:u$**************@TK2MSFTNGP10.phx.gbl...
> Some time ago I set up an ASP application that used a login page which > checked a username and password against a database to determine a users > authorization to access certain pages on the site. This was done by
setting
> a session variable within the application if the user was authorized and > using code one each page for which protection was required to check for the
> status of the session variable.
>
> Now I am aware of the various techniques that ASP.NET provides to allow
or
> preclude access to asp.net apps but frankly I really liked that

other one
> because it didn't use cookies which many users are a bit afraid of.
>
> My problem is this....I can't remember how I set it up and I don't

know > where to look. I think I found the technique in an old ASP book (vs
> asp.net).
>
> Does anyone know where I can look to find this technique in the form of > sample code or a tutorial?
>
> and
>
> Is this a viable technique to use in ASP.Net?
>
>
> Thanks in advance
>
>



Nov 17 '05 #5
joe
I see they have put the user names and passwords in the login.vb file. Isn't
this (hard coding) a potential security problem?

I realize it is not presented in the HTML on the client and the server does
all the work but it just makes me a bit uncomfortable.

Or am I wrong?


"joe" <contact_by_Newsgroup_only.please> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Thanks Steve...I'll check it out.
"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:Ok**************@TK2MSFTNGP12.phx.gbl...
It uses forms authentication, which uses cookies.
Here's more info on basic forms authentication:
http://www.dotnetbips.com/displayarticle.aspx?id=9

Of course you can also set Forms Authentication to work if the user has
cookies turned off by setting the cookieless="true" in your web.config.
Then it will munge the session id into the URL automatically.
You can specify which files and folders to allow to to which users in your
web.config file.
There is a link to sample code that you can download and play with.
http://www.dotnetbips.com/displayarticle.aspx?id=117

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"joe" <contact_by_Newsgroup_only.please> wrote in message
news:u4*************@tk2msftngp13.phx.gbl...
Thanks Steve I've read that but call me dumb but I don't see how it works. Perhaps I'm missing something, I don't see the way it :

1) determines which users to permit access to

nor

2) how it maintains the users status once authorized should the user

request
additional pages in the protected folder.
Is that done in the web.config file? I don't see any instructions at that link on how to accomplish this whithout using cookies.


"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:ev**************@tk2msftngp13.phx.gbl...
> You can put each group of files into their own subfolders under your

root
> web application, and then create a web.config for each subfolder with the
> appropriate settings in it.
> You could alternately do this with a single web.config file by using the > <location> tag.
> Here's more info on that and an example:
> http://www.dotnetbips.com/displayarticle.aspx?id=117
>
> --
> I hope this helps,
> Steve C. Orr, MCSD
> http://Steve.Orr.net
>
>
> "joe" <contact_by_Newsgroup_only.please> wrote in message
> news:u$**************@TK2MSFTNGP10.phx.gbl...
> > Some time ago I set up an ASP application that used a login page which > > checked a username and password against a database to determine a

users
> > authorization to access certain pages on the site. This was done
by > setting
> > a session variable within the application if the user was authorized
and
> > using code one each page for which protection was required to
check for
> the
> > status of the session variable.
> >
> > Now I am aware of the various techniques that ASP.NET provides to

allow
or
> > preclude access to asp.net apps but frankly I really liked that other one
> > because it didn't use cookies which many users are a bit afraid

of. > >
> > My problem is this....I can't remember how I set it up and I don't

know
> > where to look. I think I found the technique in an old ASP book (vs > > asp.net).
> >
> > Does anyone know where I can look to find this technique in the

form of
> > sample code or a tutorial?
> >
> > and
> >
> > Is this a viable technique to use in ASP.Net?
> >
> >
> > Thanks in advance
> >
> >
>
>



Nov 17 '05 #6
you should buy a book it would save time posting
"joe" <contact_by_Newsgroup_only.please> wrote in message
news:#L**************@TK2MSFTNGP12.phx.gbl...
I see they have put the user names and passwords in the login.vb file. Isn't this (hard coding) a potential security problem?

I realize it is not presented in the HTML on the client and the server does all the work but it just makes me a bit uncomfortable.

Or am I wrong?


"joe" <contact_by_Newsgroup_only.please> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Thanks Steve...I'll check it out.
"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:Ok**************@TK2MSFTNGP12.phx.gbl...
It uses forms authentication, which uses cookies.
Here's more info on basic forms authentication:
http://www.dotnetbips.com/displayarticle.aspx?id=9

Of course you can also set Forms Authentication to work if the user has cookies turned off by setting the cookieless="true" in your web.config. Then it will munge the session id into the URL automatically.
You can specify which files and folders to allow to to which users in your web.config file.
There is a link to sample code that you can download and play with.
http://www.dotnetbips.com/displayarticle.aspx?id=117

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"joe" <contact_by_Newsgroup_only.please> wrote in message
news:u4*************@tk2msftngp13.phx.gbl...
> Thanks Steve I've read that but call me dumb but I don't see how it

works.
> Perhaps I'm missing something, I don't see the way it :
>
> 1) determines which users to permit access to
>
> nor
>
> 2) how it maintains the users status once authorized should the user
request
> additional pages in the protected folder.
>
>
> Is that done in the web.config file? I don't see any instructions at
that
> link on how to accomplish this whithout using cookies.
>
>
>
>
>
>
> "Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
> news:ev**************@tk2msftngp13.phx.gbl...
> > You can put each group of files into their own subfolders under
your root
> > web application, and then create a web.config for each subfolder with the
> > appropriate settings in it.
> > You could alternately do this with a single web.config file by using the
> > <location> tag.
> > Here's more info on that and an example:
> > http://www.dotnetbips.com/displayarticle.aspx?id=117
> >
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD
> > http://Steve.Orr.net
> >
> >
> > "joe" <contact_by_Newsgroup_only.please> wrote in message
> > news:u$**************@TK2MSFTNGP10.phx.gbl...
> > > Some time ago I set up an ASP application that used a login page

which
> > > checked a username and password against a database to determine
a users
> > > authorization to access certain pages on the site. This was done

by > > setting
> > > a session variable within the application if the user was authorized and
> > > using code one each page for which protection was required to check for
> > the
> > > status of the session variable.
> > >
> > > Now I am aware of the various techniques that ASP.NET provides to allow
> or
> > > preclude access to asp.net apps but frankly I really liked that

other
> one
> > > because it didn't use cookies which many users are a bit afraid of. > > >
> > > My problem is this....I can't remember how I set it up and I don't know
> > > where to look. I think I found the technique in an old ASP book (vs > > > asp.net).
> > >
> > > Does anyone know where I can look to find this technique in the form of
> > > sample code or a tutorial?
> > >
> > > and
> > >
> > > Is this a viable technique to use in ASP.Net?
> > >
> > >
> > > Thanks in advance
> > >
> > >
> >
> >
>
>



Nov 17 '05 #7
joe
Thanks again Steve.
"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:O$**************@TK2MSFTNGP10.phx.gbl...
You can use a database for this if you prefer.
Here are some examples:
http://msdn.microsoft.com/library/de...SecNetHT03.asp http://www.4guysfromrolla.com/webtech/121901-1.shtml

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"joe" <contact_by_Newsgroup_only.please> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I see they have put the user names and passwords in the login.vb file. Isn't
this (hard coding) a potential security problem?

I realize it is not presented in the HTML on the client and the server

does
all the work but it just makes me a bit uncomfortable.

Or am I wrong?


"joe" <contact_by_Newsgroup_only.please> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Thanks Steve...I'll check it out.
"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:Ok**************@TK2MSFTNGP12.phx.gbl...
> It uses forms authentication, which uses cookies.
> Here's more info on basic forms authentication:
> http://www.dotnetbips.com/displayarticle.aspx?id=9
>
> Of course you can also set Forms Authentication to work if the user has > cookies turned off by setting the cookieless="true" in your web.config. > Then it will munge the session id into the URL automatically.
> You can specify which files and folders to allow to to which users in
your
> web.config file.
> There is a link to sample code that you can download and play with.
> http://www.dotnetbips.com/displayarticle.aspx?id=117
>
> --
> I hope this helps,
> Steve C. Orr, MCSD
> http://Steve.Orr.net
>
>
>
> "joe" <contact_by_Newsgroup_only.please> wrote in message
> news:u4*************@tk2msftngp13.phx.gbl...
> > Thanks Steve I've read that but call me dumb but I don't see how
it works.
> > Perhaps I'm missing something, I don't see the way it :
> >
> > 1) determines which users to permit access to
> >
> > nor
> >
> > 2) how it maintains the users status once authorized should the user > request
> > additional pages in the protected folder.
> >
> >
> > Is that done in the web.config file? I don't see any instructions at that
> > link on how to accomplish this whithout using cookies.
> >
> >
> >
> >
> >
> >
> > "Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
> > news:ev**************@tk2msftngp13.phx.gbl...
> > > You can put each group of files into their own subfolders under your > root
> > > web application, and then create a web.config for each subfolder

with
> the
> > > appropriate settings in it.
> > > You could alternately do this with a single web.config file by using the
> > > <location> tag.
> > > Here's more info on that and an example:
> > > http://www.dotnetbips.com/displayarticle.aspx?id=117
> > >
> > > --
> > > I hope this helps,
> > > Steve C. Orr, MCSD
> > > http://Steve.Orr.net
> > >
> > >
> > > "joe" <contact_by_Newsgroup_only.please> wrote in message
> > > news:u$**************@TK2MSFTNGP10.phx.gbl...
> > > > Some time ago I set up an ASP application that used a login page which
> > > > checked a username and password against a database to determine a
> users
> > > > authorization to access certain pages on the site. This was
done by
> > > setting
> > > > a session variable within the application if the user was

authorized
> and
> > > > using code one each page for which protection was required to

check
> for
> > > the
> > > > status of the session variable.
> > > >
> > > > Now I am aware of the various techniques that ASP.NET provides to > allow
> > or
> > > > preclude access to asp.net apps but frankly I really liked
that other
> > one
> > > > because it didn't use cookies which many users are a bit

afraid of.
> > > >
> > > > My problem is this....I can't remember how I set it up and I don't > know
> > > > where to look. I think I found the technique in an old ASP

book (vs
> > > > asp.net).
> > > >
> > > > Does anyone know where I can look to find this technique in
the form
> of
> > > > sample code or a tutorial?
> > > >
> > > > and
> > > >
> > > > Is this a viable technique to use in ASP.Net?
> > > >
> > > >
> > > > Thanks in advance
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #8
joe
I don't mind taking the time posting but I do understand that for some
reading is a bit more difficult than it is for others.
"Vincent V" <vincentv@-n0-5pam-optushome.com.au> wrote in message
news:O2**************@tk2msftngp13.phx.gbl...
you should buy a book it would save time posting
"joe" <contact_by_Newsgroup_only.please> wrote in message
news:#L**************@TK2MSFTNGP12.phx.gbl...
I see they have put the user names and passwords in the login.vb file. Isn't
this (hard coding) a potential security problem?

I realize it is not presented in the HTML on the client and the server

does
all the work but it just makes me a bit uncomfortable.

Or am I wrong?


"joe" <contact_by_Newsgroup_only.please> wrote in message
news:eF**************@tk2msftngp13.phx.gbl...
Thanks Steve...I'll check it out.
"Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
news:Ok**************@TK2MSFTNGP12.phx.gbl...
> It uses forms authentication, which uses cookies.
> Here's more info on basic forms authentication:
> http://www.dotnetbips.com/displayarticle.aspx?id=9
>
> Of course you can also set Forms Authentication to work if the user has > cookies turned off by setting the cookieless="true" in your web.config. > Then it will munge the session id into the URL automatically.
> You can specify which files and folders to allow to to which users in
your
> web.config file.
> There is a link to sample code that you can download and play with.
> http://www.dotnetbips.com/displayarticle.aspx?id=117
>
> --
> I hope this helps,
> Steve C. Orr, MCSD
> http://Steve.Orr.net
>
>
>
> "joe" <contact_by_Newsgroup_only.please> wrote in message
> news:u4*************@tk2msftngp13.phx.gbl...
> > Thanks Steve I've read that but call me dumb but I don't see how
it works.
> > Perhaps I'm missing something, I don't see the way it :
> >
> > 1) determines which users to permit access to
> >
> > nor
> >
> > 2) how it maintains the users status once authorized should the user > request
> > additional pages in the protected folder.
> >
> >
> > Is that done in the web.config file? I don't see any instructions at that
> > link on how to accomplish this whithout using cookies.
> >
> >
> >
> >
> >
> >
> > "Steve C. Orr, MCSD" <St***@Orr.net> wrote in message
> > news:ev**************@tk2msftngp13.phx.gbl...
> > > You can put each group of files into their own subfolders under your > root
> > > web application, and then create a web.config for each subfolder

with
> the
> > > appropriate settings in it.
> > > You could alternately do this with a single web.config file by using the
> > > <location> tag.
> > > Here's more info on that and an example:
> > > http://www.dotnetbips.com/displayarticle.aspx?id=117
> > >
> > > --
> > > I hope this helps,
> > > Steve C. Orr, MCSD
> > > http://Steve.Orr.net
> > >
> > >
> > > "joe" <contact_by_Newsgroup_only.please> wrote in message
> > > news:u$**************@TK2MSFTNGP10.phx.gbl...
> > > > Some time ago I set up an ASP application that used a login page which
> > > > checked a username and password against a database to determine a
> users
> > > > authorization to access certain pages on the site. This was
done by
> > > setting
> > > > a session variable within the application if the user was

authorized
> and
> > > > using code one each page for which protection was required to

check
> for
> > > the
> > > > status of the session variable.
> > > >
> > > > Now I am aware of the various techniques that ASP.NET provides to > allow
> > or
> > > > preclude access to asp.net apps but frankly I really liked
that other
> > one
> > > > because it didn't use cookies which many users are a bit

afraid of.
> > > >
> > > > My problem is this....I can't remember how I set it up and I don't > know
> > > > where to look. I think I found the technique in an old ASP

book (vs
> > > > asp.net).
> > > >
> > > > Does anyone know where I can look to find this technique in
the form
> of
> > > > sample code or a tutorial?
> > > >
> > > > and
> > > >
> > > > Is this a viable technique to use in ASP.Net?
> > > >
> > > >
> > > > Thanks in advance
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #9

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

Similar topics

18
by: | last post by:
Please help. After a number of wrong turns and experiments I need advice on login management system to secure our web pages without inconveniencing our visitors or our internal staff. What I...
24
by: Bob Alston | last post by:
Most of my Access database implementations have been fairly small in terms of data volume and number of concurrent users. So far I haven't had performance issues to worry about. <knock on wood> ...
6
by: Earl Teigrob | last post by:
I am writing an application that dynamically loads user controls at run time based on user options. I would like to give my users the ability to build their own user controls and add them to my...
10
by: George G. | last post by:
Hi there, I am busy writing a new asp.net application and I am reusing some of my existing asp functions and methods in a user control. I need access to session, request and response in some of...
10
by: Shawn | last post by:
JIT Debugging failed with the following error: Access is denied. JIT Debugging was initiated by the following account 'PLISKEN\ASPNET' I get this messag in a dialog window when I try to open an...
4
by: Martin | last post by:
Hi, I am getting an "Access Denied" error when attempting to browse asp.net pages. I have installed ASP.NET 1.1.4322 on a domain controller. The machine also has ASP.NET 1.0.3705 installed on...
52
by: Neil | last post by:
We are running an Access 2000 MDB with a SQL 7 back end. Our network guy is upgrading to Windows Server 2003 and wants to upgrade Office and SQL Server at the same time. We're moving to SQL Server...
2
by: Garry Jones | last post by:
I asked this earlier and received a tip of going to Joomla. Problem is according to the gurus in their forums I need to rewrite the entire site so that Joomla becomes the core. As I am on 700+...
1
by: Webstorm | last post by:
Hi, I hope someone can help me sort this out a bit, Im completely lost. Here is the page I am working on: http://www.knzbusinessbrokers.com/default.asp I have 3 search critera that I need to...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

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.