473,396 Members | 1,914 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.

Need help with asp scripting!

Can anyone provide example code showing how to send form results to a results
page, email and a comma delimited file? Notice that I need it going to all
three locations.

Details: I have forms created and working. The first form the user fills out
and submits. The form properties are set to Send to other: "Custom ISAPI,
NSAPI, CGI, OR ASP SCRIPTING. The method is "POST" and the action is
"secondpage.asp". I had to go this route because some calculations had to be
done before sending on to a secure website for credit card security.

The secondpage.asp form properites uses the send to other as well, with
action going to the secure credit card website. This website only allows a
certain number of form field to go over and we want to collect all data. Can
this be done using asp scripting? I thought about using a custom script to
email and file then redirect to secondpage.asp but didnt know if that would
work and a novice at asp scripting. As if you couldn't already tell!!

Any help would be greatly appreciated. Thanks in advance!
May 22 '06 #1
17 2055
=?Utf-8?B?ZnJlZW1hbm4=?= wrote on 22 mei 2006 in
microsoft.public.inetserver.asp.general:
Can anyone provide example code showing how to send form results to a
results page, email and a comma delimited file? Notice that I need it
going to all three locations.

Details: I have forms created and working. The first form the user
fills out and submits. The form properties are set to Send to other:
"Custom ISAPI, NSAPI, CGI, OR ASP SCRIPTING.
How can that be?

Form submitting is simple clientside HTML and cannot be specifically be
set for that.
The method is "POST" and
the action is "secondpage.asp". I had to go this route because some
calculations had to be done before sending on to a secure website for
credit card security.
A = request.form("theInputNameA")

Here the code to send an email using CDO, Jmail or whatever protocol is
used on your server

then sending the value of A to another file using form-post can only be
done IMHO!!! using a clientside page with hidden input value

<input name='secondInoutA' value='<%=A%>'>

and automatic submission by clientside script.

If the info could be sent as an querystring, the credit card company
could be called directly by the server using server.xmlhttp or alike.

Perhaps ASP could fake POST with specialized headers, Guru's??
The secondpage.asp form properites uses the send to other as well,
with action going to the secure credit card website. This website only
allows a certain number of form field to go over and we want to
collect all data. Can this be done using asp scripting? I thought
about using a custom script to email and file then redirect to
secondpage.asp but didnt know if that would work and a novice at asp
scripting. As if you couldn't already tell!!
I am not an exact novice, but I would not dare touch credit card code,
especially with this twitch of going back to the client, as this is an
security risk allowing the client to set different information in the
email as is sent to the cresit card company.
Any help would be greatly appreciated. Thanks in advance!


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
May 22 '06 #2


"Evertjan." wrote:
=?Utf-8?B?ZnJlZW1hbm4=?= wrote on 22 mei 2006 in
microsoft.public.inetserver.asp.general:
Can anyone provide example code showing how to send form results to a
results page, email and a comma delimited file? Notice that I need it
going to all three locations.

Details: I have forms created and working. The first form the user
fills out and submits. The form properties are set to Send to other:
"Custom ISAPI, NSAPI, CGI, OR ASP SCRIPTING.


How can that be?

Form submitting is simple clientside HTML and cannot be specifically be
set for that.
The method is "POST" and
the action is "secondpage.asp". I had to go this route because some
calculations had to be done before sending on to a secure website for
credit card security.


A = request.form("theInputNameA")

Here the code to send an email using CDO, Jmail or whatever protocol is
used on your server

then sending the value of A to another file using form-post can only be
done IMHO!!! using a clientside page with hidden input value

<input name='secondInoutA' value='<%=A%>'>

and automatic submission by clientside script.

If the info could be sent as an querystring, the credit card company
could be called directly by the server using server.xmlhttp or alike.

Perhaps ASP could fake POST with specialized headers, Guru's??
The secondpage.asp form properites uses the send to other as well,
with action going to the secure credit card website. This website only
allows a certain number of form field to go over and we want to
collect all data. Can this be done using asp scripting? I thought
about using a custom script to email and file then redirect to
secondpage.asp but didnt know if that would work and a novice at asp
scripting. As if you couldn't already tell!!


I am not an exact novice, but I would not dare touch credit card code,
especially with this twitch of going back to the client, as this is an
security risk allowing the client to set different information in the
email as is sent to the cresit card company.
Any help would be greatly appreciated. Thanks in advance!


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


The credit card data and processing are housed by another company which is
what makes this so complicated for me. The secondpage.asp uses the hidden
files as you mention and I had to use that secondpage just to bring over the
donation amount inputted by the donor because of the format for dollar
amount.

