473,396 Members | 1,826 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,396 software developers and data experts.

Can I combine ASP with external CSS?

I am trying to display a random background image for a webpage. I found
this code to do it

<%
'Defines the number of background images you have
Const NUMBER_OF_IMAGES = 2

'Initiates the randomize function
Randomize

'Sets a variable: this will be used to hold the
'random generated value
Dim intImageNumber

'This is where we create the random number
intImageNumber = Int((NUMBER_OF_IMAGES * Rnd) + 1)
%>
Modify the body tag to accept the random number. In this case we are going
to place it within the image so as to facilitate the selection of a random
image.

<BODY BACKGROUND="bg_<%= intImageNumber %>.gif">

This did work.

In my case, I have an external style sheet with this defined:

body {
color:#333;
background-color: gray;
background-image: url(../images/bg_<%=intImageNumber%>.JPG);
background-attachment: fixed;
margin:20px;
padding:0px;
font:11px verdana, arial, helvetica, sans-serif;
}

and it is included in my main page with

<head>
<style type="text/css" media="screen">@import "css/cvs.asp";</style>
</head>

which comes after the above randomizing script

I removed <BODY BACKGROUND="bg_<%= intImageNumber %>.gif"> from the main
page and replaced it with just <body> thinking that since it is defined in
the external CSS file I wouldn't need it on each page.

I just got a gray background. Since I am really new to ASP and CSS I am not
sure the variables are global throughout included files or not. I wanted to
have the background image defined in the style file since it is used
everywhere so rather than modiying <body> for each page I could have it in
one place.

Can this be done this way? Is there a better way to handle this situation?

Many thanks

Richard Speiss
Jul 19 '05 #1
14 2519
Richard Speiss wrote on 08 jun 2004 in
microsoft.public.inetserver.asp.general:
<head>
<style type="text/css" media="screen">@import "css/cvs.asp";</style>
</head>


<link type="text/css" href="css/cvs.asp" rel="stylesheet">

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #2
"Richard Speiss" wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
: I am trying to display a random background image for a webpage. I found
: this code to do it
:
: <%
: 'Defines the number of background images you have
: Const NUMBER_OF_IMAGES = 2
:
: 'Initiates the randomize function
: Randomize
:
: 'Sets a variable: this will be used to hold the
: 'random generated value
: Dim intImageNumber
:
: 'This is where we create the random number
: intImageNumber = Int((NUMBER_OF_IMAGES * Rnd) + 1)
: %>
:
:
: Modify the body tag to accept the random number. In this case we are going
: to place it within the image so as to facilitate the selection of a random
: image.
:
: <BODY BACKGROUND="bg_<%= intImageNumber %>.gif">
:
: This did work.
:
: In my case, I have an external style sheet with this defined:
:
: body {
: color:#333;
: background-color: gray;
: background-image: url(../images/bg_<%=intImageNumber%>.JPG);
: background-attachment: fixed;
: margin:20px;
: padding:0px;
: font:11px verdana, arial, helvetica, sans-serif;
: }
:
: and it is included in my main page with
:
: <head>
: <style type="text/css" media="screen">@import "css/cvs.asp";</style>
: </head>
:
: which comes after the above randomizing script
:
: I removed <BODY BACKGROUND="bg_<%= intImageNumber %>.gif"> from the main
: page and replaced it with just <body> thinking that since it is defined in
: the external CSS file I wouldn't need it on each page.
:
: I just got a gray background. Since I am really new to ASP and CSS I am
not
: sure the variables are global throughout included files or not. I wanted
to
: have the background image defined in the style file since it is used
: everywhere so rather than modiying <body> for each page I could have it in
: one place.
:
: Can this be done this way? Is there a better way to handle this
situation?

Remove the background-image line from your external CSS and just use it in
an onload.

<body onload="bg_<%= intImageNumber %>.gif">

Perhaps if your CSS was linked in prior to the script running and it was
..css instead of .asp, then perhaps the ASP processor would process that part
before rendering the page to the client. As it is now, and you can test by
loading the cvs.asp by itself and looking at the source, you'll see what is
actually being returned.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 19 '05 #3
Thanks but that didn't make a difference

Richard

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn*******************@194.109.133.29...
Richard Speiss wrote on 08 jun 2004 in
microsoft.public.inetserver.asp.general:
<head>
<style type="text/css" media="screen">@import "css/cvs.asp";</style>
</head>


