473,671 Members | 2,340 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking for RSS control

Hello,

Does anyone know a good RSS component for ASP.NET?

Thanks,
Miguel

Nov 19 '05 #1
7 1550
http://scottonwriting.com/sowBlog/RssFeed.htm
"Shapper" <mdmoura*NOSPAM *@gmail.*DELETE 2SEND*com> wrote in message
news:ua******** ******@TK2MSFTN GP09.phx.gbl...
Hello,

Does anyone know a good RSS component for ASP.NET?

Thanks,
Miguel


Nov 19 '05 #2
> Hello,

Does anyone know a good RSS component for ASP.NET?

Thanks, Miguel


There is an RSS component included in IP*Works! .Net
Edition. You can use it to create RSS in your asp.net app like so:

private
void Page_Load(objec t sender, System.EventArg s e) {
// Put user code to
initialize the page here
nsoftware.IPWor ks.Rss rss1 = new
nsoftware.IPWor ks.Rss();
rss1.ChannelTit le = "Rss On The Fly - IP*Works!
Demo";
rss1.ChannelDes cription = "How to create dynamic RSS in your web
app";
rss1.ChannelLin k =
"http://www.nsoftware.c om/support/kb/tutorials.aspx" ;
rss1.ImageTitle =
"IP*Works!" ;
rss1.ImageLink = "http://www.nsoftware.c om";
rss1.ImageURL =
"http://www.nsoftware.c om/subscriptions/img/boxshot.gif";
rss1.AddItem("t itle
1", "descriptio n 1", "http://mylink/1");
rss1.AddItem("t itle 2", "descriptio n
2", "http://mylink/2");
rss1.AddItem("t itle 3", "descriptio n 3",
"http://mylink/3");
Response.Clear( );
Response.Conten tType =

"text/xml";
Response.Write( rss1.RSSData);
Response.End();
}

Regards,
Lance R.
/n software
http://www.nsoftware.com/

-

Nov 19 '05 #3
Your asking developers to pay $399 to purchase a 'solution' that includes an
embedded write-only crippled implementation of RSS 2.0 that doesn't support
the entire specification in its entirety?

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee. com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/


<la****@nsoftwa re.removeme.com > wrote in message
news:OC******** ******@TK2MSFTN GP09.phx.gbl...
Hello,

Does anyone know a good RSS component for ASP.NET?

Thanks,
Miguel


There is an RSS component included in IP*Works! .Net
Edition. You can use it to create RSS in your asp.net app like so:

private
void Page_Load(objec t sender, System.EventArg s e) {
// Put user code to
initialize the page here
nsoftware.IPWor ks.Rss rss1 = new
nsoftware.IPWor ks.Rss();
rss1.ChannelTit le = "Rss On The Fly - IP*Works!
Demo";
rss1.ChannelDes cription = "How to create dynamic RSS in your web
app";
rss1.ChannelLin k =
"http://www.nsoftware.c om/support/kb/tutorials.aspx" ;
rss1.ImageTitle =
"IP*Works!" ;
rss1.ImageLink = "http://www.nsoftware.c om";
rss1.ImageURL =
"http://www.nsoftware.c om/subscriptions/img/boxshot.gif";
rss1.AddItem("t itle
1", "descriptio n 1", "http://mylink/1");
rss1.AddItem("t itle 2", "descriptio n
2", "http://mylink/2");
rss1.AddItem("t itle 3", "descriptio n 3",
"http://mylink/3");
Response.Clear( );
Response.Conten tType =

"text/xml";
Response.Write( rss1.RSSData);
Response.End();
}

Regards,
Lance R.
/n software
http://www.nsoftware.com/

-

Nov 19 '05 #4
Hello,

Even if IPWorks products are good paying that amount of money just for
an RSS component is to much.

What do you think about this one:
http://www.realcomponents.com/produc...s_manager.html

Can someone send me some feedback?

I need to take some decision about which component or code to use until
tomorrow.

Thank You,
Miguel

"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in
message news:cs******** *@REMOVETHISTEX Tmetromilwaukee .com:
Your asking developers to pay $399 to purchase a 'solution' that includes an
embedded write-only crippled implementation of RSS 2.0 that doesn't support
the entire specification in its entirety?

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee. com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/


<la****@nsoftwa re.removeme.com > wrote in message
news:OC******** ******@TK2MSFTN GP09.phx.gbl...
Hello,

Does anyone know a good RSS component for ASP.NET?

Thanks,

Miguel

There is an RSS component included in IP*Works! .Net
Edition. You can use it to create RSS in your asp.net app like so:

private
void Page_Load(objec t sender, System.EventArg s e) {
// Put user code to
initialize the page here
nsoftware.IPWor ks.Rss rss1 = new
nsoftware.IPWor ks.Rss();
rss1.ChannelTit le = "Rss On The Fly - IP*Works!
Demo";
rss1.ChannelDes cription = "How to create dynamic RSS in your web
app";
rss1.ChannelLin k =
"http://www.nsoftware.c om/support/kb/tutorials.aspx" ;
rss1.ImageTitle =
"IP*Works!" ;
rss1.ImageLink = "http://www.nsoftware.c om";
rss1.ImageURL =
"http://www.nsoftware.c om/subscriptions/img/boxshot.gif";
rss1.AddItem("t itle
1", "descriptio n 1", "http://mylink/1");
rss1.AddItem("t itle 2", "descriptio n
2", "http://mylink/2");
rss1.AddItem("t itle 3", "descriptio n 3",
"http://mylink/3");
Response.Clear( );
Response.Conten tType =

"text/xml";
Response.Write( rss1.RSSData);
Response.End();
}

Regards,
Lance R.
/n software
http://www.nsoftware.com/

-


Nov 19 '05 #5
http://www.nsoftware.com/ipworks/features.aspx

"Shapper" <mdmoura*NOSPAM *@gmail.*DELETE 2SEND*com> wrote in message
news:ua******** ******@TK2MSFTN GP09.phx.gbl...
Hello,

Does anyone know a good RSS component for ASP.NET?

Thanks,
Miguel

Nov 19 '05 #6
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:55******** *********@torna do.rdc-kc.rr.com...
Your asking developers to pay $399 to purchase a 'solution' that includes
an embedded write-only crippled implementation of RSS 2.0 that doesn't
support the entire specification in its entirety?


I'm not asking anyone to pay anything. Someone is looking for a good RSS
control, I simply brought one to his attention. The pricepoint is certainly
relevant - so thanks for pointing out that for $399 you get over 40
components including the RSS component. The RSS component can be used for
both consuming and generating RSS, and supports all current versions of the
RSS specifications.

Clinton, if you do not understand how to consume RSS with this component and
are interested in finding out how, send me an email and I'll be happy to
help you. Its quite easy - you just call its GetFeed method and all of the
items are automatically parsed out for you into convenient property arrays.

Lance
Nov 19 '05 #7
Hello Lance,

I know IPWorks components are really good.
The problem is I only need the RSS one so having to buy an entire
toolbox just for one component it's a little bit to much.

Maybe in the future I will need the other components and I might
considering it. Maybe you should create toolboxes with less components.

Cheers,
Miguel

"Lance R." <la****@removem e.nsoftware.com > wrote in message
news:la****@rem oveme.nsoftware .com:
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:55******** *********@torna do.rdc-kc.rr.com...
Your asking developers to pay $399 to purchase a 'solution' that includes
an embedded write-only crippled implementation of RSS 2.0 that doesn't
support the entire specification in its entirety?

I'm not asking anyone to pay anything. Someone is looking for a good RSS
control, I simply brought one to his attention. The pricepoint is certainly
relevant - so thanks for pointing out that for $399 you get over 40
components including the RSS component. The RSS component can be used for
both consuming and generating RSS, and supports all current versions of the
RSS specifications.

Clinton, if you do not understand how to consume RSS with this component and
are interested in finding out how, send me an email and I'll be happy to
help you. Its quite easy - you just call its GetFeed method and all of the
items are automatically parsed out for you into convenient property arrays.

Lance


Nov 19 '05 #8

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

Similar topics

0
2583
by: Matan Holtzer | last post by:
Hello I'm looking for a replacement for the imgedit.ocx control. Up untill now, I was using this control in my application for displaying and annotating scanned tiff images (both single and multi-page). Ever since I've found out I cannot use this control in Windows 2000 and XP I've been looking for a 3rd party control to replace the one I was using. Can anyone here recommend me on an activex control that will allow me to display and...
3
6819
by: MikeY | last post by:
Hi Everyone, I am working in C#, windows forms.My question is this. All my button dynamic controls properties are present and accounted for except for the"FlatStyle" properties. I can't seem to figure out, if there is a way of using polymorphic way (if that is a word) of doing this particular property. A sample of my code is as follows: DynamicControls.ButtonControl(this,btnSearchByName, new Point(5, 75), new Size(95, 20),...
1
2576
by: Johann Blake | last post by:
I am looking for a good solution on how to implement data access in an application so that there is a clean separation between the data access layer, the business layer and the GUI layer. I am looking for a robust solution for a major application. Almost every developer seems to come up with a completely different solution. While many of them are not bad, I really want a very good one. My database is SQL Server 2000 and I am using Visual...
4
1305
by: Daniel Walzenbach | last post by:
Hi, I'm looking for a nice tab control in ASP.NET. I have seen the tab control MS user in their CRM and it was really impressive. Does anybody know where to find a good one? Something like the Internet Explorer WebControls but probably "still supported". Thank you for your help Daniel
1
1254
by: Jéjé | last post by:
Hi, I'm looking for a control to open window to allow the user to search and select an item. I have one in place, but there is a lack of options and stability. So I'm looking for a control on the web. The user see a button which open the window, and after the user has selected an item (in a list), I display the selected value in a textbox (or another
6
1306
by: Ray Cassick \(Home\) | last post by:
I am looking for a control that displays simple HTML text (just basic tags, not active content needed). I know I can use the IE ActiveX control but really want to stay away from the headaches if I can. There has to be some type of lite control out there that can handle this. I am hacked off that the RTF control will not read HTML. RTF tags are WAY too much work for what I need to do. --
7
1752
by: Bruce HS | last post by:
I'd like to call my ancestor Validation Function every time any control on a Win Form generates a Validating or Validated event. I'm using VB. I've extended Textbox, for instance, to have its events do this for me, but my extended textbox doesn't get created by those wonderful form setup wizards. So, 1) Is there a way I can pick up these events without having to code for each control and without using custom extended controls, OR
2
1554
by: Matt | last post by:
Hi, I am looking for a control that will allow me to host other controls inside it but have a method of showing and hiding. I have seen plenty of horizontal controls for doing this but I am looking for a vertical one. I would like to host my navigation tree in it on the left side of my web site and allow the user to hide and show it as needed to give me more visible real estate. I visualize something like when it is closed it has a small tab...
1
3014
by: Jeff Williams | last post by:
I am looking for a Currency control/Number Control which has the following behavior. If you are entering a number such as 123.67 the control behaves like this. 1. The field (control) is right justified. 2. when entering the field the value is highlited and when typing starts the field clears 3. As you start to enter the numbers they fill from the . (decimal) to the left of it.
3
1574
by: itisthiyagu | last post by:
Hi, Im looking for ListBox which works like Windows-XP's Add/Remove programs listbox. where can i get this kind of listbox ? I want to show a text in ListItem & it should expand with its description when user selects a particular item. Also i want to add a button into to ListItem. it is same like Add/Remove programs ListBox. anybody help me. -Thiyagu
0
8911
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
8819
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
8597
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,...
0
8667
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5692
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
4222
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...
0
4402
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2808
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1806
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.