<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Travis Collins  - All Comments</title><link>http://weblogs.asp.net/traviscollins/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>re: AJAX Timeout Server Control</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/22/ajax-timeout-server-control.aspx#8155490</link><pubDate>Thu, 22 Dec 2011 19:02:29 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8155490</guid><dc:creator>Just Another Guy</dc:creator><description>&lt;p&gt;Folks (like Guy) &lt;/p&gt;
&lt;p&gt;Read the replies here, lots of info about how folks fixed the asynch calls and update panel issues.&lt;/p&gt;
&lt;p&gt;For those of you getting TSC undefined msgs, you probably have not put TSC.Timeout.dll into your bin folder....&lt;/p&gt;
&lt;p&gt;Great control Travis, has always worked well for me.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8155490" width="1" height="1"&gt;</description></item><item><title>re: Check Username Availability with ASP.NET AJAX</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/12/check-username-availability-with-asp-net-ajax.aspx#8068900</link><pubDate>Tue, 22 Nov 2011 11:40:17 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8068900</guid><dc:creator>PaulWeston1970</dc:creator><description>&lt;p&gt;Right - cracked it. &amp;nbsp;There's no need to check as the creation process will check for you.&lt;/p&gt;
&lt;p&gt;Try...&lt;/p&gt;
&lt;p&gt;Dim createStatus As Web.Security.MembershipCreateStatus&lt;/p&gt;
&lt;p&gt;Dim newMember As MembershipUser = Membership.CreateUser(userName.Text, passWord.Text, userEmail.Text, passwordQuestion.Text, passwordAnswer.Text, False, createStatus)&lt;/p&gt;
&lt;p&gt;The status of the creation process is fed back into the output variable *createStatus*. &amp;nbsp;Then it's simply a case of running through the enumerated values.&lt;/p&gt;
&lt;p&gt;Select Case createStatus&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.DuplicateEmail&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.DuplicateProviderUserKey&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.DuplicateUserName&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.InvalidAnswer&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.InvalidEmail&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.InvalidPassword&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.InvalidProviderUserKey&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.InvalidQuestion&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.InvalidUserName&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.ProviderError&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.Success&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;	Case MembershipCreateStatus.UserRejected&lt;/p&gt;
&lt;p&gt;		'...&lt;/p&gt;
&lt;p&gt;End Select&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8068900" width="1" height="1"&gt;</description></item><item><title>re: Check Username Availability with ASP.NET AJAX</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/12/check-username-availability-with-asp-net-ajax.aspx#8068790</link><pubDate>Tue, 22 Nov 2011 10:19:45 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8068790</guid><dc:creator>PaulWeston1970</dc:creator><description>&lt;p&gt;Is this the only way to actually determine whether a user exists bar writing the routine yourself? &amp;nbsp;This is horribly bloated - why return an entire user account simply to see if the username exists? &amp;nbsp;Poor coding on the part of the developers of the class IMHO; surely you'd want to check whether the username exists before attempting to create an account?...&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8068790" width="1" height="1"&gt;</description></item><item><title>re: AJAX Timeout Server Control</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/22/ajax-timeout-server-control.aspx#8034119</link><pubDate>Sat, 05 Nov 2011 14:50:26 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8034119</guid><dc:creator>guy</dc:creator><description>&lt;p&gt;im getting irritating with this control.its not working in update panels.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8034119" width="1" height="1"&gt;</description></item><item><title>re: AJAX Timeout Server Control</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/22/ajax-timeout-server-control.aspx#8034057</link><pubDate>Sat, 05 Nov 2011 13:51:55 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:8034057</guid><dc:creator>guy</dc:creator><description>&lt;p&gt;Previous timeing are not clearing after a asynchronous call in updatepanel.Redirecting is coming before the session end.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=8034057" width="1" height="1"&gt;</description></item><item><title>re: AJAX Timeout Server Control</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/22/ajax-timeout-server-control.aspx#7994194</link><pubDate>Sat, 15 Oct 2011 23:00:54 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7994194</guid><dc:creator>Jabber601</dc:creator><description>&lt;p&gt;Disregard my last question. I did not notice that the project was set to use .Net 2.0. I changeed it to 3.5 and it compiled.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7994194" width="1" height="1"&gt;</description></item><item><title>re: AJAX Timeout Server Control</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/22/ajax-timeout-server-control.aspx#7994182</link><pubDate>Sat, 15 Oct 2011 22:36:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7994182</guid><dc:creator>Jabber601</dc:creator><description>&lt;p&gt;I noticed that ther is a System.Web.Extensions dll in the zip file. Why is this present.Does this not work with the newer one location in the Global Assembly Cache?&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7994182" width="1" height="1"&gt;</description></item><item><title>re: Check Username Availability with ASP.NET AJAX</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/12/check-username-availability-with-asp-net-ajax.aspx#7970225</link><pubDate>Thu, 29 Sep 2011 15:17:16 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7970225</guid><dc:creator>Irfan</dc:creator><description>&lt;p&gt;thanx Dear..&lt;/p&gt;
&lt;p&gt;its working now...&lt;/p&gt;
&lt;p&gt;please mail me so that i can seek ur help in future&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7970225" width="1" height="1"&gt;</description></item><item><title>re: Check Username Availability with ASP.NET AJAX</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/12/check-username-availability-with-asp-net-ajax.aspx#7970209</link><pubDate>Thu, 29 Sep 2011 14:57:42 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7970209</guid><dc:creator>Irfan</dc:creator><description>&lt;p&gt;i get following error using this code&lt;/p&gt;
&lt;p&gt;Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. &lt;/p&gt;
&lt;p&gt;Compiler Error Message: CS1001: Identifier expected&lt;/p&gt;
&lt;p&gt;Source Error:&lt;/p&gt;
&lt;p&gt;Line 69: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; class=&amp;quot;style6&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;Line 70: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;br /&amp;gt;&lt;/p&gt;
&lt;p&gt;Line 71: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;asp:TextBox id=&amp;quot;txtUserId&amp;quot; Columns=15 OnTextChanged=&amp;quot;usernameChecker(&amp;quot;irfan&amp;quot;);&amp;quot; runat=&amp;quot;server&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;Line 72: &amp;amp;nbsp;&amp;lt;br /&amp;gt;&lt;/p&gt;
&lt;p&gt;Line 73: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;br /&amp;gt;&lt;/p&gt;
&lt;p&gt;Source File: c:\ONLINE TENDERS\Default.aspx &amp;nbsp; &amp;nbsp;Line: 71 &lt;/p&gt;
&lt;p&gt;please mail me the solution&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7970209" width="1" height="1"&gt;</description></item><item><title>re: Check Username Availability with ASP.NET AJAX</title><link>http://weblogs.asp.net/traviscollins/archive/2008/02/12/check-username-availability-with-asp-net-ajax.aspx#7954647</link><pubDate>Fri, 16 Sep 2011 10:48:20 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7954647</guid><dc:creator>gunjan prajapati</dc:creator><description>&lt;p&gt;I am Geting Error &lt;/p&gt;
&lt;p&gt;spanAvailability not avaialble&lt;/p&gt;
&lt;p&gt;pls help me&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7954647" width="1" height="1"&gt;</description></item></channel></rss>