<link type="text/css" href="css/cvs.asp" rel="stylesheet">

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jul 19 '05 #4

But if I use <body onload ... , then I need to have that piece of code on
each .asp page which is what I was trying to avoid.

If I load cvs.asp by itself then it wouldn't have intImageNumber filled in
since the number is generated by the file that includes it. I guess that's
my question; whether a value generated in a page can be used by something
that is included. Your point is good though. Which is done first? Does
the ASP VB code get executed first or does the style inclusion in the <head>
section.

By doing a little test it looks like intImageNumber doesn't make it from
index.asp to cvs.asp. Or I am still missing something

Thanks

Richard
Remove the background-image line from your external CSS and just use it in
an onload.

<body onload="bg_<%= intImageNumber %>.gif">

Perhaps if your CSS was linked in prior to the script running and it was
.css instead of .asp, then perhaps the ASP processor would process that part before rendering the page to the client. As it is now, and you can test by loading the cvs.asp by itself and looking at the source, you'll see what is actually being returned.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp MSDN Library - http://msdn.microsoft.com/library/default.asp

Jul 19 '05 #5
index.asp and cvs.asp are separate asp scripts so the value of
intImageNumber will not pass from index to cvs. You will need to include the
random background code in the cvs.asp file.

The sequence of execution is:

index.asp is requested by the browser

index.asp is executed on the server and the generated html returned to the
browser. This html will include your style or link tag. Note that at this
time the cvs.asp script has not been called.

browser finds the link tag or style import directive in the html and sends a
request for cvs.asp

cvs.asp is executed on the server and the resulting text is returned (You
will probably have to set response.contenttype to whatever is valid for a
stylesheet in order for the browser to use the styles).

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Richard Speiss" <rs*****@mtxinc.com> wrote in message
news:uv*************@TK2MSFTNGP11.phx.gbl...

But if I use <body onload ... , then I need to have that piece of code on
each .asp page which is what I was trying to avoid.

If I load cvs.asp by itself then it wouldn't have intImageNumber filled in
since the number is generated by the file that includes it. I guess that's
my question; whether a value generated in a page can be used by something
that is included. Your point is good though. Which is done first? Does
the ASP VB code get executed first or does the style inclusion in the <head> section.

By doing a little test it looks like intImageNumber doesn't make it from
index.asp to cvs.asp. Or I am still missing something

Thanks

Richard
Remove the background-image line from your external CSS and just use it in an onload.

<body onload="bg_<%= intImageNumber %>.gif">

Perhaps if your CSS was linked in prior to the script running and it was
.css instead of .asp, then perhaps the ASP processor would process that

part
before rendering the page to the client. As it is now, and you can test

by
loading the cvs.asp by itself and looking at the source, you'll see what

is
actually being returned.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation -

http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


Jul 19 '05 #6
You can map css pages to be processed through the same engine as the ASP
pages. Then you can just embed your ASP code in the CSS file.

"Richard Speiss" <rs*****@mtxinc.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I am trying to display a random background image for a webpage. I found
this code to do it

<%
'Defines the number of background images you have
Const NUMBER_OF_IMAGES = 2

'Initiates the randomize function
Randomize

'Sets a variable: this will be used to hold the
'random generated value
Dim intImageNumber

'This is where we create the random number
intImageNumber = Int((NUMBER_OF_IMAGES * Rnd) + 1)
%>
Modify the body tag to accept the random number. In this case we are going
to place it within the image so as to facilitate the selection of a random
image.

<BODY BACKGROUND="bg_<%= intImageNumber %>.gif">

This did work.

In my case, I have an external style sheet with this defined:

body {
color:#333;
background-color: gray;
background-image: url(../images/bg_<%=intImageNumber%>.JPG);
background-attachment: fixed;
margin:20px;
padding:0px;
font:11px verdana, arial, helvetica, sans-serif;
}

and it is included in my main page with

<head>
<style type="text/css" media="screen">@import "css/cvs.asp";</style>
</head>

which comes after the above randomizing script

I removed <BODY BACKGROUND="bg_<%= intImageNumber %>.gif"> from the main
page and replaced it with just <body> thinking that since it is defined in
the external CSS file I wouldn't need it on each page.

