473,396 Members | 2,029 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.

HTML validation

Hi!

I have news pages on my websites where certain users could post their stuff.
They allowed(and asked) to use html tags, because I save text as-is in
database and then just pull it out to the page.

I wanted to know if there any built-in stuff in .NET to validate HTM text to
make sure tags closed, valid tags used, etc.

Thanks,
Ivan
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004
Nov 18 '05 #1
13 1424
Hi Ivan,

You might want to check whether you can take advantage of the API for HTML
Tidy. There's a lot of activity going on here:

http://tidy.sourceforge.net/

"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:ef**************@tk2msftngp13.phx.gbl...
Hi!

I have news pages on my websites where certain users could post their
stuff.
They allowed(and asked) to use html tags, because I save text as-is in
database and then just pull it out to the page.

I wanted to know if there any built-in stuff in .NET to validate HTM text
to
make sure tags closed, valid tags used, etc.

Thanks,
Ivan
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004


Nov 18 '05 #2
There is the MSHTML parser. But be advised that the 1.1 .NET Framework has
a cross-site scripting component built in to prevent tag-like data from
being submitted from form posts. The feature can be disabled in web.comfig,
but your web host may not allow it.
"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:ef**************@tk2msftngp13.phx.gbl...
Hi!

I have news pages on my websites where certain users could post their stuff. They allowed(and asked) to use html tags, because I save text as-is in
database and then just pull it out to the page.

I wanted to know if there any built-in stuff in .NET to validate HTM text to make sure tags closed, valid tags used, etc.

Thanks,
Ivan
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004

Nov 18 '05 #3
Scott,

Thanks! Good to know that something is there

I'm aware of 1.1 .NET security feature because my host uses 1.1 and my
development machine has 1.0 (you know what I mean :-) )

I'm disabling this at page level.

Can you give me a link on how to use MSHTML parser or anything related?

Thanks,
Ivan

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:eq**************@TK2MSFTNGP12.phx.gbl...
There is the MSHTML parser. But be advised that the 1.1 .NET Framework has a cross-site scripting component built in to prevent tag-like data from
being submitted from form posts. The feature can be disabled in web.comfig, but your web host may not allow it.
"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:ef**************@tk2msftngp13.phx.gbl...
Hi!

I have news pages on my websites where certain users could post their stuff.
They allowed(and asked) to use html tags, because I save text as-is in
database and then just pull it out to the page.

I wanted to know if there any built-in stuff in .NET to validate HTM

text to
make sure tags closed, valid tags used, etc.

Thanks,
Ivan
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004
Nov 18 '05 #4
This may help:

http://msdn.microsoft.com/library/de...ng/hosting.asp

Also, do a newsgroup search on mshtml, I just recently saw a post where
someone was using it.

"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
Scott,

Thanks! Good to know that something is there

I'm aware of 1.1 .NET security feature because my host uses 1.1 and my
development machine has 1.0 (you know what I mean :-) )

I'm disabling this at page level.

Can you give me a link on how to use MSHTML parser or anything related?

Thanks,
Ivan

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:eq**************@TK2MSFTNGP12.phx.gbl...
There is the MSHTML parser. But be advised that the 1.1 .NET Framework

has
a cross-site scripting component built in to prevent tag-like data from
being submitted from form posts. The feature can be disabled in

web.comfig,
but your web host may not allow it.
"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:ef**************@tk2msftngp13.phx.gbl...
Hi!

I have news pages on my websites where certain users could post their

stuff.
They allowed(and asked) to use html tags, because I save text as-is in
database and then just pull it out to the page.

I wanted to know if there any built-in stuff in .NET to validate HTM

text
to
make sure tags closed, valid tags used, etc.

Thanks,
Ivan
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004

Nov 18 '05 #5
you can let your users use some HTML-editor that you can find in the web.
Nov 18 '05 #6
How would that help him validate the HTML (using .NET) that they send to
him?
"Shahar" <sh****@log-on.com> wrote in message
news:e8**************************@posting.google.c om...
you can let your users use some HTML-editor that you can find in the web.

Nov 18 '05 #7
Yep... You correct here..

I did research and it seems like Microsoft.mshtml
comes with VS only.Currently I use WebMatrix for development...

Another problem is I'm not sure how would I redistribute this ? I use public
webhost...

