<?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 - ASP.NET 3.5 Basics</title>
		<link>http://p2p.wrox.com</link>
		<description>If you are new to ASP or ASP.NET programming with version 3.5, this is the forum to begin asking questions. Please also see the Visual Web Developer 2008 forum.</description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 04:32:51 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://p2p.wrox.com/images/misc/rss.jpg</url>
			<title>p2p.wrox.com Forums - ASP.NET 3.5 Basics</title>
			<link>http://p2p.wrox.com</link>
		</image>
		<item>
			<title>webservice to list all country currency value</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/77072-webservice-list-all-country-currency-value.html</link>
			<pubDate>Wed, 18 Nov 2009 09:58:33 GMT</pubDate>
			<description>hello..
i want list all country currency value with the web service help n these currency value should be update automatically......
plz reply</description>
			<content:encoded><![CDATA[<div>hello..<br />
i want list all country currency value with the web service help n these currency value should be update automatically......<br />
plz reply</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>vikki227</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/77072-webservice-list-all-country-currency-value.html</guid>
		</item>
		<item>
			<title>DataList is Showing Up in Source Code, But Not On Web Page?</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/77069-datalist-showing-up-source-code-but-not-web-page.html</link>
			<pubDate>Tue, 17 Nov 2009 20:47:53 GMT</pubDate>
			<description><![CDATA[For some reason, the data for my datalist is showing up in the source code of the page without a problem, but it's not being displayed on the...]]></description>
			<content:encoded><![CDATA[<div>For some reason, the data for my datalist is showing up in the source code of the page without a problem, but it's not being displayed on the webpage. That page is just blank. Why could this happen?</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>kwilliams</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/77069-datalist-showing-up-source-code-but-not-web-page.html</guid>
		</item>
		<item>
			<title>moving items from one listbox to another listbox</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/77023-moving-items-one-listbox-another-listbox.html</link>
			<pubDate>Fri, 13 Nov 2009 20:00:53 GMT</pubDate>
			<description>I have two listbox control on my C# windows application. 
I need to move items from list1 to list2 and list1 is bound to database. (data in list1 is...</description>
			<content:encoded><![CDATA[<div>I have two listbox control on my C# windows application. <br />
I need to move items from list1 to list2 and list1 is bound to database. (data in list1 is coming from database). <br />
 <br />
When I am trying to use following condition, <br />
 <br />
list2.Items.Add(list1.SelectedValue); <br />
list1.Items.Remove(list1.SelectedItem); <br />
 <br />
It is giving me an error, &quot;Items collection cannot be modified when the DataSource property is set.&quot; Can anyone please help me?</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>Nishapd</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/77023-moving-items-one-listbox-another-listbox.html</guid>
		</item>
		<item>
			<title>using rotator without page refresh</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/77020-using-rotator-without-page-refresh.html</link>
			<pubDate>Fri, 13 Nov 2009 16:10:18 GMT</pubDate>
			<description>Hello everyone,
I want to know about how to show ads without refreshment of page. I have used the adrotator and it is working fine.For this I use xml...</description>
			<content:encoded><![CDATA[<div>Hello everyone,<br />
I want to know about how to show ads without refreshment of page. I have used the adrotator and it is working fine.For this I use xml file. But it changes the images after refreshment of page. But is there any way to change images without refreshing images however still using adrotator.<br />
<br />
Thank you.....</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>sophia</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/77020-using-rotator-without-page-refresh.html</guid>
		</item>
		<item>
			<title>Access login control fields</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/76970-access-login-control-fields.html</link>
			<pubDate>Mon, 09 Nov 2009 20:35:21 GMT</pubDate>
			<description>Hello, I want to check on the login screen if a user has been locked out. I cant use the LoginName to check as the user is not logged in. So I want...</description>
			<content:encoded><![CDATA[<div>Hello, I want to check on the login screen if a user has been locked out. I cant use the LoginName to check as the user is not logged in. So I want to access the user name text box.<br />
<br />
In the login control I use the layout tempate to hold a textbox with ID = UserName.<br />
<br />
In Page_Load, I'm using this:<br />
<br />
MembershipUser user = Membership.GetUser(UserName.Text);<br />
<br />
Then I can check if user.IsLockedOut.ToString() is True or False.<br />
<br />
But the C# code-behind will not recognise the UserName text box.<br />
<br />
What am I doing wrong?<br />
<br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>westannex</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/76970-access-login-control-fields.html</guid>
		</item>
		<item>
			<title>How to redirect a user after timeout in asp.net mvc?</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/76958-how-redirect-user-after-timeout-asp-net-mvc.html</link>
			<pubDate>Mon, 09 Nov 2009 02:29:54 GMT</pubDate>
			<description>Hi
I have site that users lots of ajax(jquery). Now if the user times out for whatever reason(walked about for 30mins or something). On there next...</description>
			<content:encoded><![CDATA[<div>Hi<br />
I have site that users lots of ajax(jquery). Now if the user times out for whatever reason(walked about for 30mins or something). On there next action I want them to be returned to the login page.<br />
<br />
<br />
I setup everything in the webconfig(returnUrl and timeout) and if they try to go to a page they have no premission to go to they get sent to the login page.<br />
<br />
<br />
However I have the authorize tags on the methods in my controllers that are used for ajax requests. So if a user timesout they are no longer authenticated but they might be on that needed authentication since they logged in and walked away.<br />
<br />
<br />
Now they could go and try to save something at this point that would do an ajax request. The authorize tag will stop them from doing this since they will fail authorization and the return url will kick in.<br />
<br />
<br />
However eventhough the return url seems to be sent back to them they are not redirected to the signin page. So I am guessing since all this stuff is ajax thats why it is not working properly. So is there away I can fix this?</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>chobo2</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/76958-how-redirect-user-after-timeout-asp-net-mvc.html</guid>
		</item>
		<item>
			<title>Keeping a menu style when Dynamic menus hovered or selected</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/76952-keeping-menu-style-when-dynamic-menus-hovered-selected.html</link>
			<pubDate>Sun, 08 Nov 2009 16:21:21 GMT</pubDate>
			<description>Hi,
I have a set of menu styles defined which enable me to show menu items appearing over a bar and moving under a bat and changing color when...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
I have a set of menu styles defined which enable me to show menu items appearing over a bar and moving under a bat and changing color when hovered or selected.<br />
<br />
However, when I hover or select a sub dynamic menu itm the main item defaults to the StaticmenuItemStyle.<br />
<br />
Is there a sufix I can add to a style (like the :visited) which will keep the StaticSelected style and/or statichoverstyle when I am hovering over or have selected a dynamic item below it?<br />
<br />
My styles:<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">/* main pages menu Styles */<br />
.menu<br />
{<br />
&nbsp; padding-left: 5px;<br />
&nbsp; /*margin-bottom: 13px;*/<br />
&nbsp; /*float: right;*/<br />
&nbsp; z-index: 1; <br />
&nbsp; height:64px;<br />
&nbsp; width: 980<br />
&nbsp;}<br />
<br />
<br />
.StaticMenuItemStyle, .StaticMenuItemStyle:visited<br />
{<br />
&nbsp; font-size: 14px;<br />
&nbsp; padding-left: 5px;<br />
&nbsp; padding-top: 2px;<br />
&nbsp; padding-right: 5px;<br />
&nbsp; padding-bottom: 30px;<br />
&nbsp; font-family: Verdana;<br />
&nbsp; color: navy;<br />
&nbsp; text-align: center;<br />
&nbsp; height: 32px;<br />
&nbsp; width: 145px;<br />
&nbsp;}<br />
.StaticSelectedStyle, .StaticSelectedStyle:visited<br />
{<br />
font-size: 14px;<br />
padding-left: 5px;<br />
padding-top: 30px;<br />
padding-right: 5px;<br />
padding-bottom: 2px;<br />
color: Gray;<br />
Font:weight: bold;<br />
font-family: Verdana;<br />
text-align: center;<br />
height:32px;<br />
width:145px;<br />
}<br />
.StaticHoverStyle, .StaticHoverStyle:visited<br />
{<br />
font-size: 14px;<br />
padding-left: 5px;<br />
padding-top: 30px;<br />
padding-right:5px;<br />
padding-bottom:2px;<br />
font-family: Verdana;<br />
color: Red;<br />
height:32px;<br />
width:145px;<br />
}<br />
.DynamicMenuItemStyle<br />
{<br />
Font-Size:14px;<br />
Padding-left:10px;<br />
color:Navy;<br />
}<br />
.DynamicHoverStyle<br />
{<br />
Color:red;<br />
}</code><hr />
</div>Thanks</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>SouthendSupporter</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/76952-keeping-menu-style-when-dynamic-menus-hovered-selected.html</guid>
		</item>
		<item>
			<title>Bigginer</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/76946-bigginer.html</link>
			<pubDate>Sun, 08 Nov 2009 06:19:47 GMT</pubDate>
			<description>Hello everyone!
                   I m absolutely new to ASP.Net please someone hlp me for the developement and also please tell me about the basics...</description>
			<content:encoded><![CDATA[<div>Hello everyone!<br />
                   I m absolutely new to ASP.Net please someone hlp me for the developement and also please tell me about the basics of ASP.Net  i would thankfull to You .....</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>shahbazali_001</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/76946-bigginer.html</guid>
		</item>
		<item>
			<title>How to Make Live Broadcast on the web page</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/76929-how-make-live-broadcast-web-page.html</link>
			<pubDate>Fri, 06 Nov 2009 13:08:15 GMT</pubDate>
			<description><![CDATA[I really want to know how i can broadcast(live) in my web page[:confused:]

what kind of control to use nd .....just how to do it.......]]></description>
			<content:encoded><![CDATA[<div>I really want to know how i can broadcast(live) in my web page[:confused:]<br />
<br />
what kind of control to use nd .....just how to do it.... <br />
<br />
really..!!!!!!![:confused:][:confused:][:confused:]</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>vivek.talkin</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/76929-how-make-live-broadcast-web-page.html</guid>
		</item>
		<item>
			<title>Video gallery</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/76876-video-gallery.html</link>
			<pubDate>Tue, 03 Nov 2009 09:45:25 GMT</pubDate>
			<description>Hi...

I want to have a video gallery in my site....
Manager should be able to upload video files....
And, anyone should be able to view the video in...</description>
			<content:encoded><![CDATA[<div>Hi...<br />
<br />
I want to have a video gallery in my site....<br />
Manager should be able to upload video files....<br />
And, anyone should be able to view the video in the site...<br />
I want the video to be displayed inside the webpage itself....<br />
Along with the options of pause, stop, play and volume control...<br />
<br />
Please can anyone guide me, about doing this...<br />
Please can anyone give me a general idea as well as important things which should be taken care of.... Also what is the best way to implement a video gallery in a site?<br />
<br />
Thanks in advance...</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>varunbwj</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/76876-video-gallery.html</guid>
		</item>
		<item>
			<title>Google Search</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/76780-google-search.html</link>
			<pubDate>Tue, 27 Oct 2009 07:17:24 GMT</pubDate>
			<description><![CDATA[Hi!

Please help me. I have design a web page for a cleint, load it to the server. Google Search don't see this ASP.NET webpage at all even after a...]]></description>
			<content:encoded><![CDATA[<div>Hi!<br />
<br />
Please help me. I have design a web page for a cleint, load it to the server. Google Search don't see this ASP.NET webpage at all even after a few weeks. I enlcose the meta tag:<br />
<br />
&lt;meta name=&quot;description&quot; content=&quot;ForrO, Leon Storm, Jowilna Storm, We are a dynamic training, development &amp; consulting company focusing on alternative methods to determine the needs and wants of clients and in so doing support the company’s progression and growth.&quot; /&gt;<br />
<br />
Please help, what do I do wrong on this page so that google search don't pick this default.aspx page up?</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>danievermaak</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/76780-google-search.html</guid>
		</item>
		<item>
			<title>How to Set DataSource in a Skin File</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/76736-how-set-datasource-skin-file.html</link>
			<pubDate>Fri, 23 Oct 2009 20:21:35 GMT</pubDate>
			<description>Hi,

If I set an ItemTemplate of a repeater in a skin file, how can I tell it where to display the relevant fields from my data source. If the...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
If I set an ItemTemplate of a repeater in a skin file, how can I tell it where to display the relevant fields from my data source. If the ItemTemplate were being defined in a content or master page, I could simply use &lt;$ # Eval (&quot;FieldName&quot;) $&gt;. But, in a skin file, data binding is not allowed?<br />
<br />
This problem also applies to the menu control. When I wanted to define a different CSS style in each of my themes, as soon as I modified the ItemTemplate, it no longer knows where it should display the nodes of my sitemap path.<br />
<br />
At the moment I'm looking into the programmatic options, but ideally I don't want to have to give all my controls an ID and set the values they display in code if I can do it in mark up.<br />
<br />
Thanks for reading<br />
<br />
Nick<br />
<br />
[:)]</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>NickTUK</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/76736-how-set-datasource-skin-file.html</guid>
		</item>
		<item>
			<title>ASP/VBscript</title>
			<link>http://p2p.wrox.com/asp-net-3-5-basics/76733-asp-vbscript.html</link>
			<pubDate>Fri, 23 Oct 2009 17:48:52 GMT</pubDate>
			<description>I am currently studying with the Open University. I am very much a beginner in programming ASP.

We have been instructed to use the Option Explicit...</description>
			<content:encoded><![CDATA[<div>I am currently studying with the Open University. I am very much a beginner in programming ASP.<br />
<br />
We have been instructed to use the Option Explicit statement to ensure that all variables are declared.<br />
<br />
However, i have been using this and getting an error.<br />
<br />
Error Type:<br />
Sun ONE ASP VBScript compilation (0x800A0426)<br />
Option Explicit must be the first statement<br />
/~jw22244/Week_4/test.asp, line 2, column 1<br />
<br />
This is the code:<br />
<br />
&lt;%@ Language=VBScript %&gt;<br />
&lt;% Option Explicit <br />
'*******************************<br />
'* Helloworl1.asp<br />
'*<br />
'* Author: Nick Heap<br />
'* Date: August 10 2003<br />
'* Version: 1.0<br />
'* Description: A dynamic web page<br />
'* using ASP<br />
'*******************************<br />
'declare variables<br />
Dim strGreeting<br />
'assign the string to the variable<br />
strGreeting = &quot;Hello world!&quot;<br />
%&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt; Helloworld Dynamic 1&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;%= strGreeting %&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-3-5-basics-351/">ASP.NET 3.5 Basics</category>
			<dc:creator>jwright1981</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-3-5-basics/76733-asp-vbscript.html</guid>
		</item>
	</channel>
</rss>