I just got a gray background. Since I am really new to ASP and CSS I am not
sure the variables are global throughout included files or not. I wanted to
have the background image defined in the style file since it is used
everywhere so rather than modiying <body> for each page I could have it in
one place.

Can this be done this way? Is there a better way to handle this situation?

Many thanks

Richard Speiss

Jul 19 '05 #7
Oh that was way too easy. I wasn't thinking that I could actually execute
the VB script inside a style file since it was just declarations but when I
think about it, it does make sense.

Thanks a lot. It's working great now

RIchard

"Lance Wynn" <la********@N.O.S.P.A.M.hotmail.com> wrote in message
news:u8**************@TK2MSFTNGP10.phx.gbl...
You can map css pages to be processed through the same engine as the ASP
pages. Then you can just embed your ASP code in the CSS file.

"Richard Speiss" <rs*****@mtxinc.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I am trying to display a random background image for a webpage. I found
this code to do it

<%
'Defines the number of background images you have
Const NUMBER_OF_IMAGES = 2

'Initiates the randomize function
Randomize

'Sets a variable: this will be used to hold the
'random generated value
Dim intImageNumber

'This is where we create the random number
intImageNumber = Int((NUMBER_OF_IMAGES * Rnd) + 1)
%>
Modify the body tag to accept the random number. In this case we are going
to place it within the image so as to facilitate the selection of a random
image.

<BODY BACKGROUND="bg_<%= intImageNumber %>.gif">

This did work.

In my case, I have an external style sheet with this defined:

body {
color:#333;
background-color: gray;
background-image: url(../images/bg_<%=intImageNumber%>.JPG);
background-attachment: fixed;
margin:20px;
padding:0px;
font:11px verdana, arial, helvetica, sans-serif;
}

and it is included in my main page with

<head>
<style type="text/css" media="screen">@import "css/cvs.asp";</style>
</head>

which comes after the above randomizing script

I removed <BODY BACKGROUND="bg_<%= intImageNumber %>.gif"> from the main
page and replaced it with just <body> thinking that since it is defined in
the external CSS file I wouldn't need it on each page.

I just got a gray background. Since I am really new to ASP and CSS I am not sure the variables are global throughout included files or not. I wanted to have the background image defined in the style file since it is used
everywhere so rather than modiying <body> for each page I could have it in
one place.

Can this be done this way? Is there a better way to handle this situation?
Many thanks

Richard Speiss

Jul 19 '05 #8
No, you can't do that, because the CSS file is not included in the
server-side script, it is only sent to the client-side browser for parsing.

You can use a CSS file as ASP:

body {
....
background-image: url(../images/bg_<%=Request.QueryString("i")%>.jpg);
....
}

Then call it like this:

<link rel=stylesheet href=css.asp?i=<%=intImageNumber%>>

Or, you can just put the style inline instead of a linked file.

You lose the benefit of using an external style sheet by making the content
dynamic, but you can keep the same maintenance benefit by using an external
ASP file.

--
http://www.aspfaq.com/
(Reverse address to reply.)

"Richard Speiss" <rs*****@mtxinc.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I am trying to display a random background image for a webpage. I found
this code to do it

<%
'Defines the number of background images you have
Const NUMBER_OF_IMAGES = 2

'Initiates the randomize function
Randomize

'Sets a variable: this will be used to hold the
'random generated value
Dim intImageNumber

'This is where we create the random number
intImageNumber = Int((NUMBER_OF_IMAGES * Rnd) + 1)
%>
Modify the body tag to accept the random number. In this case we are going
to place it within the image so as to facilitate the selection of a random
image.

<BODY BACKGROUND="bg_<%= intImageNumber %>.gif">

This did work.

In my case, I have an external style sheet with this defined:

body {
color:#333;
background-color: gray;
background-image: url(../images/bg_<%=intImageNumber%>.JPG);
background-attachment: fixed;
margin:20px;
padding:0px;
font:11px verdana, arial, helvetica, sans-serif;
}

and it is included in my main page with

<head>
<style type="text/css" media="screen">@import "css/cvs.asp";</style>
</head>

which comes after the above randomizing script

I removed <BODY BACKGROUND="bg_<%= intImageNumber %>.gif"> from the main
page and replaced it with just <body> thinking that since it is defined in
the external CSS file I wouldn't need it on each page.

