Wrox Programmer Forums
|
BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0
This is the forum to discuss the Wrox book ASP.NET 2.0 Website Programming: Problem - Design - Solution by Marco Bellinaso; ISBN: 9780764584640
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 1st, 2006, 11:06 PM
Authorized User
 
Join Date: Aug 2006
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks, your program worked very smoothly, and it appears data has been copied. I'll go through it now and check for missing records and identity values.

 
Old November 1st, 2006, 11:43 PM
Authorized User
 
Join Date: Aug 2006
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I haven't looked at all tables, but it at least appears the identity values were not corrupted. Very nice, thanks for the excellent program.

I still don't have any Rss data on the home page, after adding a webpart in shared mode, just the label "Latest Articles". At least I can move on to explore other possibilities, whatever they may be.

 
Old November 2nd, 2006, 07:10 AM
Authorized User
 
Join Date: Aug 2006
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Looking at your site http://www.ericengler.com, I don't see any Rss on the home page. Did you have that working at one time?

 
Old November 2nd, 2006, 07:16 AM
Authorized User
 
Join Date: Aug 2006
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I'm running IE 6.0.2900.2180 Service Pack 2. I haven't upgraded to 7.0, since I figure most others haven't, but I wonder if the Rss would show up if I upgraded to 7.0, since it has some Rss feedreader features.

 
Old November 7th, 2006, 01:45 PM
Authorized User
 
Join Date: Aug 2006
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
Default

An exception is thrown in Controls/RssReader.ascx.cs in DoBinding() which I have traced to the statement:

feed.Load(GetFullUrl(this.RssUrl));

GetFullUrl is equal to "http://www.jgkarate.ewdtestsite.com/GetArticlesRss.aspx"

The exception displayed at the top of Default.aspx:
"The remote name could not be resolved: 'www.jgkarate.ewdtestsite.com'"

I changed the catch block as follows:
catch (Exception ex)
         {
             Response.Write(ex.Message + "<br />");
             while (ex.InnerException != null)
             {
                 Response.Write(ex.InnerException.Message + "<br />");
                 ex = ex.InnerException;
             }
             //this.Visible = false;
         }

I haven't figured out what is causing this...







Similar Threads
Thread Thread Starter Forum Replies Last Post
Re-printing information on a new page. Tre XSLT 3 May 21st, 2007 04:27 PM
Extend CMS: How to create rss in Default page? thuyvncr BOOK: ASP.NET 2.0 Instant Results ISBN: 978-0-471-74951-6 8 April 26th, 2007 06:16 AM
redirect to page other than default page sarah lee ASP.NET 1.0 and 1.1 Basics 3 December 15th, 2006 05:45 PM
Blank Default Page ghrebek BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 8 December 5th, 2006 08:09 PM
Transformation htm of page in rss Serjio RSS and Atom 0 August 6th, 2006 02:14 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.