May be I will need to go with WYSIWYG web-based editor, but I hate to see
html this things generate.
And I didn't find free ones...

May be just allow specific set of tags and validate them myself?!

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:#Y**************@TK2MSFTNGP10.phx.gbl...
How would that help him validate the HTML (using .NET) that they send to
him?
"Shahar" <sh****@log-on.com> wrote in message
news:e8**************************@posting.google.c om...
you can let your users use some HTML-editor that you can find in the
web.

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004
Nov 18 '05 #8
MSHTML is a platform .DLL and ships as a part of Internet Explorer.
However, you probably don't want to instantiate this control on your server
in response to user requests as it's pretty resource heavy.

You may find this interesting:
http://msdn.microsoft.com/downloads/...ns/default.asp
--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.

"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:u8**************@tk2msftngp13.phx.gbl...
Yep... You correct here..

I did research and it seems like Microsoft.mshtml
comes with VS only.Currently I use WebMatrix for development...

Another problem is I'm not sure how would I redistribute this ? I use public webhost...

May be I will need to go with WYSIWYG web-based editor, but I hate to see
html this things generate.
And I didn't find free ones...

May be just allow specific set of tags and validate them myself?!

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:#Y**************@TK2MSFTNGP10.phx.gbl...
How would that help him validate the HTML (using .NET) that they send to
him?
"Shahar" <sh****@log-on.com> wrote in message
news:e8**************************@posting.google.c om...
you can let your users use some HTML-editor that you can find in the

web.

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004

Nov 18 '05 #9
I was talking about Microsoft.mshtml
which is (I beleive) part of VS.NEt and it's not going to be on a web
server?

"Eric Lawrence [MSFT]" <e_********@hotmail.com> wrote in message
news:#w**************@TK2MSFTNGP09.phx.gbl...
MSHTML is a platform .DLL and ships as a part of Internet Explorer.
However, you probably don't want to instantiate this control on your server in response to user requests as it's pretty resource heavy.

You may find this interesting:
http://msdn.microsoft.com/downloads/...sp?url=/downlo
ads/samples/internet/ie55/EditRegions/default.asp

--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.
"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:u8**************@tk2msftngp13.phx.gbl...
Yep... You correct here..

I did research and it seems like Microsoft.mshtml
comes with VS only.Currently I use WebMatrix for development...

Another problem is I'm not sure how would I redistribute this ? I use

public
webhost...

May be I will need to go with WYSIWYG web-based editor, but I hate to see html this things generate.
And I didn't find free ones...

May be just allow specific set of tags and validate them myself?!

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:#Y**************@TK2MSFTNGP10.phx.gbl...
How would that help him validate the HTML (using .NET) that they send to him?
"Shahar" <sh****@log-on.com> wrote in message
news:e8**************************@posting.google.c om...
> you can let your users use some HTML-editor that you can find in the

web.

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004
Nov 18 '05 #10
Ivan,

VS.NET doesn't provide any native classes, it only makes the classes in the
..NET Framework available in an editing environment. Whatever the .NET
Framework has to offer VS.NET will be available to Web Matrix as well.

But Eric is correct MSHTML is not a .NET Framework class, it is part of IE,
but can be instantiated from a .NET Project.
"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP12.phx.gbl...
I was talking about Microsoft.mshtml
which is (I beleive) part of VS.NEt and it's not going to be on a web
server?

"Eric Lawrence [MSFT]" <e_********@hotmail.com> wrote in message
news:#w**************@TK2MSFTNGP09.phx.gbl...
MSHTML is a platform .DLL and ships as a part of Internet Explorer.
However, you probably don't want to instantiate this control on your server
in response to user requests as it's pretty resource heavy.

You may find this interesting:

http://msdn.microsoft.com/downloads/...sp?url=/downlo ads/samples/internet/ie55/EditRegions/default.asp


--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.

"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:u8**************@tk2msftngp13.phx.gbl...
Yep... You correct here..

I did research and it seems like Microsoft.mshtml
comes with VS only.Currently I use WebMatrix for development...

Another problem is I'm not sure how would I redistribute this ? I use

public
webhost...

May be I will need to go with WYSIWYG web-based editor, but I hate to see html this things generate.
And I didn't find free ones...