I just got a gray background. Since I am really new to ASP and CSS I am
not
sure the variables are global throughout included files or not. I wanted
to
have the background image defined in the style file since it is used
everywhere so rather than modiying <body> for each page I could have it in
one place.

Can this be done this way? Is there a better way to handle this
situation?

Many thanks

Richard Speiss

Jul 19 '05 #9
> Oh that was way too easy.

Yes, and you know what they say when a solution is very easy: it probably
isn't the best solution. If you're using a version of IIS prior to 6.0,
this "easy" solution is going to cost you dearly, because every single CSS
file your site serves will be parsed by the ASP engine (and again, there go
the benefits of re-using a linked CSS file).

A
Jul 19 '05 #10
I also just found out that although this worked great for IE and Opera.
Netscape and Firefox didn't see any of the CSS at all. The only way I got
it to work for them was to change the extension of the css file from ASP
which eliminated having the ASP part of the CSS file. 6 of one and half
dozen of another.

I see you have another post here explaining things in more detail. I guess
I will have to do some more reading

Thanks for your input

Richard

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Oh that was way too easy.
Yes, and you know what they say when a solution is very easy: it probably
isn't the best solution. If you're using a version of IIS prior to 6.0,
this "easy" solution is going to cost you dearly, because every single CSS
file your site serves will be parsed by the ASP engine (and again, there

go the benefits of re-using a linked CSS file).

A

Jul 19 '05 #11
Yes, that's right... perhaps you might have to avoid using server-side code
for Firefox, since IIRC it will only accept CSS extension as CSS. Anything
else that contains style information will be ignored. So, let firefox users
see a single static image. Or, like my other suggestion, keep those styles
that must be dynamic in an inline <style> block (e.g. in an include).

Another idea might be to have background-image:url(somefile.asp);

Then have somefile.asp stream a randomly-selected image.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Richard Speiss" <rs*****@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
I also just found out that although this worked great for IE and Opera.
Netscape and Firefox didn't see any of the CSS at all. The only way I got
it to work for them was to change the extension of the css file from ASP
which eliminated having the ASP part of the CSS file. 6 of one and half
dozen of another.

I see you have another post here explaining things in more detail. I
guess
I will have to do some more reading

Thanks for your input

Richard

Jul 19 '05 #12
This isn't really That big of a problem, because most browsers will cache
the css file, and therefore won't request it each time. Even if the request
is made each time a page is loaded, the cost of parsing a file through the
ASP engine likely isn't going to affect performance all that much anyway,
most IIS servers will be able to outperform your internet connection anyway
(Unless you are doing some heavy Database access, or something), however if
it's just an if then else, or case statement you are processing; I doubt
that you'll notice a performance hit at all.

I think "cost you dearly" may be a bit strong. After all, the ASP engine is
there to create dynamic pages, whether they have an extension of .ASP, .HTM,
..CSS, whatever; I say go ahead and use it.

Also, you can map .CSS files to run through the ASP engine within the IIS
Management console. just click the configuration button next to the
application. That way you won't have to call the .CSS file a .ASP file.

Lance

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Oh that was way too easy.


Yes, and you know what they say when a solution is very easy: it probably
isn't the best solution. If you're using a version of IIS prior to 6.0,
this "easy" solution is going to cost you dearly, because every single CSS
file your site serves will be parsed by the ASP engine (and again, there go
the benefits of re-using a linked CSS file).

A

Jul 19 '05 #13
> This isn't really That big of a problem, because most browsers will cache
the css file, and therefore won't request it each time.
If the CSS file is dynamic like ASP, then there will be no difference
between requesting an ASP file and requesting a CSS file. Even if what you
said were true, then doesn't that defeat the purpose of injecting a random
background image? So how does that suggestion help achieve the goal?
I think "cost you dearly" may be a bit strong. After all, the ASP engine is there to create dynamic pages, whether they have an extension of .ASP, ..HTM, .CSS, whatever; I say go ahead and use it.


Uh, the ASP engine is not used to process HTM and CSS files unless you tell
it to. And if you tell it to process all CSS files as ASP files, then the
ASP engine will be invoked for all CSS files. Regardless of whether or not
they contain any dynamic code; and regardless of whether or not they were
called from an ASP file. So if you're calling a CSS file from an ASP file,
the "extra" cost might not be that much. But if you have a lot of static
HTML pages that use CSS files, those HTML pages suddenly take significant
resources to render.