The form is located at http://www.uamont.edu/alumni/tinasform.asp if you
want to review, however you will not see all the code when viewing source.

The results page is located at http://www.uamont.edu/alumni/tinasform.asp
but you will not see all the code there either. Might give you a better
understanding of what I am doing or trying to do.

It has been quite a chore but as I mentioned earlier, the forms are working
as is except that I cannot send to a comma delimited file or email without
more scripting experience. So I've been told.
May 22 '06 #3
=?Utf-8?B?ZnJlZW1hbm4=?= wrote on 22 mei 2006 in
microsoft.public.inetserver.asp.general:
The credit card data and processing are housed by another company
which is what makes this so complicated for me. The secondpage.asp
uses the hidden files as you mention and I had to use that secondpage
just to bring over the donation amount inputted by the donor because
of the format for dollar amount.

The form is located at http://www.uamont.edu/alumni/tinasform.asp if
you want to review, however you will not see all the code when viewing
source.

Grafically it looks quite nice and shows you are not a beginner in HTML.

However I can and should not see the ASP code, since that is serverside.
The results page is located at
http://www.uamont.edu/alumni/tinasform.asp but you will not see all
the code there either. Might give you a better understanding of what I
am doing or trying to do.
This redirects to the same page I believe.
It has been quite a chore but as I mentioned earlier, the forms are
working as is except that I cannot send to a comma delimited file or
email without more scripting experience. So I've been told.


The pages are far to complex to experiment with, do I suggest you start
returning a comma delimited file generated by a small asp file.

<%
response.ContentType="text/plain"
For i = 1 to 999
response.write "Field number " & n & ","
Next
response.write "Field number " & 1000
%>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
May 22 '06 #4

freemann wrote:
"Evertjan." wrote:
=?Utf-8?B?ZnJlZW1hbm4=?= wrote on 22 mei 2006 in
microsoft.public.inetserver.asp.general:
Can anyone provide example code showing how to send form results to a
results page, email and a comma delimited file? Notice that I need it
going to all three locations.

Details: I have forms created and working. The first form the user
fills out and submits. The form properties are set to Send to other:
"Custom ISAPI, NSAPI, CGI, OR ASP SCRIPTING.


How can that be?

Form submitting is simple clientside HTML and cannot be specifically be
set for that.
The method is "POST" and
the action is "secondpage.asp". I had to go this route because some
calculations had to be done before sending on to a secure website for
credit card security.


A = request.form("theInputNameA")

Here the code to send an email using CDO, Jmail or whatever protocol is
used on your server

then sending the value of A to another file using form-post can only be
done IMHO!!! using a clientside page with hidden input value

<input name='secondInoutA' value='<%=A%>'>

and automatic submission by clientside script.

If the info could be sent as an querystring, the credit card company
could be called directly by the server using server.xmlhttp or alike.

Perhaps ASP could fake POST with specialized headers, Guru's??
The secondpage.asp form properites uses the send to other as well,
with action going to the secure credit card website. This website only
allows a certain number of form field to go over and we want to
collect all data. Can this be done using asp scripting? I thought
about using a custom script to email and file then redirect to
secondpage.asp but didnt know if that would work and a novice at asp
scripting. As if you couldn't already tell!!


I am not an exact novice, but I would not dare touch credit card code,
especially with this twitch of going back to the client, as this is an
security risk allowing the client to set different information in the
email as is sent to the cresit card company.
Any help would be greatly appreciated. Thanks in advance!


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


The credit card data and processing are housed by another company which is
what makes this so complicated for me. The secondpage.asp uses the hidden
files as you mention and I had to use that secondpage just to bring over the
donation amount inputted by the donor because of the format for dollar
amount.

The form is located at http://www.uamont.edu/alumni/tinasform.asp if you
want to review, however you will not see all the code when viewing source.

The results page is located at http://www.uamont.edu/alumni/tinasform.asp
but you will not see all the code there either. Might give you a better
understanding of what I am doing or trying to do.

It has been quite a chore but as I mentioned earlier, the forms are working
as is except that I cannot send to a comma delimited file or email without
more scripting experience. So I've been told.


If you need to learn how to use ASP, one of the better places for a
basic introduction is www.w3schools.com/asp. It's pretty basic, but
you will need to look at ASP Request, ASP File, ASP Forms and ASP Send
Email. If you want to have a go at some of the sample code there, but
get errors you don't understand, get back to us with the code you've
tried to use, the error it gave, and the line that gave the error. If
you have already tried to get some code working unsuccessfully, so the
same with that.

--
Mike Brind

May 22 '06 #5

freemann wrote:

