<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>p2p.wrox.com Forums</title>
		<link>http://p2p.wrox.com</link>
		<description>p2p.wrox.com has coding and programming answers for programmers in ASP.NET, C#, Visual Basic, Java, PHP, MySQL, Ruby, JavaScript, HTML, XML, SharePoint, .NET, SQL, CSS, DotNetNuke</description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 23:35:57 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://p2p.wrox.com/images/misc/rss.jpg</url>
			<title>p2p.wrox.com Forums</title>
			<link>http://p2p.wrox.com</link>
		</image>
		<item>
			<title>Web app works in IE6 browser but errors using IE8 browser</title>
			<link>http://p2p.wrox.com/book-beginning-vb-net-databases/77118-web-app-works-ie6-browser-but-errors-using-ie8-browser.html</link>
			<pubDate>Sat, 21 Nov 2009 18:25:16 GMT</pubDate>
			<description>I completed the application and published to a server using IE6 and my development machine used IE6. I upgraded my development machine to IE8 and now...</description>
			<content:encoded><![CDATA[<div>I completed the application and published to a server using IE6 and my development machine used IE6. I upgraded my development machine to IE8 and now I get a error when I redirect my Reports page to my timesheetreport page using a javascript function to open the web page. I can not read the error stack in memory or the error messages. But the app worked great on 2 machines using IE6 but the one machine i upgraded to IE8 gets an error can you please help.[:confused:]</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-beginning-vb-net-databases-147/">BOOK: Beginning VB.NET Databases</category>
			<dc:creator>brucechess</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-beginning-vb-net-databases/77118-web-app-works-ie6-browser-but-errors-using-ie8-browser.html</guid>
		</item>
		<item>
			<title><![CDATA[Name 'ddlColumnName']]></title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/77117-name-ddlcolumnname.html</link>
			<pubDate>Sat, 21 Nov 2009 16:02:54 GMT</pubDate>
			<description><![CDATA[Error 1 Name 'ddlColumnName' is not declared.


If I declar ddlColumnName 

Dim ddlColumnName As New ddlColumnName

it will ask me for type

Please...]]></description>
			<content:encoded><![CDATA[<div>Error 1 Name 'ddlColumnName' is not declared.<br />
<br />
<br />
If I declar ddlColumnName <br />
<br />
Dim ddlColumnName As New ddlColumnName<br />
<br />
it will ask me for type<br />
<br />
Please can i have some help with this</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>headworth</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/77117-name-ddlcolumnname.html</guid>
		</item>
		<item>
			<title>deleting items from physical folder</title>
			<link>http://p2p.wrox.com/book-asp-net-2-0-instant-results-isbn-978-0-471-74951-6/77116-deleting-items-physical-folder.html</link>
			<pubDate>Sat, 21 Nov 2009 15:56:45 GMT</pubDate>
			<description><![CDATA[Hello sir,
The almost last thing I am struggling with is that I am trying to delete the contents from physical folder. When a "delete" query is fired...]]></description>
			<content:encoded><![CDATA[<div>Hello sir,<br />
The almost last thing I am struggling with is that I am trying to delete the contents from physical folder. When a &quot;delete&quot; query is fired from any of the data bound controls, it deletes the record from database but leaves out the stuff in physical folder as trash which will never be used again.<br />
I have idea about deleting/renaming files/folders, but I am having problem in getting the exact Id of the file while deleting. I am using FormView. How I get the exact Id of item.<br />
My page is <b>AddDeleteSong.aspx</b> which contains the FormView. How the id of item can be acquired?<br />
I am using following code snippet.<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Private con As New SqlConnection(&quot;server=.\SqlExpress;AttachDbFileName=|DataDirectory|Gallery.mdf;Integrated Security=True;User Instance=True&quot;)<br />
Private fileNamePath As String</code><hr />
</div>Then files are being uploaded properly(except files are duplicated in the physical folder)<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Protected Sub FormView1_ItemInserting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.FormViewInsertEventArgs) Handles FormView1.ItemInserting<br />
&nbsp; &nbsp; &nbsp; &nbsp; Try<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim theFileUpload As FileUpload = CType( _<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FormView1.FindControl(&quot;FileUpload1&quot;), FileUpload)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If theFileUpload.HasFile Then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fileNamePath = &quot;~/Music/&quot; &amp; Guid.NewGuid.ToString()<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim theExtension As String = Path.GetExtension(theFileUpload.FileName)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fileNamePath &amp;= theExtension<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; theFileUpload.SaveAs(Server.MapPath(fileNamePath))<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; e.Values(&quot;SongPath&quot;) = fileNamePath<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; e.Values(&quot;SongExtn&quot;) = theExtension<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; &nbsp; &nbsp; Catch ex As Exception<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Throw<br />
&nbsp; &nbsp; &nbsp; &nbsp; End Try<br />
&nbsp; &nbsp; End Sub</code><hr />
</div>deleting file is as follows.<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Protected Sub FormView1_ItemDeleting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.FormViewDeleteEventArgs) Handles FormView1.ItemDeleting<br />
&nbsp; &nbsp; &nbsp; &nbsp; con.Open()<br />
&nbsp; &nbsp; &nbsp; &nbsp; Dim musicId As Integer = Convert.ToInt32(Request.QueryString.Get(&quot;Id&quot;))<br />
&nbsp; &nbsp; &nbsp; &nbsp; Dim filePath As String = &quot;select SongPath from Music where Id = &quot; &amp; musicId<br />
&nbsp; &nbsp; &nbsp; &nbsp; Dim cmd As New SqlCommand(filePath, con)<br />
&nbsp; &nbsp; &nbsp; &nbsp; cmd.ExecuteNonQuery()<br />
&nbsp; &nbsp; &nbsp; &nbsp; File.Delete(filePath)<br />
&nbsp; &nbsp; &nbsp; &nbsp; con.Close()<br />
&nbsp; &nbsp; End Sub</code><hr />
</div><b>musicId</b> can be acquired by query string but where I use this query string and how.<br />
Is there any thing wrong with the deleting code. Can you please guide me regarding this, where I should modify the <b>FormView1_ItemDeleting</b></div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-asp-net-2-0-instant-results-isbn-978-0-471-74951-6-252/">BOOK: ASP.NET 2.0 Instant Results ISBN: 978-0-471-74951-6</category>
			<dc:creator>sophia</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-asp-net-2-0-instant-results-isbn-978-0-471-74951-6/77116-deleting-items-physical-folder.html</guid>
		</item>
		<item>
			<title>Chapter 6: Coherence as a JPA second level cache</title>
			<link>http://p2p.wrox.com/book-professional-oracle-weblogic-server/77115-chapter-6-coherence-jpa-second-level-cache.html</link>
			<pubDate>Sat, 21 Nov 2009 12:44:47 GMT</pubDate>
			<description>Towards the end of Chapter 6 we cover how to integrate Coherence with Kodo to act as a second level cache for JPA entities.

Readers who are...</description>
			<content:encoded><![CDATA[<div>Towards the end of Chapter 6 we cover how to integrate Coherence with Kodo to act as a second level cache for JPA entities.<br />
<br />
Readers who are interested in this capability should also check out <a href="http://www.oracle.com/technology/products/ias/toplink/tl_grid.html" target="_blank">TopLink Grid</a>. As well as enabling Coherence to act as a second level cache, TopLink Grid optionally allows JPQL queries to be executed directly against the distributed data grid.<br />
<br />
I recently enabled BigRez to use TopLink Grid. This was straightforward. I followed the path documented in Chapter 7 to switch the JPA provider to TopLink; followed the TopLink Grid guide to configure TopLink and Coherence, and annotate the entities I wanted to cache; packaged coherence.jar, the EclipseLink and TopLink jar files in APP-INF/lib; and added a filtering class loader to ensure these versions of the libraries are used.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-professional-oracle-weblogic-server-530/">BOOK: Professional Oracle WebLogic Server</category>
			<dc:creator>Philip Aston</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-professional-oracle-weblogic-server/77115-chapter-6-coherence-jpa-second-level-cache.html</guid>
		</item>
		<item>
			<title>Read data from port with ASP.NET</title>
			<link>http://p2p.wrox.com/asp-net-2-0-professional/77114-read-data-port-asp-net.html</link>
			<pubDate>Sat, 21 Nov 2009 10:22:53 GMT</pubDate>
			<description>HI, can anyone pls tell me how to read data from port with ASP.NET. Any sample code or link will be helpful
 
Thanks</description>
			<content:encoded><![CDATA[<div>HI, can anyone pls tell me how to read data from port with ASP.NET. Any sample code or link will be helpful<br />
 <br />
Thanks</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-2-0-professional-215/">ASP.NET 2.0 Professional</category>
			<dc:creator>nitinp</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-2-0-professional/77114-read-data-port-asp-net.html</guid>
		</item>
		<item>
			<title>Mail functionality from localhost to server</title>
			<link>http://p2p.wrox.com/beginning-php/77113-mail-functionality-localhost-server.html</link>
			<pubDate>Sat, 21 Nov 2009 09:30:39 GMT</pubDate>
			<description>Hi 

I am facing problem of mail functionality.

When i tested mail functionality in my localhost it works fine but when i tried it on server it...</description>
			<content:encoded><![CDATA[<div>Hi <br />
<br />
I am facing problem of mail functionality.<br />
<br />
When i tested mail functionality in my localhost it works fine but when i tried it on server it didn't work and also no error it displays.<br />
<br />
So please give me solution if any changes required to setting mail functionality on server from local.<br />
<br />
Thanks in advance<br />
<br />
Anish Panchal<br />
<a href="http://www.tatvasoft.com" target="_blank">Software Outsourcing India</a><br />
<a href="http://www.sparsh-technologies.com" target="_blank">Web Development Company India</a></div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/beginning-php-95/">Beginning PHP</category>
			<dc:creator>ctatvasoft</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/beginning-php/77113-mail-functionality-localhost-server.html</guid>
		</item>
		<item>
			<title>Saxon-PE 9.2.0.2: Content is not allowed in prolog.</title>
			<link>http://p2p.wrox.com/xslt/77112-saxon-pe-9-2-0-2-content-not-allowed-prolog.html</link>
			<pubDate>Sat, 21 Nov 2009 03:34:33 GMT</pubDate>
			<description><![CDATA[I am trying to run the XSLT below against a comma delimited log file but get a "Content is not allowed in prolog from Saxon-PE 9.2.0.2". I am running...]]></description>
			<content:encoded><![CDATA[<div>I am trying to run the XSLT below against a comma delimited log file but get a &quot;Content is not allowed in prolog from Saxon-PE 9.2.0.2&quot;. I am running this from inside oXygen. <br />
<br />
Any insights greatly appreciated,<br />
<br />
Chirstopher<br />
<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br />
&lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;<br />
&nbsp; &nbsp; xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot; exclude-result-prefixes=&quot;xs&quot; version=&quot;2.0&quot;&gt;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &lt;xsl:param name=&quot;input-uri&quot; as=&quot;xs:string&quot;/&gt;<br />
&nbsp; &nbsp; &lt;xsl:output indent=&quot;yes&quot;/&gt;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &lt;xsl:template name=&quot;main&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:variable name=&quot;in&quot; select=&quot;unparsed-text($input-uri, 'iso-8859-1')&quot;/&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Log&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:analyze-string select=&quot;$in&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; regex=&quot;^([^,]+,)([^,]+,)(&amp;quot;(([0-9]{4})|([A-Z][0-9])|())&amp;quot;,)(&amp;quot;(([a-zA-Z]{3}[0-9])|(SERVER)|(EVS_SRV))&amp;quot;,)(&amp;quot;[0-9_a-zA-Z]+&amp;quot;,)(&amp;quot;[^&amp;quot;]+&amp;quot;)&quot; flags=&quot;m&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:matching-substring&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;LogEntry&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;time&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of select=&quot;regex-group(1)&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/time&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;DuplicateTime&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of select=&quot;regex-group(2)&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/DuplicateTime&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Employee&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of select=&quot;regex-group(4)&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/Employee&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Device&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of select=&quot;regex-group(5)&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/Device&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Action&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of select=&quot;regex-group(7)&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/Action&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Description&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of select=&quot;regex-group(9)&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/Description&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/LogEntry&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:matching-substring&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:analyze-string&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Log&gt;<br />
&nbsp; &nbsp; &lt;/xsl:template&gt;<br />
<br />
&lt;/xsl:stylesheet&gt;</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/xslt-86/">XSLT</category>
			<dc:creator>ITEpicurean</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/xslt/77112-saxon-pe-9-2-0-2-content-not-allowed-prolog.html</guid>
		</item>
		<item>
			<title>Using C# 2008 Express Edition</title>
			<link>http://p2p.wrox.com/book-beginning-c-3-0-introduction-object-oriented-programming-isbn-978-0-470-26129-3/77111-using-c-2008-express-edition.html</link>
			<pubDate>Sat, 21 Nov 2009 00:57:46 GMT</pubDate>
			<description>Greetings. My first post. By way of introduction, I was a career mainframe programmer (23 years) and find this new technology more than a little...</description>
			<content:encoded><![CDATA[<div>Greetings. My first post. By way of introduction, I was a career mainframe programmer (23 years) and find this new technology more than a little baffling. I'm on Chapter 10 of the book, and at my advanced age, I find myself struggling to capture the essence of C# &amp; OOP as it has absolutely no similarities to COBOL or CICS, or anything else I've done all these years. None whatsoever. I'm truly a duck out of water. To start I have only one quick question: When I press f5 to run a program and get errors, the error list gives me the line numbers which are in error, but the &quot;programName.cs&quot; display has no line numbers. Is there a way to turn on the display of the line numbers in C# 2008 Express Edition? I've searched the menus and have come up empty. I'm sure this will be the first of many questions. Thanks a lot for the help, I'm going to need it.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-beginning-c-3-0-introduction-object-oriented-programming-isbn-978-0-470-26129-3-409/">BOOK: Beginning C# 3.0 : An Introduction to Object Oriented Programming ISBN: 978-0-470-26129-3</category>
			<dc:creator>bobhsnhp2wfkk4tbck</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-beginning-c-3-0-introduction-object-oriented-programming-isbn-978-0-470-26129-3/77111-using-c-2008-express-edition.html</guid>
		</item>
		<item>
			<title>Changing Volume Controls</title>
			<link>http://p2p.wrox.com/pro-visual-basic-2005/77110-changing-volume-controls.html</link>
			<pubDate>Fri, 20 Nov 2009 22:22:20 GMT</pubDate>
			<description>I am making a program that I would like to have increase the volume as time goes by. How would I code this so that I can manipulate the main volume...</description>
			<content:encoded><![CDATA[<div>I am making a program that I would like to have increase the volume as time goes by. How would I code this so that I can manipulate the main volume control from my program? I've checked around and can't find anything that would work. Some use somthing called wmpmm.dll and others use API. I have no clue how to use either one of those methods. If anyone can help it would be greatly appreciated.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/pro-visual-basic-2005-217/">Pro Visual Basic 2005</category>
			<dc:creator>VagabondOfHell</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/pro-visual-basic-2005/77110-changing-volume-controls.html</guid>
		</item>
		<item>
			<title>problem with Formal Public Indentifiers</title>
			<link>http://p2p.wrox.com/book-beginning-xml-4th-ed-isbn-978-0-470-11487-2/77109-problem-formal-public-indentifiers.html</link>
			<pubDate>Fri, 20 Nov 2009 18:02:14 GMT</pubDate>
			<description><![CDATA[The FPI in charter four is not accessible.

<!DOCTYPE name PUBLIC "-//Beginning XML//DTD Name Example//EN" "name4.dtd">

Is this a valid file?]]></description>
			<content:encoded><![CDATA[<div>The FPI in charter four is not accessible.<br />
<br />
&lt;!DOCTYPE name PUBLIC &quot;-//Beginning XML//DTD Name Example//EN&quot; &quot;name4.dtd&quot;&gt;<br />
<br />
Is this a valid file?</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-beginning-xml-4th-ed-isbn-978-0-470-11487-2-332/">BOOK: Beginning XML, 4th Ed ISBN: 978-0-470-11487-2</category>
			<dc:creator>smadden</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-beginning-xml-4th-ed-isbn-978-0-470-11487-2/77109-problem-formal-public-indentifiers.html</guid>
		</item>
		<item>
			<title>Error CS0508 - Chapter 6</title>
			<link>http://p2p.wrox.com/book-asp-net-3-5-enterprise-application-development-visual-studio-2008-problem-design-solutio/77108-error-cs0508-chapter-6-a.html</link>
			<pubDate>Fri, 20 Nov 2009 16:23:05 GMT</pubDate>
			<description>Hi,

I have made it through to Chapter 6 a little scarred but still plodding on. I get the above error when compiling and it relates to...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I have made it through to Chapter 6 a little scarred but still plodding on. I get the above error when compiling and it relates to ErrorPage.aspx.cs and states that in line 31 'ErrorPage.CapabilityNames()': return type must be 'string[]' to match overridden member 'BasePage.CapabilityNames()'<br />
<br />
If I remove the [] after string on line 51 of BasePage.cs, public abstract string[] CapabilityNames();<br />
<br />
I get that it cannot convert type 'char' to 'string'<br />
<br />
All the other projects build ok it;s just the UI I am having issues with at the moment.<br />
<br />
Help greatly received...I must finsih this book/framework soon.<br />
<br />
Gilbo</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-asp-net-3-5-enterprise-application-development-visual-studio-2008-problem-design-solutio-477/">BOOK: ASP.NET 3.5 Enterprise Application Development with Visual Studio 2008: Problem Design Solutio</category>
			<dc:creator>Gilbo79</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-asp-net-3-5-enterprise-application-development-visual-studio-2008-problem-design-solutio/77108-error-cs0508-chapter-6-a.html</guid>
		</item>
		<item>
			<title>The use of scripting languages with ASP.NET 2.0</title>
			<link>http://p2p.wrox.com/asp-net-2-0-basics/77107-use-scripting-languages-asp-net-2-0-a.html</link>
			<pubDate>Fri, 20 Nov 2009 15:59:42 GMT</pubDate>
			<description>I have a good deal of programming experience using a number of development tools, Visual Studio 2003 being the most recent.  Many of my projects have...</description>
			<content:encoded><![CDATA[<div>I have a good deal of programming experience using a number of development tools, Visual Studio 2003 being the most recent.  Many of my projects have been creating web applications, using <acronym title="vBulletin">VB</acronym>.NET and C#.  I am now using Visual Studio 2005 and when I become accustom to its features I will go on to Visual Studio 2008.<br />
<br />
One of my programs is very complex.  It has 390 forms and is used by manufacturers and suppliers.  Much of it depends upon vbscript and javascript.  The corporate browser standard was IE, thus the use of vbscript.  My preference is java script.<br />
<br />
Now if I may ask a serious question.  Can vbscript or java script be used with ASP.NET 2.0?  Some articles I have found say yes, others no, and one has an example of how to do it.  However, the example does not work.  I cannot find a book on the subject.  If someone out there can enlighten me on this subject and point me in the right direction I would appreciate it.  <br />
<br />
Can scripting languages be used with ASP.NET 2.0 and if so could I have a brief example?<br />
<br />
Thank you<br />
<br />
Tom</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-2-0-basics-136/">ASP.NET 2.0 Basics</category>
			<dc:creator>Thomas 1942</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-2-0-basics/77107-use-scripting-languages-asp-net-2-0-a.html</guid>
		</item>
		<item>
			<title>Form based authentication</title>
			<link>http://p2p.wrox.com/book-asp-net-3-5-enterprise-application-development-visual-studio-2008-problem-design-solutio/77106-form-based-authentication.html</link>
			<pubDate>Fri, 20 Nov 2009 15:38:44 GMT</pubDate>
			<description>Hello, I am wondering how hard it is to use form based authentication instead of windows authentication. I read a post here on that but couldnt get...</description>
			<content:encoded><![CDATA[<div>Hello, I am wondering how hard it is to use form based authentication instead of windows authentication. I read a post here on that but couldnt get an answer, I dont want mixed mode.<br />
I tried following instructions for a form based authentication project, but i always get the message:<br />
Unable to start debugging on the web server. Debugging failed because integrated windows authentication is not enabled....<br />
<br />
I would assume that the only thing I need to change to get rid of this message and proceed with the rest of necessary changes in the project was to change the web.config authentication mode to Forms...<br />
<br />
What else needs to be changed to allow me to continue debugging to proceed with more changes in the project?<br />
<br />
Thanks to the author for this excellent book, it seems like it will be very usefull especially the code and the code generator...</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-asp-net-3-5-enterprise-application-development-visual-studio-2008-problem-design-solutio-477/">BOOK: ASP.NET 3.5 Enterprise Application Development with Visual Studio 2008: Problem Design Solutio</category>
			<dc:creator>efilippou</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-asp-net-3-5-enterprise-application-development-visual-studio-2008-problem-design-solutio/77106-form-based-authentication.html</guid>
		</item>
		<item>
			<title>Personal.xlsb</title>
			<link>http://p2p.wrox.com/excel-vba/77105-personal-xlsb.html</link>
			<pubDate>Fri, 20 Nov 2009 15:09:39 GMT</pubDate>
			<description><![CDATA[I'm trying to record a macro in my Personal Macro Workbook so it is available on a global level, but whenever I try to save, it states "Personal...]]></description>
			<content:encoded><![CDATA[<div>I'm trying to record a macro in my Personal Macro Workbook so it is available on a global level, but whenever I try to save, it states &quot;Personal Macro Workbook in the startup folder must stay open for recording.  Unable to record.&quot;  Any ideas on how I can open it?  Thanks.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/excel-vba-79/">Excel VBA</category>
			<dc:creator>sirish</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/excel-vba/77105-personal-xlsb.html</guid>
		</item>
		<item>
			<title>java.lang.IllegalAccessException: Class org.apache.struts.util.RequestUtils can not a</title>
			<link>http://p2p.wrox.com/struts/77104-java-lang-illegalaccessexception-class-org-apache-struts-util-requestutils-can-not.html</link>
			<pubDate>Fri, 20 Nov 2009 14:37:26 GMT</pubDate>
			<description>Dear All,

     I am new to struts. I have worked out a simple struts1.1 application. When I try to access the index.jsp page, i got the following...</description>
			<content:encoded><![CDATA[<div>Dear All,<br />
<br />
     I am new to struts. I have worked out a simple struts1.1 application. When I try to access the index.jsp page, i got the following error.<br />
<br />
<font color="SeaGreen">HTTP Status 500 -<br />
type Exception report<br />
message<br />
<br />
description The server encountered an internal error () that prevented it from fulfilling this request. <br />
<br />
[:)] of class wiley.LookupForm with modifiers &quot;&quot;.</font><br />
<br />
Could anyone please guide me how to solve the problem.<br />
<br />
Thanks in advance.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/struts-211/">Struts</category>
			<dc:creator>prathapselvam</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/struts/77104-java-lang-illegalaccessexception-class-org-apache-struts-util-requestutils-can-not.html</guid>
		</item>
	</channel>
</rss>
