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

asp <-> nntp scripts

Hello

Does anyone know of a (good) asp script to browse/post nntp
(usenet/newsgroups)?

I know there are some ASP .Net ones, but I rather have this on ASP for now
since I'm still working on migrating my site later.

TIA

--
Mauricio Freitas, Microsoft MVP Mobile Devices
Bluetooth guides: http://www.geekzone.co.nz/content.asp?contentid=449
Geekzone Software Store: http://www.geekzone.co.nz/store
Our RSS feeds give you up to date information on new software as soon as
they're available: http://www.geekzone.co.nz/content.asp?contentid=3344


Jul 22 '05 #1
6 1579
On 03 jan 2005, you wrote in microsoft.public.inetserver.asp.general:
Does anyone know of a (good) asp script to browse/post nntp
(usenet/newsgroups)?


g = "microsoft.public.inetserver.asp.general"
response.redirect "http://groups-beta.google.com/group/"&g

;-}

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 22 '05 #2
I'm pretty sure DundasMailer (free component) supports NNTP.
http://aspalliance.com/dundas/default.aspx

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


"Mauricio Freitas [MVP]" <dr************@nowhere.invalid> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
Hello

Does anyone know of a (good) asp script to browse/post nntp
(usenet/newsgroups)?

I know there are some ASP .Net ones, but I rather have this on ASP for now
since I'm still working on migrating my site later.

TIA

--
Mauricio Freitas, Microsoft MVP Mobile Devices
Bluetooth guides: http://www.geekzone.co.nz/content.asp?contentid=449
Geekzone Software Store: http://www.geekzone.co.nz/store
Our RSS feeds give you up to date information on new software as soon as
they're available: http://www.geekzone.co.nz/content.asp?contentid=3344

Jul 22 '05 #3
"Mauricio Freitas [MVP]" <dr************@nowhere.invalid> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
Hello

Does anyone know of a (good) asp script to browse/post nntp
(usenet/newsgroups)?

I know there are some ASP .Net ones, but I rather have this on ASP for now
since I'm still working on migrating my site later.


Posting is a relatively straight forward process. Here's a VBScript example
adapted from the following article:

http://msdn.microsoft.com/library/en..._newsgroup.asp

<script language="VBScript" runat="SERVER">
Dim Msg : Set Msg = CreateObject("CDO.Message")
Dim Cfg : Set Cfg = CreateObject("CDO.Configuration")

Cfg.Fields("http://schemas.microsoft.com/cdo/configuration/postusing").Value
= 2
Cfg.Fields("http://schemas.microsoft.com/cdo/configuration/nntpserver").Valu
e = "yournntpserver"

Cfg.Fields.Update
Set Msg.Configuration = Cfg

