<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for ASP.NET Tricks</title>
	<link>http://www.aspnettricks.com</link>
	<description></description>
	<pubDate>Mon, 06 Feb 2012 08:12:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>

	<item>
		<title>Comment on Mozilla CSS Extentions by How to use Mozilla Specific CSS in a web page &#124; Tech-Guruji</title>
		<link>http://www.aspnettricks.com/archives/mozilla-css-extentions/#comment-63240</link>
		<pubDate>Thu, 27 Jan 2011 03:42:46 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/mozilla-css-extentions/#comment-63240</guid>
					<description>[...] web page.  Posted on Thursday, 27 January 2011 by itsRoger  No Comment  var addthis_pub=&quot;izwan00&quot;; BOOKMARK      Today I found a great approach for defining Mozilla specific styles without using Mozilla CSSextentions. The only thing needed is to put all Mozilla specific CSS definitions in a “@-moz-document” block and specify the url, url-prefix or domain to which pages the styles have to be applied: [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] web page.  Posted on Thursday, 27 January 2011 by itsRoger  No Comment  var addthis_pub=&#8221;izwan00&#8243;; BOOKMARK      Today I found a great approach for defining Mozilla specific styles without using Mozilla CSSextentions. The only thing needed is to put all Mozilla specific CSS definitions in a “@-moz-document” block and specify the url, url-prefix or domain to which pages the styles have to be applied: [&#8230;]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on &#8220;Back&#8221; link not working in Firefox by jjj</title>
		<link>http://www.aspnettricks.com/archives/back-link-not-working-in-firefox/#comment-55675</link>
		<pubDate>Wed, 29 Sep 2010 13:15:57 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/back-link-not-working-in-firefox/#comment-55675</guid>
					<description>I know this is old entry, but I was facing the same problem. Ended up here after some google and the solution here made me thinking what is the real cause due the &quot;fix&quot; suggested here.


The real problem is that with code:

&lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;back&lt;/a&gt;

Firefox is executing the onclick, however Firefox is still executing the anchor link as well and moving the page to top. This cancels the history.back(). Now with proposed solution:

&lt;a href=&quot;history.back();&quot; rel=&quot;nofollow&quot;&gt;back&lt;/a&gt;

Firefox is just executing the anchor link, which in this case is entered as javascript block. All fine, and Firefox executes the history.back() as intended. However if you want to use the onclick and have that code work, you just have to tell Firefox not to execute the anchor (as originally intended):

&lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;back&lt;/a&gt;