The results page is located at http://www.uamont.edu/alumni/tinasform.asp


It's not actually - it's
http://www.uamont.edu/alumni/second_page-test.asp. One of the first
things you need to do is to verify that the form fields have been
completed in the form and to validate that data server-side before you
do anything else. I just clicked the submit button on the empty form
and it didn't provide me with any errors. You shouldn't rely on users
verifying or validating their own input. Some of them might have
malicious intent.

--
Mike Brind

May 22 '06 #6


"Evertjan." wrote:
=?Utf-8?B?ZnJlZW1hbm4=?= wrote on 22 mei 2006 in
microsoft.public.inetserver.asp.general:
The credit card data and processing are housed by another company
which is what makes this so complicated for me. The secondpage.asp
uses the hidden files as you mention and I had to use that secondpage
just to bring over the donation amount inputted by the donor because
of the format for dollar amount.

The form is located at http://www.uamont.edu/alumni/tinasform.asp if
you want to review, however you will not see all the code when viewing
source.


Grafically it looks quite nice and shows you are not a beginner in HTML.

However I can and should not see the ASP code, since that is serverside.
The results page is located at
http://www.uamont.edu/alumni/tinasform.asp but you will not see all
the code there either. Might give you a better understanding of what I
am doing or trying to do.


This redirects to the same page I believe.
It has been quite a chore but as I mentioned earlier, the forms are
working as is except that I cannot send to a comma delimited file or
email without more scripting experience. So I've been told.


The pages are far to complex to experiment with, do I suggest you start
returning a comma delimited file generated by a small asp file.

<%
response.ContentType="text/plain"
For i = 1 to 999
response.write "Field number " & n & ","
Next
response.write "Field number " & 1000
%>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)


Where does it put this comma delimited file? Should I put in on the first
page where the form is located or the second page? Sorry if it sounds like
I'm losing it, I am! Thanks so much for your help.
May 22 '06 #7
=?Utf-8?B?ZnJlZW1hbm4=?= wrote on 22 mei 2006 in
microsoft.public.inetserver.asp.general:
The pages are far to complex to experiment with, do I suggest you
start returning a comma delimited file generated by a small asp file.

<%
response.ContentType="text/plain"
For i = 1 to 999
response.write "Field number " & n & ","
Next
response.write "Field number " & 1000
%>
Where does it put this comma delimited file? Should I put in on the
first page where the form is located or the second page?


No, that was not what I ment. Since you expressed problems with making
comma delimited files with an ASP code, I suggest[ed] you experiment with
it in a small file.

Do not be too much focussed on the task at hand, but get to know the
aspects of ASP (-vbs ir jscript) coding you hink you do not understand.

After that the task will be far easier and your will be an expert in that
field.
Sorry if it sounds like I'm losing it, I am!
I don't think so.
Focus on a learning curve, test your ideas with dedicated small asp files.
Thanks so much for your help.


You are welcome.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
May 22 '06 #8
Will do that for sure. Thanks!

"Mike Brind" wrote:

freemann wrote:

The results page is located at http://www.uamont.edu/alumni/tinasform.asp


It's not actually - it's
http://www.uamont.edu/alumni/second_page-test.asp. One of the first
things you need to do is to verify that the form fields have been
completed in the form and to validate that data server-side before you
do anything else. I just clicked the submit button on the empty form
and it didn't provide me with any errors. You shouldn't rely on users
verifying or validating their own input. Some of them might have
malicious intent.

--
Mike Brind

May 22 '06 #9


"Mike Brind" wrote:

freemann wrote:

The results page is located at http://www.uamont.edu/alumni/tinasform.asp
It's not actually - it's
http://www.uamont.edu/alumni/second_page-test.asp.


I knew that, just copied and pasted the wrong one, sorry.
<One of the first things you need to do is to verify that the form fields have been
completed in the form and to validate that data server-side before you
do anything else. I just clicked the submit button on the empty form
and it didn't provide me with any errors. You shouldn't rely on users
verifying or validating their own input. Some of them might have
malicious intent.

The orginial form has some validation in it, this is just a test page for
trying out all the asp scripting. Notice the required fields, just didnt
bother with setting validation on the test form. After your post I went to
the orginial form to make sure. Thanks.


--
Mike Brind

May 22 '06 #10
I tried placing the code under the submit button code on the form page and it
displayed "field number" under the the submit button on the form page. I know
I'm not doing something right but will continue trying. Thanks again.

"Evertjan." wrote:
=?Utf-8?B?ZnJlZW1hbm4=?= wrote on 22 mei 2006 in
microsoft.public.inetserver.asp.general:
The pages are far to complex to experiment with, do I suggest you
start returning a comma delimited file generated by a small asp file.

