473,785 Members | 2,419 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Vanity URLs

Hello,

I am trying to create vanity URLs (I think that's what they are called) that
link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory and I
would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.co m/redirect.asp?pr odID=$S

The redirect file contained something to the effect of the following code:
<%
Response.Redire ct("productinfo .asp?prodID=" &_
Replace(Request .Querystring("p rodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my hosting
provider would not configure the folder for the redirect. That said, is
there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing
page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris

Jul 19 '05 #1
10 2053
http://www.asp101.com/articles/wayne/extendingnames/
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Hello,

I am trying to create vanity URLs (I think that's what they are called) that link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory and I
would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.co m/redirect.asp?pr odID=$S

The redirect file contained something to the effect of the following code:
<%
Response.Redire ct("productinfo .asp?prodID=" &_
Replace(Request .Querystring("p rodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my hosting provider would not configure the folder for the redirect. That said, is
there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing
page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris

Jul 19 '05 #2
www.aspfaq.com has some links on a custom 404 page.
--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Hello,

I am trying to create vanity URLs (I think that's what they are called) that link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory and I
would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.co m/redirect.asp?pr odID=$S

The redirect file contained something to the effect of the following code:
<%
Response.Redire ct("productinfo .asp?prodID=" &_
Replace(Request .Querystring("p rodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my hosting provider would not configure the folder for the redirect. That said, is
there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing
page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris

Jul 19 '05 #3
Alex,

Thanks for the response. I have a question. I have created the correct
404.asp page and it is successfully performing the server.transfer , but when
it gets to the product page, that page is not receiving the record. Do I
have to build code on that page to check to see if there is a Session
variable. The article never mentions it. If not, is it possible that it is
not passing the session variable. The text I get on the productinfo.asp page
is "Either BOF or EOF is True, or the current record has been deleted.
Requested operation requires a current record." which usually means no
variable was passed to it. Not sure what's going on here. I appreciate the
help,

Chris

"Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
news:bu******** ****@ID-221525.news.uni-berlin.de...
http://www.asp101.com/articles/wayne/extendingnames/
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in message news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Hello,

I am trying to create vanity URLs (I think that's what they are called)

that
link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory and I would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.co m/redirect.asp?pr odID=$S

The redirect file contained something to the effect of the following code: <%
Response.Redire ct("productinfo .asp?prodID=" &_
Replace(Request .Querystring("p rodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my

hosting
provider would not configure the folder for the redirect. That said, is
there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing
page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris


Jul 19 '05 #4
Chris,

When you used to call the product page using productinfo.asp ?prodID=0000 you
used Request.QuerySt ring("prodID") to find which product was being called.

As server.transfer can't pass parameters in the querystring then the product
id gets stored in a session variable, so your products page must then read
what is in the session variable.

Response.Write Session("prodID ") will write out what ever is held in the
session variable called prodID, use this to make sure it is returning what
you expect. If it is, you can then use Session("prodID ") in your SQL
statement.
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in message
news:ex******** ******@TK2MSFTN GP11.phx.gbl...
Alex,

Thanks for the response. I have a question. I have created the correct
404.asp page and it is successfully performing the server.transfer , but when it gets to the product page, that page is not receiving the record. Do I
have to build code on that page to check to see if there is a Session
variable. The article never mentions it. If not, is it possible that it is
not passing the session variable. The text I get on the productinfo.asp page is "Either BOF or EOF is True, or the current record has been deleted.
Requested operation requires a current record." which usually means no
variable was passed to it. Not sure what's going on here. I appreciate the
help,

Chris

"Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
news:bu******** ****@ID-221525.news.uni-berlin.de...
http://www.asp101.com/articles/wayne/extendingnames/
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Hello,

I am trying to create vanity URLs (I think that's what they are called)
that
link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory
and I would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.co m/redirect.asp?pr odID=$S

The redirect file contained something to the effect of the following code: <%
Response.Redire ct("productinfo .asp?prodID=" &_
Replace(Request .Querystring("p rodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my

hosting
provider would not configure the folder for the redirect. That said,

is there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris



Jul 19 '05 #5
Alex,

Okay now, I got it working. There is only one problem. After the page is
loaded, the images will not load because they are referring to the wrong
folder. They are looking for "mydomain.c om/products/images/image.jpg"
instead of "mydomain.c om/images/image.jpg" like it should. The article
mentions that you can add as many nonexistent folders as necessary(e.g.
products/brand/model or products/brand/year/model). It looks like every time
I change the number of nonexistent folders, the image location will change.
Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg". What do
you think. Thanks again.

Chris

"Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
news:bu******** ****@ID-221525.news.uni-berlin.de...
Chris,

When you used to call the product page using productinfo.asp ?prodID=0000 you used Request.QuerySt ring("prodID") to find which product was being called.

As server.transfer can't pass parameters in the querystring then the product id gets stored in a session variable, so your products page must then read
what is in the session variable.

Response.Write Session("prodID ") will write out what ever is held in the
session variable called prodID, use this to make sure it is returning what
you expect. If it is, you can then use Session("prodID ") in your SQL
statement.
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in message news:ex******** ******@TK2MSFTN GP11.phx.gbl...
Alex,

Thanks for the response. I have a question. I have created the correct
404.asp page and it is successfully performing the server.transfer , but

when
it gets to the product page, that page is not receiving the record. Do I
have to build code on that page to check to see if there is a Session
variable. The article never mentions it. If not, is it possible that it is
not passing the session variable. The text I get on the productinfo.asp

page
is "Either BOF or EOF is True, or the current record has been deleted.
Requested operation requires a current record." which usually means no
variable was passed to it. Not sure what's going on here. I appreciate the help,

Chris

"Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
news:bu******** ****@ID-221525.news.uni-berlin.de...
http://www.asp101.com/articles/wayne/extendingnames/
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in

message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
> Hello,
>
> I am trying to create vanity URLs (I think that's what they are

called) that
> link directly to an item's listing
> page on my site. Currently, the urls are set up something like the
> following:
>
> http://www.mydomain.com/productinfo.asp?prodID=00000
>
> I am trying to configure them to be something like this:
>
> http://www.mydomain.com/products/00000
>
> The reason why I want to do this is that we print a paper directory and
I
> would like to list the links in there.
> I have tried creating a folder called products, and configuring it to > redirect to a redirect file using the following:
> http://www.mydomain.co m/redirect.asp?pr odID=$S
>
> The redirect file contained something to the effect of the following

code:
> <%
> Response.Redire ct("productinfo .asp?prodID=" &_
> Replace(Request .Querystring("p rodID"),"/",""))
> %>
>
> This worked great on my local testing server. The problem is that my
hosting
> provider would not configure the folder for the redirect. That said,

is > there any way to do this another way? I think the one possible is to
> configure your 404 Error page to pull the url and forward to the listing > page based on some item in that url. Has anyone done this? I
> appreciate the help.
>
> Thanks,
>
> Chris
>
>
>



Jul 19 '05 #6

try putting /images/image.jpg

Brynn
On Tue, 20 Jan 2004 12:51:06 -0500, "Chris Guimbellot"
<cg*********@FO RGETSPAM.hifran chise.com> wrote:
Alex,

Okay now, I got it working. There is only one problem. After the page is
loaded, the images will not load because they are referring to the wrong
folder. They are looking for "mydomain.c om/products/images/image.jpg"
instead of "mydomain.c om/images/image.jpg" like it should. The article
mentions that you can add as many nonexistent folders as necessary(e.g.
products/brand/model or products/brand/year/model). It looks like every time
I change the number of nonexistent folders, the image location will change.
Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg". What do
you think. Thanks again.

Chris

"Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
news:bu******* *****@ID-221525.news.uni-berlin.de...
Chris,

When you used to call the product page using productinfo.asp ?prodID=0000

you
used Request.QuerySt ring("prodID") to find which product was being called.

As server.transfer can't pass parameters in the querystring then the

product
id gets stored in a session variable, so your products page must then read
what is in the session variable.

Response.Write Session("prodID ") will write out what ever is held in the
session variable called prodID, use this to make sure it is returning what
you expect. If it is, you can then use Session("prodID ") in your SQL
statement.
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in

message
news:ex******** ******@TK2MSFTN GP11.phx.gbl...
> Alex,
>
> Thanks for the response. I have a question. I have created the correct
> 404.asp page and it is successfully performing the server.transfer , but

when
> it gets to the product page, that page is not receiving the record. Do I
> have to build code on that page to check to see if there is a Session
> variable. The article never mentions it. If not, is it possible that itis > not passing the session variable. The text I get on the productinfo.asp

page
> is "Either BOF or EOF is True, or the current record has been deleted.
> Requested operation requires a current record." which usually means no
> variable was passed to it. Not sure what's going on here. I appreciatethe > help,
>
> Chris
>
> "Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
> news:bu******** ****@ID-221525.news.uni-berlin.de...
> > http://www.asp101.com/articles/wayne/extendingnames/
> >
> >
> > "Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in
> message
> > news:%2******** ********@tk2msf tngp13.phx.gbl. ..
> > > Hello,
> > >
> > > I am trying to create vanity URLs (I think that's what they are

called)
> > that
> > > link directly to an item's listing
> > > page on my site. Currently, the urls are set up something like the
> > > following:
> > >
> > > http://www.mydomain.com/productinfo.asp?prodID=00000
> > >
> > > I am trying to configure them to be something like this:
> > >
> > > http://www.mydomain.com/products/00000
> > >
> > > The reason why I want to do this is that we print a paper directory

and
> I
> > > would like to list the links in there.
> > > I have tried creating a folder called products, and configuring itto > > > redirect to a redirect file using the following:
> > > http://www.mydomain.co m/redirect.asp?pr odID=$S
> > >
> > > The redirect file contained something to the effect of the following
> code:
> > > <%
> > > Response.Redire ct("productinfo .asp?prodID=" &_
> > > Replace(Request .Querystring("p rodID"),"/",""))
> > > %>
> > >
> > > This worked great on my local testing server. The problem is that my
> > hosting
> > > provider would not configure the folder for the redirect. That said,

is
> > > there any way to do this another way? I think the one possible is to
> > > configure your 404 Error page to pull the url and forward to the

listing
> > > page based on some item in that url. Has anyone done this? I
> > > appreciate the help.
> > >
> > > Thanks,
> > >
> > > Chris
> > >
> > >
> > >
> >
> >
>
>




Brynn
www.coolpier.com

I participate in the group to help give examples of code.
I do not guarantee the effects of any code posted.
Test all code before use!
Jul 19 '05 #7
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in message
news:OC******** ******@TK2MSFTN GP11.phx.gbl...
Alex,

Okay now, I got it working. There is only one problem. After the page is
loaded, the images will not load because they are referring to the wrong
folder. They are looking for "mydomain.c om/products/images/image.jpg"
instead of "mydomain.c om/images/image.jpg" like it should. The article
mentions that you can add as many nonexistent folders as necessary(e.g.
products/brand/model or products/brand/year/model). It looks like every time I change the number of nonexistent folders, the image location will change. Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg". What do
you think. Thanks again.


Just change it to "/images/image.jpg".

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/

Jul 19 '05 #8
Chris Guimbellot wrote on 20 jan 2004 in
microsoft.publi c.inetserver.as p.general:
Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg".
What do you think. Thanks again.


<base href="...">

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #9
That worked. Thanks,

Chris

"Brynn" <z@z.com> wrote in message
news:40******** ******@news.com cast.giganews.c om...

try putting /images/image.jpg

Brynn
On Tue, 20 Jan 2004 12:51:06 -0500, "Chris Guimbellot"
<cg*********@FO RGETSPAM.hifran chise.com> wrote:
Alex,

Okay now, I got it working. There is only one problem. After the page is
loaded, the images will not load because they are referring to the wrong
folder. They are looking for "mydomain.c om/products/images/image.jpg"
instead of "mydomain.c om/images/image.jpg" like it should. The article
mentions that you can add as many nonexistent folders as necessary(e.g.
products/brand/model or products/brand/year/model). It looks like every timeI change the number of nonexistent folders, the image location will change.Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg". What doyou think. Thanks again.

Chris

"Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
news:bu******* *****@ID-221525.news.uni-berlin.de...
Chris,

When you used to call the product page using productinfo.asp ?prodID=0000
you
used Request.QuerySt ring("prodID") to find which product was being
called.
As server.transfer can't pass parameters in the querystring then the

product
id gets stored in a session variable, so your products page must then read what is in the session variable.

Response.Write Session("prodID ") will write out what ever is held in the session variable called prodID, use this to make sure it is returning what you expect. If it is, you can then use Session("prodID ") in your SQL
statement.
"Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote in

message
news:ex******** ******@TK2MSFTN GP11.phx.gbl...
> Alex,
>
> Thanks for the response. I have a question. I have created the correct > 404.asp page and it is successfully performing the server.transfer , but when
> it gets to the product page, that page is not receiving the record. Do I > have to build code on that page to check to see if there is a Session
> variable. The article never mentions it. If not, is it possible that itis
> not passing the session variable. The text I get on the
productinfo.asp page
> is "Either BOF or EOF is True, or the current record has been deleted. > Requested operation requires a current record." which usually means no > variable was passed to it. Not sure what's going on here. I appreciatethe
> help,
>
> Chris
>
> "Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
> news:bu******** ****@ID-221525.news.uni-berlin.de...
> > http://www.asp101.com/articles/wayne/extendingnames/
> >
> >
> > "Chris Guimbellot" <cg*********@FO RGETSPAM.hifran chise.com> wrote
in > message
> > news:%2******** ********@tk2msf tngp13.phx.gbl. ..
> > > Hello,
> > >
> > > I am trying to create vanity URLs (I think that's what they are
called)
> > that
> > > link directly to an item's listing
> > > page on my site. Currently, the urls are set up something like the > > > following:
> > >
> > > http://www.mydomain.com/productinfo.asp?prodID=00000
> > >
> > > I am trying to configure them to be something like this:
> > >
> > > http://www.mydomain.com/products/00000
> > >
> > > The reason why I want to do this is that we print a paper directory and
> I
> > > would like to list the links in there.
> > > I have tried creating a folder called products, and configuring itto
> > > redirect to a redirect file using the following:
> > > http://www.mydomain.co m/redirect.asp?pr odID=$S
> > >
> > > The redirect file contained something to the effect of the

following > code:
> > > <%
> > > Response.Redire ct("productinfo .asp?prodID=" &_
> > > Replace(Request .Querystring("p rodID"),"/",""))
> > > %>
> > >
> > > This worked great on my local testing server. The problem is that my > > hosting
> > > provider would not configure the folder for the redirect. That said, is
> > > there any way to do this another way? I think the one possible is to > > > configure your 404 Error page to pull the url and forward to the
listing
> > > page based on some item in that url. Has anyone done this? I
> > > appreciate the help.
> > >
> > > Thanks,
> > >
> > > Chris
> > >
> > >
> > >
> >
> >
>
>



Brynn
www.coolpier.com

I participate in the group to help give examples of code.
I do not guarantee the effects of any code posted.
Test all code before use!

Jul 19 '05 #10

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

Similar topics

1
3425
by: phpkid | last post by:
Howdy I've been given conflicting answers about search engines picking up urls like: http://mysite.com/index.php?var1=1&var2=2&var3=3 Do search engines pick up these urls? I've been considering converting a site of mine to PHP-Nuke, but if the individual modules aren't picked up in search engines I'm not going to do it. Thanks phpKid
26
12593
by: Howard Brazee | last post by:
I would like to click on a URL of a html document that will open several URLs at once for me. Does someone have an example of a html document that will do this?
1
1819
by: DM | last post by:
I'm working on a site with more than 1700 HTML files. We'll be moving files around on this site a lot because we're reorganizing it. I'm thinking of writing a script that will convert all URLs in href and src attributes to absolute URLs with this form: href="/somedir/somefile.htm" src="/images/somecategory/image.gif" That way, if you move a page from one directory to another, the links and image references within the page will not...
2
2611
by: Showjumper | last post by:
How would i go about making vanity urls such that its really the same url for everyone but that it just appears different based on who logs in.
1
1376
by: Stimp | last post by:
I know how to create vanity urls for users when they append a .aspx to their name, but is it possible to pick up their name alone (without affixing .aspx?) e.g. in the global.asax file I can map the following url: www.mysite.com/someuser.aspx to www.mysite.com/users.aspx?userid=someuser
2
2056
by: Eric Lemmon | last post by:
Greetings, I wrote code to handle vanity URLs, so--for example--the URL http://localhost/myApp/bsmith.aspx is internally translated to http://localhost/myApp/Support/UserPage.aspx?user=bsmith. The problem is that whenever I access the vanity URL, http://localhost/myApp/bsmith.aspx, the page shows without any CSS styles...quite ugly. However, when I get to the page directly using its actual address,...
3
1820
by: Leon | last post by:
How to personalized different parts of my website using vanity sub-domain name url. example: my domain name is www.mydomain.com. I would like the vanity url to be myname.mydomain.com, and personalize the current page from the database using that vanity url ('myname.mydomain.com').
10
4938
by: jflash | last post by:
Hello all, I feel dumb having to ask this question in the first place, but I just can not figure it out. I am wanting to set my site up using dynamic urls (I'm assuming that's what they're called, an example of what I have in mind is index.php?page=). However, I can not figure out how to do this. I will eventually want to use SEF urls, but for now I'll be content just to have the dynamic urls. If anyone can tell me how to do this, I'd...
9
5101
by: Salve =?iso-8859-1?Q?H=E5kedal?= | last post by:
What is the best regular expression for finding urls in plain text files? (By urls I mean http://www.something.com, but also www.something.com, or salve@somewhere.com) Salve
3
3875
by: WebCM | last post by:
How to apply nice URL-s into CMS? 1. Should we use nice urls for every page? 2. Do we need to put a FULL path into <a href="">? 3. What is faster and better? a) 10 rules in .htaccess which redirect you to normal URLs with GET parameters
0
9489
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
10357
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10101
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
9959
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
8988
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7509
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5528
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4063
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2893
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.