Note the added &quot;return false;&quot;.</description>
		<content:encoded><![CDATA[<p>I know this is old entry, but I was facing the same problem. Ended up here after some google and the solution here made me thinking what is the real cause due the &#8220;fix&#8221; suggested here.</p>
<p>The real problem is that with code:</p>
<p><a href="#" rel="nofollow">back</a></p>
<p>Firefox is executing the onclick, however Firefox is still executing the anchor link as well and moving the page to top. This cancels the history.back(). Now with proposed solution:</p>
<p><a href="history.back();" rel="nofollow">back</a></p>
<p>Firefox is just executing the anchor link, which in this case is entered as javascript block. All fine, and Firefox executes the history.back() as intended. However if you want to use the onclick and have that code work, you just have to tell Firefox not to execute the anchor (as originally intended):</p>
<p><a href="#" rel="nofollow">back</a></p>
<p>Note the added &#8220;return false;&#8221;.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Forms authentication failed for the request. Reason: The ticket supplied was invalid. by gkayton</title>
		<link>http://www.aspnettricks.com/archives/forms-authentication-failed-for-the-request-reason-the-ticket-supplied-was-invalid/#comment-48157</link>
		<pubDate>Wed, 17 Mar 2010 09:32:51 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/forms-authentication-failed-for-the-request-reason-the-ticket-supplied-was-invalid/#comment-48157</guid>
					<description>What fix the problem for me was the following. I was double authenticating users. Once I removed the commented line below I stopped getting the error. Farm or no Farm.

If System.Web.Security.Membership.ValidateUser(_txtUsername.Text, _txtPassword.Text) Then
 '*** Remove Line  FormsAuthentication.Authenticate(_txtUsername.Text, _txtPassword.Text)
    If _chkRemember.Checked Then
           FormsAuthentication.RedirectFromLoginPage(_txtUsername.Text, True)
    Else
           FormsAuthentication.RedirectFromLoginPage(_txtUsername.Text, False)
    End If

Removed this line:
FormsAuthentication.Authenticate(_txtUsername.Text, _txtPassword.Text)</description>
		<content:encoded><![CDATA[<p>What fix the problem for me was the following. I was double authenticating users. Once I removed the commented line below I stopped getting the error. Farm or no Farm.</p>
<p>If System.Web.Security.Membership.ValidateUser(_txtUsername.Text, _txtPassword.Text) Then<br />
 &#8216;*** Remove Line  FormsAuthentication.Authenticate(_txtUsername.Text, _txtPassword.Text)<br />
    If _chkRemember.Checked Then<br />
           FormsAuthentication.RedirectFromLoginPage(_txtUsername.Text, True)<br />
    Else<br />
           FormsAuthentication.RedirectFromLoginPage(_txtUsername.Text, False)<br />
    End If</p>
<p>Removed this line:<br />
FormsAuthentication.Authenticate(_txtUsername.Text, _txtPassword.Text)
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Forms authentication failed for the request. Reason: The ticket supplied was invalid. by hippy</title>
		<link>http://www.aspnettricks.com/archives/forms-authentication-failed-for-the-request-reason-the-ticket-supplied-was-invalid/#comment-45702</link>
		<pubDate>Mon, 18 Jan 2010 12:27:24 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/forms-authentication-failed-for-the-request-reason-the-ticket-supplied-was-invalid/#comment-45702</guid>
					<description>Hi, 

So to clarify, is slidingExpiration supposed to be set to true on both ASP1.1 and ASP2.0 configs or is it supposed to be left as the defaults (true in 1.1, false in 2.0)??

Thanks</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>So to clarify, is slidingExpiration supposed to be set to true on both ASP1.1 and ASP2.0 configs or is it supposed to be left as the defaults (true in 1.1, false in 2.0)??</p>
<p>Thanks
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Add scrollbar to DIV tag content by Augustin</title>
		<link>http://www.aspnettricks.com/archives/add-scrollbar-to-div-tag-content/#comment-42936</link>
		<pubDate>Wed, 02 Dec 2009 12:15:44 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/add-scrollbar-to-div-tag-content/#comment-42936</guid>
					<description>I created a clean solution for a custom scrollbar based on the ajaxToolkit:SliderExtender [http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Slider/Slider.aspx] and JQuery library [http://docs.jquery.com/Tutorials] :


http://aspdotnetpassion.blogspot.com/search/label/SliderExtender</description>
		<content:encoded><![CDATA[<p>I created a clean solution for a custom scrollbar based on the ajaxToolkit:SliderExtender [http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Slider/Slider.aspx] and JQuery library [http://docs.jquery.com/Tutorials] :</p>
<p><a href='http://aspdotnetpassion.blogspot.com/search/label/SliderExtender' rel='nofollow'>http://aspdotnetpassion.blogspot.com/search/label/SliderExtender</a>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Request.Form - get values for fields having the same name by Kalyan</title>
		<link>http://www.aspnettricks.com/archives/requestform-get-values-for-fields-having-the-same-name/#comment-36190</link>
		<pubDate>Thu, 18 Jun 2009 12:16:33 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/requestform-get-values-for-fields-having-the-same-name/#comment-36190</guid>
					<description>hi
clear and concise solution.
Thanks for posting. really helpful!


cheers,
kalyan</description>
		<content:encoded><![CDATA[<p>hi<br />
clear and concise solution.<br />
Thanks for posting. really helpful!</p>
<p>cheers,<br />
kalyan
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Request.Form - get values for fields having the same name by Kunal Sidhpura</title>
		<link>http://www.aspnettricks.com/archives/requestform-get-values-for-fields-having-the-same-name/#comment-26348</link>
		<pubDate>Tue, 20 Jan 2009 00:58:28 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/requestform-get-values-for-fields-having-the-same-name/#comment-26348</guid>
					<description>Hi Vesy, 
            I am a newbie to .NET was looking for something like this. Your blog is great also got to learn some new things. May be you could help me more with all the tips and tricks. If you could give me your email id it would be great would like to learn new things in .NET, my Email Id: kunu_sid@yahoo.com. 



Thanks and Regards
Kunal Sidhpura</description>
		<content:encoded><![CDATA[<p>Hi Vesy,<br />
            I am a newbie to .NET was looking for something like this. Your blog is great also got to learn some new things. May be you could help me more with all the tips and tricks. If you could give me your email id it would be great would like to learn new things in .NET, my Email Id: <a href="mailto:kunu_sid@yahoo.com.">kunu_sid@yahoo.com.</a> </p>
<p>Thanks and Regards<br />
Kunal Sidhpura
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Hide div and the white space it occupies by Ron</title>
		<link>http://www.aspnettricks.com/archives/hide-div-and-the-white-space-it-occupies/#comment-24805</link>
		<pubDate>Tue, 06 Jan 2009 15:03:05 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/hide-div-and-the-white-space-it-occupies/#comment-24805</guid>
					<description>Actually, the use of the display attribute gets into some browser specific issues</description>
		<content:encoded><![CDATA[<p>Actually, the use of the display attribute gets into some browser specific issues
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on How to migrate from MS Access to MS SQL Server 2000 by Amitabh</title>
		<link>http://www.aspnettricks.com/archives/migrate-access-database-to-ms-sql-server-2000/#comment-23090</link>
		<pubDate>Mon, 22 Dec 2008 00:31:32 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/migrate-access-database-to-ms-sql-server-2000/#comment-23090</guid>
					<description>Very nice piece of information.</description>
		<content:encoded><![CDATA[<p>Very nice piece of information.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on ASP.NET Chart Tools by ASP.NET Charting Controls at ASP.NET Tricks</title>
		<link>http://www.aspnettricks.com/archives/aspnet-chart-tools/#comment-20816</link>
		<pubDate>Wed, 26 Nov 2008 02:37:58 +0000</pubDate>
		<guid>http://www.aspnettricks.com/archives/aspnet-chart-tools/#comment-20816</guid>
					<description>[...] Finally it&amp;#8217;s nice to hear Microsoft released chart controls. They can be used with ASP.NET 3.5 by inserting &amp;#60;asp:chart runat=&amp;#8221;server&amp;#8221; /&amp;#62; tag in your code. What is the big difference compared to other charting tools? - it&amp;#8217;s absolutely free. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Finally it&#8217;s nice to hear Microsoft released chart controls. They can be used with ASP.NET 3.5 by inserting &lt;asp:chart runat=&#8221;server&#8221; /&gt; tag in your code. What is the big difference compared to other charting tools? - it&#8217;s absolutely free. [&#8230;]
</p>
]]></content:encoded>
				</item>
</channel>
</rss>