<%
response.ContentType="text/plain"
For i = 1 to 999
response.write "Field number " & n & ","
Next
response.write "Field number " & 1000
%>


Where does it put this comma delimited file? Should I put in on the
first page where the form is located or the second page?


No, that was not what I ment. Since you expressed problems with making
comma delimited files with an ASP code, I suggest[ed] you experiment with
it in a small file.

Do not be too much focussed on the task at hand, but get to know the
aspects of ASP (-vbs ir jscript) coding you hink you do not understand.

After that the task will be far easier and your will be an expert in that
field.
Sorry if it sounds like I'm losing it, I am!


I don't think so.
Focus on a learning curve, test your ideas with dedicated small asp files.
Thanks so much for your help.


You are welcome.

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

May 22 '06 #11
>> The form properties are set to Send to other:
"Custom ISAPI, NSAPI, CGI, OR ASP SCRIPTING.
How can that be?
It's a FrontPage thang.
Form submitting is simple clientside HTML and cannot be specifically be
set for that.


Evertjan, you really need to bone up on your FrontPage skills if you're
going to be answering questions in an ASP group :>);

Bob Lehmann

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242... =?Utf-8?B?ZnJlZW1hbm4=?= wrote on 22 mei 2006 in
microsoft.public.inetserver.asp.general:
Can anyone provide example code showing how to send form results to a
results page, email and a comma delimited file? Notice that I need it
going to all three locations.

Details: I have forms created and working. The first form the user
fills out and submits. The form properties are set to Send to other:
"Custom ISAPI, NSAPI, CGI, OR ASP SCRIPTING.


How can that be?

Form submitting is simple clientside HTML and cannot be specifically be
set for that.
The method is "POST" and
the action is "secondpage.asp". I had to go this route because some
calculations had to be done before sending on to a secure website for
credit card security.


A = request.form("theInputNameA")

Here the code to send an email using CDO, Jmail or whatever protocol is
used on your server

then sending the value of A to another file using form-post can only be
done IMHO!!! using a clientside page with hidden input value

<input name='secondInoutA' value='<%=A%>'>

and automatic submission by clientside script.

If the info could be sent as an querystring, the credit card company
could be called directly by the server using server.xmlhttp or alike.

Perhaps ASP could fake POST with specialized headers, Guru's??
The secondpage.asp form properites uses the send to other as well,
with action going to the secure credit card website. This website only
allows a certain number of form field to go over and we want to
collect all data. Can this be done using asp scripting? I thought
about using a custom script to email and file then redirect to
secondpage.asp but didnt know if that would work and a novice at asp
scripting. As if you couldn't already tell!!


I am not an exact novice, but I would not dare touch credit card code,
especially with this twitch of going back to the client, as this is an
security risk allowing the client to set different information in the
email as is sent to the cresit card company.
Any help would be greatly appreciated. Thanks in advance!


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

May 23 '06 #12
Unless you are also doing server-side validation, client-side validation
exposes you to the risks that Mike mentioned.

Bob Lehmann

"freemann" <fr******@discussions.microsoft.com> wrote in message
news:A3**********************************@microsof t.com...


"Mike Brind" wrote:

freemann wrote:

The results page is located at
http://www.uamont.edu/alumni/tinasform.asp
It's not actually - it's
http://www.uamont.edu/alumni/second_page-test.asp.


I knew that, just copied and pasted the wrong one, sorry.
<One of the first
things you need to do is to verify that the form fields have been
completed in the form and to validate that data server-side before you
do anything else. I just clicked the submit button on the empty form
and it didn't provide me with any errors. You shouldn't rely on users
verifying or validating their own input. Some of them might have
malicious intent.

The orginial form has some validation in it, this is just a test page for
trying out all the asp scripting. Notice the required fields, just didnt
bother with setting validation on the test form. After your post I went to
the orginial form to make sure. Thanks.


--
Mike Brind

May 23 '06 #13
On Mon, 22 May 2006 18:32:29 -0600, "Bob Lehmann"
<no****@dontbotherme.zzz> wrote:
in <u5**************@TK2MSFTNGP02.phx.gbl>
The form properties are set to Send to other:

"Custom ISAPI, NSAPI, CGI, OR ASP SCRIPTING.

How can that be?
It's a FrontPage thang.
Form submitting is simple clientside HTML and cannot be specifically be
set for that.


Evertjan, you really need to bone up on your FrontPage skills if you're
going to be answering questions in an ASP group :>);

Bob Lehmann


Oh c'mon Bob. Frontpage makes me gag. And Frontage has ~nothing~ to do
with ASP - it's off-topic in this group.

