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

Home Posts Topics Members FAQ

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 1594
On 03 jan 2005, you wrote in microsoft.publi c.inetserver.as p.general:
Does anyone know of a (good) asp script to browse/post nntp
(usenet/newsgroups)?


g = "microsoft.publ ic.inetserver.a sp.general"
response.redire ct "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.invali d> wrote in message
news:eM******** ******@TK2MSFTN GP12.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.invali d> wrote in message
news:eM******** ******@TK2MSFTN GP12.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="VBScr ipt" runat="SERVER">
Dim Msg : Set Msg = CreateObject("C DO.Message")
Dim Cfg : Set Cfg = CreateObject("C DO.Configuratio n")

Cfg.Fields("htt p://schemas.microso ft.com/cdo/configuration/postusing").Val ue
= 2
Cfg.Fields("htt p://schemas.microso ft.com/cdo/configuration/nntpserver").Va lu
e = "yournntpserver "

Cfg.Fields.Upda te
Set Msg.Configurati on = Cfg

Msg.Subject = "Hello"
Msg.From = "us***@yourdoma in.com"
Msg.Newsgroups = "yournewsgr oup"
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****@thankyo u.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
"Mauricio Freitas [MVP]" <dr************ @nowhere.invali d> wrote in message
news:eM******** ******@TK2MSFTN GP12.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="VBScr ipt" runat="SERVER">
Dim Msg : Set Msg = CreateObject("C DO.Message")
Dim Cfg : Set Cfg = CreateObject("C DO.Configuratio n")

Cfg.Fields("htt p://schemas.microso ft.com/cdo/configuration/postusing").Val ue = 2
Cfg.Fields("htt p://schemas.microso ft.com/cdo/configuration/nntpserver").Va lu e = "yournntpserver "

Cfg.Fields.Upda te
Set Msg.Configurati on = Cfg

Msg.Subject = "Hello"
Msg.From = "us***@yourdoma in.com"
Msg.Newsgroups = "yournewsgr oup"
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****@thankyo u.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
"Mauricio Freitas [MVP]" <dr************ @nowhere.invali d> wrote in message
news:eM******** ******@TK2MSFTN GP12.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="VBScr ipt" runat="SERVER">
Dim Msg : Set Msg = CreateObject("C DO.Message")
Dim Cfg : Set Cfg = CreateObject("C DO.Configuratio n")

Cfg.Fields("htt p://schemas.microso ft.com/cdo/configuration/postusing").Val ue
= 2
Cfg.Fields("htt p://schemas.microso ft.com/cdo/configuration/nntpserver").Va lu
e = "yournntpserver "

Cfg.Fields.Upda te
Set Msg.Configurati on = Cfg

Msg.Subject = "Hello"
Msg.From = "us***@yourdoma in.com"
Msg.Newsgroups = "yournewsgr oup"
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*****@dnartr eb.noraa> wrote in message
news:Od******** ******@tk2msftn gp13.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.invali d> wrote in message
news:eM******** ******@TK2MSFTN GP12.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
2375
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
5163
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
1965
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 fairly complicated XML file that is full of technical data(most scalar values). Then I need to store all the info in a C structure. Could some people give me their opinion. Which is better suited for this, Expat or LT xml?
4
9640
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 href="#"&gt;text&lt;/a&gt;
4
62095
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 supposed to write this function? String.replace(/</g,'&lt;');
5
3538
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 it. The problem is that i recive this from external source and cant
10
42954
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, the XML specification seems a little ambiguous on this, so I defer to the XML authorities. Refer to sections 2.4 and 2.7 (it all hinges on if CDATA attribute values are part of markup or not.) Thanks.
4
1913
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: Well-formedness constraint: No < in Attribute Values The replacement text of any entity referred to directly or indirectly in an attribute value MUST NOT contain a <.
4
1801
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
4000
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 written to my MySQL database. I can later view this data back in the form. One thing I've noticed happening is if I enter code such as &lt; it gets rewritten as < (ie the less-than sign). Now I don't want this to happen, but something somewhere is...
0
8395
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8310
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8826
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8732
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6166
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4155
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1955
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.