May be just allow specific set of tags and validate them myself?!

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:#Y**************@TK2MSFTNGP10.phx.gbl...
> How would that help him validate the HTML (using .NET) that they send to
> him?
>
>
> "Shahar" <sh****@log-on.com> wrote in message
> news:e8**************************@posting.google.c om...
> > you can let your users use some HTML-editor that you can find in

the web.
>
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004

Nov 18 '05 #11
I don't believe you can successfully instantiate MSHTML on the user's
client, although if you set the ContentEditable flag on a DIV, I believe the
net result is pretty much the same. How were you planning to use MSHTML to
verify the content?
--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.

"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP12.phx.gbl...
I was talking about Microsoft.mshtml
which is (I beleive) part of VS.NEt and it's not going to be on a web
server?

"Eric Lawrence [MSFT]" <e_********@hotmail.com> wrote in message
news:#w**************@TK2MSFTNGP09.phx.gbl...
MSHTML is a platform .DLL and ships as a part of Internet Explorer.
However, you probably don't want to instantiate this control on your server
in response to user requests as it's pretty resource heavy.

You may find this interesting:

http://msdn.microsoft.com/downloads/...sp?url=/downlo ads/samples/internet/ie55/EditRegions/default.asp


--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.

"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:u8**************@tk2msftngp13.phx.gbl...
Yep... You correct here..

I did research and it seems like Microsoft.mshtml
comes with VS only.Currently I use WebMatrix for development...

Another problem is I'm not sure how would I redistribute this ? I use

public
webhost...

May be I will need to go with WYSIWYG web-based editor, but I hate to see html this things generate.
And I didn't find free ones...

May be just allow specific set of tags and validate them myself?!

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:#Y**************@TK2MSFTNGP10.phx.gbl...
> How would that help him validate the HTML (using .NET) that they send to
> him?
>
>
> "Shahar" <sh****@log-on.com> wrote in message
> news:e8**************************@posting.google.c om...
> > you can let your users use some HTML-editor that you can find in

the web.
>
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004

Nov 18 '05 #12
I don't know...

If you can suggest better way to validate content - cool.

I'm seriously thinking about writing my own little class to do this.
I only want them to do simple stuff like <i><b><u><p>...
I don't know how I would use mshtml because I didn't use it yet...

I'm just researching on the subject.

"Eric Lawrence [MSFT]" <e_********@hotmail.com> wrote in message
news:u#**************@TK2MSFTNGP11.phx.gbl...
I don't believe you can successfully instantiate MSHTML on the user's
client, although if you set the ContentEditable flag on a DIV, I believe the net result is pretty much the same. How were you planning to use MSHTML to verify the content?
--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.
"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP12.phx.gbl...
I was talking about Microsoft.mshtml
which is (I beleive) part of VS.NEt and it's not going to be on a web
server?

"Eric Lawrence [MSFT]" <e_********@hotmail.com> wrote in message
news:#w**************@TK2MSFTNGP09.phx.gbl...
MSHTML is a platform .DLL and ships as a part of Internet Explorer.
However, you probably don't want to instantiate this control on your

server
in response to user requests as it's pretty resource heavy.

You may find this interesting:

http://msdn.microsoft.com/downloads/...sp?url=/downlo
ads/samples/internet/ie55/EditRegions/default.asp


--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no

rights.

"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:u8**************@tk2msftngp13.phx.gbl...
> Yep... You correct here..
>
> I did research and it seems like Microsoft.mshtml
> comes with VS only.Currently I use WebMatrix for development...
>
> Another problem is I'm not sure how would I redistribute this ? I use public
> webhost...
>
> May be I will need to go with WYSIWYG web-based editor, but I hate
to
see
> html this things generate.
> And I didn't find free ones...
>
> May be just allow specific set of tags and validate them myself?!
>
>
>
>
>
> "Scott M." <s-***@BADSPAMsnet.net> wrote in message
> news:#Y**************@TK2MSFTNGP10.phx.gbl...
> > How would that help him validate the HTML (using .NET) that they

send
to
> > him?
> >
> >
> > "Shahar" <sh****@log-on.com> wrote in message
> > news:e8**************************@posting.google.c om...
> > > you can let your users use some HTML-editor that you can find in