---
This posting is provided "AS IS" with no warranties and no guarantees either express or implied.

Stefan Berglund
May 23 '06 #14
> Oh c'mon Bob. Frontpage makes me gag. And Frontage has ~nothing~ to do
with ASP - it's off-topic in this group.
Uh, yeah... I know. I guess the smiley didn't convey the ribbing I was
giving Evertjan.

Bob Lehmann

"Stefan Berglund" <so**************@for.me> wrote in message
news:n0********************************@4ax.com... On Mon, 22 May 2006 18:32:29 -0600, "Bob Lehmann"
<no****@dontbotherme.zzz> wrote:
in <u5**************@TK2MSFTNGP02.phx.gbl>
The form properties are set to Send to other:
"Custom ISAPI, NSAPI, CGI, OR ASP SCRIPTING.
How can that be?


It's a FrontPage thang.
Form submitting is simple clientside HTML and cannot be specifically be set for that.


Evertjan, you really need to bone up on your FrontPage skills if you're
going to be answering questions in an ASP group :>);

Bob Lehmann


Oh c'mon Bob. Frontpage makes me gag. And Frontage has ~nothing~ to do
with ASP - it's off-topic in this group.

---
This posting is provided "AS IS" with no warranties and no guarantees

either express or implied.
Stefan Berglund

May 23 '06 #15
On Mon, 22 May 2006 21:15:19 -0600, "Bob Lehmann"
<no****@dontbotherme.zzz> wrote:
in <#3**************@TK2MSFTNGP02.phx.gbl>
Oh c'mon Bob. Frontpage makes me gag. And Frontage has ~nothing~ to do
with ASP - it's off-topic in this group.


Uh, yeah... I know. I guess the smiley didn't convey the ribbing I was
giving Evertjan.

Bob Lehmann


My bad. You're absolutely right!

---

Stefan Berglund
May 23 '06 #16
Stefan Berglund wrote on 23 mei 2006 in
microsoft.public.inetserver.asp.general:
Oh c'mon Bob. Frontpage makes me gag. And Frontage has ~nothing~ to do
with ASP - it's off-topic in this group.


Frontpage should be OT everywhere.

Starting web programming with frontpage is like
learning to drive with automatic gear. ;-'}

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
May 23 '06 #17
I like automatic gear, quick and easy to learn. Everyone around here wants
things done yesterday so the quickest the better. Well off to a meeting to
see how much trouble I'm in for not getting this to work yet.

I really appreciate all the help, Thanks.

"Evertjan." wrote:
Stefan Berglund wrote on 23 mei 2006 in
microsoft.public.inetserver.asp.general:
Oh c'mon Bob. Frontpage makes me gag. And Frontage has ~nothing~ to do
with ASP - it's off-topic in this group.


Frontpage should be OT everywhere.

Starting web programming with frontpage is like
learning to drive with automatic gear. ;-'}

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

May 23 '06 #18

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

Similar topics

7
by: has | last post by:
<BLUSH> Careless talk costs lives, as they say. In my case, a throwaway comment that Python could trounce the notoriously underpowered and undersupported AppleScript language for "serious number...
18
by: Q. John Chen | last post by:
I have Vidation Controls First One: Simple exluce certain special characters: say no a or b or c in the string: * Second One: I required date be entered in "MM/DD/YYYY" format: //+4 How...
4
by: Greg Martin | last post by:
A couple snippets for you: Module ETSPSAttrMod1 Public LDAPAttribs As Scripting.Dictionary = New Scripting.Dictionary Sub Main() '<snip> * LDAPAttribs = GetLDAPAttribList()...
6
by: prieditis | last post by:
I need some very basic advice. Let's suppose I need to do some mysql queries and updates to a database. I also need to dynamically update parts of a web page that the user is looking at based on...
10
by: brooksr | last post by:
I know VB5/VBA very well but have not used VB to create web pages but need to do so. Can someone explain the purposes and differences between VBScript and VB.NET to create web pages? Also...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
0
by: wdhann66 | last post by:
I have enabled Java and scripting, but quite often I am informed that I must enable Java and/or scripting for the action to happen, such as to download, to be able to view a page, etc. As an...
5
WebMissy
by: WebMissy | last post by:
I have a forum all set up and everything works great. I decide to use IE 7 for the benefit of transparent PNG files. All is well with that but now my scripting for my colored scrollbars doesn't show...
8
by: Mike Silva | last post by:
Hello all, I'm a longtime programmer (embedded with a smattering of desktop stuff as well) who knows very little about web programming. Right now I am developing the prototype of a multi-user...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
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...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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.