Go ahead and map all your CSS files to asp.dll if you like. But I don't
think it's very good advice for people who are trying to get decent
performance out of their servers.

A
Jul 19 '05 #14
This is true, by default, HTML files, and CSS files aren't processed by the
ASP engine, and in most cases they don't need to be, but there are, in some
cases, definite advantages to allowing the ASP engine to process the CSS
files. I'm not, nor did I ever say this is true in all cases, but it is
certainly worth looking into as a viable option.

In fact, you raise a very interesting point. There may be certain cases
where there are static HTML pages, that you want to receive Dynamic Styles
depending on a customer, or a specific situation. In this case, I think
processing the CSS through the ASP engine would be a correct way to go. The
HTML file won't go through the ASP engine, but the CSS will.

Another thing you need to look at is, how many css style sheets do you have
in your site, and of those how many do you want to be able to dynamically
modify? If you have a limited number of style sheets, or if you decide you
want all the style sheets to be able to return dynamic content, then why not
map them to the ASP engine? If you only have 1 out of 50 CSS files that
need dynamic content, I agree with Aaron running all of them through the ASP
engine is probably wasteful.

In the end, it's up to you how you do it. The ASP designers put the
functionally in there to use, and if it fits the bill, I say use it (if it
fits the requirement).

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:Of**************@TK2MSFTNGP10.phx.gbl...
This isn't really That big of a problem, because most browsers will cache
the css file, and therefore won't request it each time.
If the CSS file is dynamic like ASP, then there will be no difference
between requesting an ASP file and requesting a CSS file. Even if what you
said were true, then doesn't that defeat the purpose of injecting a random
background image? So how does that suggestion help achieve the goal?
I think "cost you dearly" may be a bit strong. After all, the ASP engine is there to create dynamic pages, whether they have an extension of .ASP, ..HTM, .CSS, whatever; I say go ahead and use it.


Uh, the ASP engine is not used to process HTM and CSS files unless you tell
it to. And if you tell it to process all CSS files as ASP files, then the
ASP engine will be invoked for all CSS files. Regardless of whether or not
they contain any dynamic code; and regardless of whether or not they were
called from an ASP file. So if you're calling a CSS file from an ASP file,
the "extra" cost might not be that much. But if you have a lot of static
HTML pages that use CSS files, those HTML pages suddenly take significant
resources to render.

Go ahead and map all your CSS files to asp.dll if you like. But I don't
think it's very good advice for people who are trying to get decent
performance out of their servers.

A

Jul 19 '05 #15

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

Similar topics

3
by: Nick | last post by:
I am working a new application...well actually a series of applications for my company. They want internal users to be able to go to a site and everything regarding security is transparent,...
3
by: Stephen Matthews | last post by:
Help please i have a file which im importing, however it is a single column, the data looks like C8517673505 N7062175 C8517673516 N7062178 C8517673527
1
by: William Stacey [MVP] | last post by:
I need a bullet proof way to combine a root and a relative path to form a FQ rooted path (similar to a VDir in IIS). Path.Combine alone will not do the job in all cases. I also need to be sure...
1
by: David Lozzi | last post by:
Hello, I'm looking for the best option to combine two XMLDocuments into a single document. I'm using ASP.Net using VB. I have a function that returns a dataset in XML which works great if there...
5
by: jhutchings | last post by:
Hello everyone, I have a database where I collect shipment data from various tables. However, I have a problem. Whenever I want to see shipping data for orders that were set to ship on or before...
5
by: pjfarley3 | last post by:
Hi all, First-timer here, with a question about composing XML and XSL. I have a need to send one XML file with NO external server references to an end-user browser window; i.e., I would like to...
3
by: Schroeder, AJ | last post by:
Hello group, I am a relative PHP newbie and I am trying to combine two arrays together, but I also need to keep the keys of one array intact. What I am doing is two SNMP walks against a Cisco...
2
by: nugz | last post by:
I want to combine 3 tables with like data then append it with a filter. Tables: NewStarts, Complaints, Memos Combine: Date, Address, Route, Pub, etc.... Then sort: previous 8 days, pub/freq...
1
by: LSGKelly | last post by:
Hi all. I need to combine two fields that contain numbers that are in a currency format (Ex: $1,500 $3,500). When I combine them, I want them to look like this -- $1,500/$3,500. When I combine...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
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,...

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.