the > web.
> >
> >
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004
>
>

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004
Nov 18 '05 #13
Somewhere in csharp group I googled info on the subject.

Microsoft.mshtml is a wrapper around mshtml. It is installed into GAC and I
suspect would be
the best way to go. (Better then COM interop)

But this is not a part of .NET Framework, therefore I can not use it from
command line/webmatrix...
"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:e3**************@TK2MSFTNGP10.phx.gbl...
Ivan,

VS.NET doesn't provide any native classes, it only makes the classes in the .NET Framework available in an editing environment. Whatever the .NET
Framework has to offer VS.NET will be available to Web Matrix as well.

But Eric is correct MSHTML is not a .NET Framework class, it is part of IE, but can be instantiated from a .NET Project.
"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:uL**************@TK2MSFTNGP12.phx.gbl...
I was talking about Microsoft.mshtml
which is (I beleive) part of VS.NEt and it's not going to be on a web
server?

"Eric Lawrence [MSFT]" <e_********@hotmail.com> wrote in message
news:#w**************@TK2MSFTNGP09.phx.gbl...
MSHTML is a platform .DLL and ships as a part of Internet Explorer.
However, you probably don't want to instantiate this control on your

server
in response to user requests as it's pretty resource heavy.

You may find this interesting:

http://msdn.microsoft.com/downloads/...sp?url=/downlo
ads/samples/internet/ie55/EditRegions/default.asp


--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no

rights.

"Ivan Demkovitch" <id*********@nospam.hotmail.com> wrote in message
news:u8**************@tk2msftngp13.phx.gbl...
> Yep... You correct here..
>
> I did research and it seems like Microsoft.mshtml
> comes with VS only.Currently I use WebMatrix for development...
>
> Another problem is I'm not sure how would I redistribute this ? I use public
> webhost...
>
> May be I will need to go with WYSIWYG web-based editor, but I hate
to
see
> html this things generate.
> And I didn't find free ones...
>
> May be just allow specific set of tags and validate them myself?!
>
>
>
>
>
> "Scott M." <s-***@BADSPAMsnet.net> wrote in message
> news:#Y**************@TK2MSFTNGP10.phx.gbl...
> > How would that help him validate the HTML (using .NET) that they

send
to
> > him?
> >
> >
> > "Shahar" <sh****@log-on.com> wrote in message
> > news:e8**************************@posting.google.c om...
> > > you can let your users use some HTML-editor that you can find in

the > web.
> >
> >
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004
>
>

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 2/6/2004
Nov 18 '05 #14

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

Similar topics

1
by: MarkAurit | last post by:
I have a requirement to validate some html at approx the ie6 level. The validation cant take place use a web control, but must be done in an event such as post back. Does anyone know of ideally...
12
by: Nalaka | last post by:
Hi, I suddenly started getting a lot of errors from html validation (some CSS) so I followed the following instructions to disable it. If you'd rather not have these types of HTML validation...
8
by: goldtech | last post by:
Newbie esp about html validation - seems like something to strive for. Yet many pages even "enterprise" corporate type pages do not validate, yet seem to display well on most browsers. Two...
10
by: NikitaTheSpider | last post by:
Hi all, I would like to announce the alpha release of a service that does bulk/batch HTML validation, link checking and more. During alpha testing, the service is free -- I need people to try this...
1
by: Tatyana | last post by:
Hi All, I have a question regarding validation with XHTML on ASP.Net websites. Our site is built on ASP.NET 2.0 with validation XHTML. Search Engine Optimizer advised us that we should change it...
14
by: howa | last post by:
Is it true that if my XHTML is conforming to the w3c XHTML DTD, my XHTML is validated and no need to run the HTML validation hosted on w3c web page? Thanks.
9
tharden3
by: tharden3 | last post by:
My site is HTML Valid by the W3C for all but one error. You see, to make a really great navigation bar in my left column, I added the <p> attribute to the text in-between an <a href=""></a> link...
1
by: =?Utf-8?B?ZGlzY2lwbGluZTRldmVyNjY2?= | last post by:
Hi, the CMS out company wrote a few years ago, uses certain attrbutes not included in any HTML validation known. Is there a way to add these custom attributes to HTML validation within VS2005? I...
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: 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
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
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
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...
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,...
0
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...

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.