Msg.Subject = "Hello"
Msg.From = "us***@yourdomain.com"
Msg.Newsgroups = "yournewsgroup"
Msg.Post
</script>
Browsing is considerably more complicated. Basically, you need to create a
COM component to handle NNTP "Event Sinks". I've never attempted it myself
but here's the documentation if you're feeling adventurous:
http://msdn.microsoft.com/library/en...s_with_cdo.asp
Jul 22 '05 #4
here's a component that is supposed to enable you to communicate with an
NNTP server (haven't tried it).

http://www.seekfordsolutions.com/Products/NNTPWizard/

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Chris Hohmann" <no****@thankyou.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
"Mauricio Freitas [MVP]" <dr************@nowhere.invalid> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
Hello

Does anyone know of a (good) asp script to browse/post nntp
(usenet/newsgroups)?

I know there are some ASP .Net ones, but I rather have this on ASP for now since I'm still working on migrating my site later.
Posting is a relatively straight forward process. Here's a VBScript

example adapted from the following article:

http://msdn.microsoft.com/library/en..._newsgroup.asp
<script language="VBScript" runat="SERVER">
Dim Msg : Set Msg = CreateObject("CDO.Message")
Dim Cfg : Set Cfg = CreateObject("CDO.Configuration")

Cfg.Fields("http://schemas.microsoft.com/cdo/configuration/postusing").Value = 2
Cfg.Fields("http://schemas.microsoft.com/cdo/configuration/nntpserver").Valu e = "yournntpserver"

Cfg.Fields.Update
Set Msg.Configuration = Cfg

Msg.Subject = "Hello"
Msg.From = "us***@yourdomain.com"
Msg.Newsgroups = "yournewsgroup"
Msg.Post
</script>
Browsing is considerably more complicated. Basically, you need to create a
COM component to handle NNTP "Event Sinks". I've never attempted it myself
but here's the documentation if you're feeling adventurous:
http://msdn.microsoft.com/library/en...s_with_cdo.asp

Jul 22 '05 #5
"Chris Hohmann" <no****@thankyou.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
"Mauricio Freitas [MVP]" <dr************@nowhere.invalid> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
Hello

Does anyone know of a (good) asp script to browse/post nntp
(usenet/newsgroups)?

I know there are some ASP .Net ones, but I rather have this on ASP for
now
since I'm still working on migrating my site later.


Posting is a relatively straight forward process. Here's a VBScript
example
adapted from the following article:

http://msdn.microsoft.com/library/en..._newsgroup.asp

<script language="VBScript" runat="SERVER">
Dim Msg : Set Msg = CreateObject("CDO.Message")
Dim Cfg : Set Cfg = CreateObject("CDO.Configuration")

Cfg.Fields("http://schemas.microsoft.com/cdo/configuration/postusing").Value
= 2
Cfg.Fields("http://schemas.microsoft.com/cdo/configuration/nntpserver").Valu
e = "yournntpserver"

Cfg.Fields.Update
Set Msg.Configuration = Cfg

Msg.Subject = "Hello"
Msg.From = "us***@yourdomain.com"
Msg.Newsgroups = "yournewsgroup"
Msg.Post
</script>
Browsing is considerably more complicated. Basically, you need to create a
COM component to handle NNTP "Event Sinks". I've never attempted it myself
but here's the documentation if you're feeling adventurous:
http://msdn.microsoft.com/library/en...s_with_cdo.asp

Cheers, will have to look at the sink scripts...

--
Mauricio Freitas, Microsoft MVP Mobile Devices
Bluetooth guides: http://www.geekzone.co.nz/content.asp?contentid=449
Geekzone Software Store: http://www.geekzone.co.nz/store
Our RSS feeds give you up to date information on new software as soon as
they're available: http://www.geekzone.co.nz/content.asp?contentid=3344


Jul 22 '05 #6
Thanks... Found DundasMailer before, was looking for a set of scripts using
it (or other COM).

Will have to try it.

--
Mauricio Freitas, Microsoft MVP Mobile Devices
Bluetooth guides: http://www.geekzone.co.nz/content.asp?contentid=449
Geekzone Software Store: http://www.geekzone.co.nz/store
Our RSS feeds give you up to date information on new software as soon as
they're available: http://www.geekzone.co.nz/content.asp?contentid=3344

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:Od**************@tk2msftngp13.phx.gbl...
I'm pretty sure DundasMailer (free component) supports NNTP.
http://aspalliance.com/dundas/default.aspx

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


"Mauricio Freitas [MVP]" <dr************@nowhere.invalid> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
Hello

Does anyone know of a (good) asp script to browse/post nntp
(usenet/newsgroups)?

I know there are some ASP .Net ones, but I rather have this on ASP for
now
since I'm still working on migrating my site later.

TIA

--
Mauricio Freitas, Microsoft MVP Mobile Devices
Bluetooth guides: http://www.geekzone.co.nz/content.asp?contentid=449
Geekzone Software Store: http://www.geekzone.co.nz/store
Our RSS feeds give you up to date information on new software as soon as
they're available: http://www.geekzone.co.nz/content.asp?contentid=3344


Jul 22 '05 #7

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

Similar topics

5
by: Jonny T | last post by:
hi, i want to echo the string '<?php' in a php script like : echo "<?php"; but when i try nothing gets displayed ... if I use echo "<\?php";
7
by: haoren | last post by:
Can anybody help me with this problem: How can I echo a string that contain <? and <?php? For example, $str="test <? and <?php echo"; echo $str;
3
by: winderjj | last post by:
Hi All, I need everyones opinion. I am very new to XML but am temporarily putting all my efforts into using it. This is what I need to do. Write an xml parser (in C) that will parse a...
4
by: matatu | last post by:
Hi to all, I have a xml file, a substring like: &lt;a href=&quot;#&quot;&gt;text&lt;/a&gt; which after an xslt trasform is rendered as (using xsl:output method html): &lt;a...
4
by: higabe | last post by:
Three questions 1) I have a string function that works perfectly but according to W3C.org web site is syntactically flawed because it contains the characters </ in sequence. So how am I...
5
by: tobbe | last post by:
Hi Im trying to load a XmlDataDocument with the following xml: <ROOT> <NAME> &LT; &AMP; &GT; " '</NAME> </ROOT> And i know I have a entity problem here, but i cant find any solution for...
10
by: Jon Noring | last post by:
Out of curiosity, may a CDATA section appear within an attribute value with datatype CDATA? And if so, how about other attribute value datatypes which accept the XML markup characters? To me,...
4
by: Armel Asselin | last post by:
Hello, I've been using XML for a while in a rather 'free' manner (i.e. as long as IE accept it it's OK), I read recently (again) the Xml standard 1.0 (3rd edition) and found this sentence: ...
4
by: spibou | last post by:
I saw it at http://www.faqs.org/rfcs/rfc1305.html Is it not the same as writing ``if (m)'' ?
3
by: webmasterATflymagnetic.com | last post by:
Folks, I'm struggling to put the question together, but I have this problem. I have written an HTML form that I can use for data entry. This uses PHP to write a SQL UPDATE command that gets...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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: 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
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...

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.