User blahblah - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:55:33Zhttp://stackoverflow.com/feeds/user/86472http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1930153/asp-net-linqdatasource-where-clause1ASP.NET LinqDataSource WHERE clauseblahblah2009-12-18T19:14:32Z2009-12-22T19:39:55Z
<p>I need to make a WHERE clause for my <code>LinqDataSource</code> which depends on the currently logged in user. Of course, I have access to the currently logged in user in the code-behind and I specifically need the user ID to fetch only data belonging to him/her from the database.</p>
<p>It works fine when I add the <code>Where</code> attribute to the <code><asp:LinqDataSource /></code> tag but since server controls cannot have <code><% %></code> tags in them, I tried to set the <code>Where</code> attribute in the code-behind, in <code>OnLoad</code>, before data-binding the GridView which is connected to my data source.</p>
<p>However, when setting the attribute in the code-behind, it seems to have no effect. It works fine when I specify it manually (and statically) in the <code>ascx</code> code, but not from the code-behind.</p>
<p>I'm guessing I'm doing things in the wrong order or at the wrong times. How do I do this?</p>
<p><strong>UPDATE:</strong></p>
<p>Came up with this hack. I use a dummy label <code>lblViewedUserID</code> with <code>Visible="false"</code> to get a control from which I can extract the user ID. I set the text of this label from the code-behind before databinding.</p>
<p>I also added <code><WhereParameters></code> with a <code><asp:ControlParameter /></code> with a bunch of attributes.</p>
<pre><code><asp:LinqDataSource ID="dsLinqSource" AutoPage="true" AutoSort="true"
ContextTypeName="Ortrac.Common.Dbml.OrComDataContext"
EnableDelete="false" TableName="myTableName" EnableInsert="false"
EnableUpdate="false" runat="server" Select="new(Edited, Activity)"
Where="TheUserID.ToString().Equals(@ViewedUserID)"><%-- HACK! --%>
<WhereParameters>
<asp:ControlParameter Name="ViewedUserID" ControlID="lblViewedUserID"
Type="String" PropertyName="Text" />
</WhereParameters>
</asp:LinqDataSource>
<%-- Dummy label --%>
<asp:Label runat="server" ID="lblViewedUserID" Visible="false" />
</code></pre>
<p>Is this really how you program ASP.NET?</p>
http://stackoverflow.com/questions/1940446/linq-to-sql-data-from-two-unrelated-tables-sorting-on-date0LINQ to SQL: Data from two unrelated tables, sorting on dateblahblah2009-12-21T14:36:20Z2009-12-21T16:36:29Z
<p>I have two tables <code>tblActionLog</code> and <code>tblLoginLog</code>.</p>
<p>This is <code>tblActionLog</code>:</p>
<pre><code>tblActionLog
------------
ID (int)
Happened (DateTime)
...etc.
</code></pre>
<p>This is <code>tblLoginLog</code>:</p>
<pre><code>tblLoginLog
-----------
ID (int)
LoginDate (DateTime)
...etc.
</code></pre>
<p>Now I want to have a <code>GridView</code> with information from both of these tables interleaved in eachother so that their separate date informations are sorted, e.g.:</p>
<pre><code>LOG OF STUFF
-------------------------------
DATE | WHAT
2009-09-09 | Anderson logged in.
2009-09-08 | Smith made an action.
2009-09-08 | Smith logged in.
2009-09-06 | Anna made an action.
2009-09-04 | Smith made an action.
</code></pre>
<p>I hope this makes it clear enough. I want to get all of this information in a single LINQ query (not necessarily one SQL query). Any help appreciated.</p>
http://stackoverflow.com/questions/1935825/asp-net-linqdatasource-and-whereparameters0ASP.NET LinqDataSource and WhereParametersblahblah2009-12-20T13:22:39Z2009-12-20T14:21:35Z
<p>I have a <code>LinqDataSource</code> where the query should depend on the ID of the logged-in user. What's the best way to accomplish this? I'm guessing I should be using one of the parameters in <code>WhereParameters</code> but I can't find anything really suitable for it.</p>
<p>I'm currently hacking my way to it by using <code>ControlParameter</code> and a dummy control which contains the user ID (with <code>Visible="False"</code>).</p>
http://stackoverflow.com/questions/1922915/asp-net-gridview-headerstyle-cssclass-has-no-effect0ASP.NET/GridView: HeaderStyle-CssClass has no effectblahblah2009-12-17T16:25:43Z2009-12-20T13:28:56Z
<p>I have the following GridView in ASP.NET 3.5:</p>
<pre><code><asp:GridView ID="gvTable" runat="server" AllowSorting="true" ShowHeader="true">
<Columns>
<asp:BoundField DataField="ActivityDate" HeaderText="Date"
HeaderStyle-CssClass="date" />
<asp:BoundField DataField="ActivityType" HeaderText="Type" />
<asp:BoundField DataField="ActivityNotes" HeaderText="Notes" />
</Columns>
<PagerSettings Position="Bottom" Mode="NextPrevious" PageButtonCount="5"
PreviousPageText="Older activities" NextPageText="Newer activities" />
</asp:GridView>
</code></pre>
<p>What I'm trying to do is have the first cell of the <code><thead></code> of the table to have the CSS class <code>"date"</code>. However, it seems to have no effect whatsoever. If I use <code>ItemStyle-CssClass</code>, it does have the wanted effect, but applies to all of the body cells as well.</p>
<p>What am I doing wrong?</p>
<p>The HTML it gives me looks like this:</p>
<pre><code><thead>
<tr>
<th scope="col"> <!-- No class :( -->
Date
</th>
...
</tr>
</thead>
</code></pre>
http://stackoverflow.com/questions/1922915/asp-net-gridview-headerstyle-cssclass-has-no-effect/1935836#19358360Answer by blahblah for ASP.NET/GridView: HeaderStyle-CssClass has no effectblahblah2009-12-20T13:28:56Z2009-12-20T13:28:56Z<p>The problem was that I was using an outdated version of the CSS Friendly Control Adapters. Downloaded the latest source, compiled, used the new DLL and .browser file and that fixed it.</p>
http://stackoverflow.com/questions/1690850/linqdatasource-how-do-i-select-rows-based-on-the-current-userid/1935833#19358330Answer by blahblah for LinqDataSource - how do I select rows based on the current UserId?blahblah2009-12-20T13:27:50Z2009-12-20T13:27:50Z<p>What I did when I had the same problem:</p>
<pre><code><asp:LinqDataSource ... Where="UserID == Convert.ToInt32(@UserID)">
<WhereParameters>
<asp:ControlParameter Name="UserID" ControlID="hdnUserID"
Type="Int32" PropertyName="Value" />
</WhereParameters>
</asp:LinqDataSource>
<asp:HiddenField runat="server" ID="hdnUserID" Visible="false" />
</code></pre>
<p>Then I set the <code>Value</code> attribute of <code>hdnUserID</code> from code-behind. It's a hack, but works.</p>
http://stackoverflow.com/questions/1933859/asp-net-gridview-enabling-disabling-buttons-after-paging0ASP.NET GridView, enabling/disabling buttons after pagingblahblah2009-12-19T19:10:21Z2009-12-20T06:26:57Z
<p>I have successfully implemented my GridView now, but, as always, the whole ASP.NET life cycle thing is bothering me. I can't figure out why this doesn't work. I have bound the GridView's OnPageIndexChanged as such:</p>
<pre><code>protected void GridView_PageIndexChanged(object sender, EventArgs e)
{
// Enable/disable the previous/next buttons.
LinkButton btnNextPage = (LinkButton)gvTable.BottomPagerRow.FindControl("btnNextPage");
LinkButton btnPreviousPage = (LinkButton)gvTable.BottomPagerRow.FindControl("btnPreviousPage");
btnNextPage.Enabled = false;
btnPreviousPage.Enabled = false;
}
</code></pre>
<p>This is my ASCX:</p>
<pre><code><asp:GridView ID="gvTable" runat="server" ShowHeader="true" PageSize="1"
AllowPaging="true" AllowSorting="true" DataSourceID="dsLinqActivities"
AutoGenerateColumns="false" OnRowDataBound="GridView_DataBound"
OnPageIndexChanged="GridView_PageIndexChanged">
<Columns>
<asp:BoundField DataField="Edited" HeaderText="Date" />
<asp:BoundField DataField="Status" HeaderText="Status" />
<asp:BoundField DataField="Activity" />
</Columns>
<PagerSettings Position="Bottom" Visible="true" />
<PagerStyle CssClass="pager" />
<PagerTemplate>
<asp:LinkButton ID="btnPreviousPage" class="navbtn prev left"
runat="server" CommandName="Page" CommandArgument="Prev">
<span>Newer activities</span></asp:LinkButton>
<asp:LinkButton ID="btnNextPage" class="navbtn next right"
runat="server" CommandName="Page" CommandArgument="Next">
<span>Older activities</span></asp:LinkButton>
</PagerTemplate>
</asp:GridView>
</code></pre>
<p>I debug my application and see that the code is being run and does the right thing but for some reason when the control is rendered, both of the buttons are always enabled. What am I doing wrong here?</p>
http://stackoverflow.com/questions/830130/adding-a-field-to-an-existing-django-model2Adding a field to an existing Django modelblahblah2009-05-06T15:18:32Z2009-12-20T03:09:07Z
<p>Hi</p>
<p>I have a little website with a few users and I'd like to add a field to one of my models (and hence tables.) The problem is that <code>syncdb</code> of course won't touch the existing models and I'm trying to figure out how to add this field to the model/table without having to repopulate the entire thing.</p>
<p>Example:</p>
<pre><code>class Newspaper(models.Model):
name = models.CharField()
class UserProfile(models.Model):
user = models.ForeignKey(user, unique=True)
reads = models.ManyToManyField(Newspaper)
</code></pre>
<p>Now I'd like to add a URL field (<code>blank=True</code>) to the <code>Newspaper</code> model without breaking the user profiles.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1933546/using-resources-in-c-and-visual-studio-20080Using resources in C# and Visual Studio 2008blahblah2009-12-19T17:19:17Z2009-12-19T17:28:32Z
<p>I've recently found the <code>resx</code> resources feature of C#/VS2008. However, I have trouble finding information about what they are normally used for.</p>
<p>For example, I want to have a "static string" defined somewhere in my project, such as a CSS class that should be used in certain circumstances. Is it a good idea to define that string as a resource for my project? Or should I just define a class with a bunch of <code>const string</code> for these purposes?</p>
http://stackoverflow.com/questions/1930842/asp-net-gridview-doesnt-display-my-pagertemplate1ASP.NET GridView doesn't display my PagerTemplateblahblah2009-12-18T21:41:51Z2009-12-19T17:03:30Z
<p>I have the following code in my user control:</p>
<pre><code><asp:LinqDataSource ID="myLinqDataSource" runat="server" AutoSort="true"
ContextTypeName="MyDBContext" TableName="myTable" AutoPage="true"
Select="new(Edited, Activity)" Where="UserID == 4" />
<asp:GridView ID="gvTable" runat="server" ShowHeader="true"
PageSize="5" AllowPaging="true" AllowSorting="true"
DataSourceID="myLinqDataSource" AutoGenerateColumns="false"
OnRowDataBound="GridView_DataBound">
<Columns>
<asp:BoundField DataField="Edited" HeaderText="Date" DataFormatString="{0:d}" />
<asp:BoundField DataField="Activity" HeaderText="Notes" />
</Columns>
<PagerSettings Position="Bottom" />
<PagerStyle BackColor="Black" ForeColor="White" Wrap="false" />
<PagerTemplate>
Hello there
</PagerTemplate>
</asp:GridView>
</code></pre>
<p>For some reason, no matter what I do, the pager isn't rendered at all. Why?</p>
<p>It isn't even shown if I remove the <code>PagerTemplate</code> tag and use some standard <code>Mode</code> setting in <code>PagerSettings</code>. I'm going crazy!</p>
<p><strong>UPDATE:</strong></p>
<p>After doing some exhaustive googling, I find that I'm probably using a <em>very</em> old version of the CSS Friendly Control Adapters. I believe so since <a href="http://cssfriendly.codeplex.com/WorkItem/View.aspx?WorkItemId=1886" rel="nofollow">this bug</a> has struck me as well! So how do I know what version of these adapters that I'm using? I wasn't even aware I was using them!</p>
<p><strong>UPDATE 2:</strong></p>
<p>The problem was that I was using an old version of CSS Friendly Control Adapters. I downloaded the latest source code, compiled it, used the new DLL and .browser file and now it works just fine. I'm leaving this question here so anyone experiencing the same issue may find help from it.</p>
http://stackoverflow.com/questions/1930842/asp-net-gridview-doesnt-display-my-pagertemplate/1933477#19334770Answer by blahblah for ASP.NET GridView doesn't display my PagerTemplateblahblah2009-12-19T17:03:30Z2009-12-19T17:03:30Z<p>The problem was that I was using an old version of CSS Friendly Control Adapters. I downloaded the latest source code, compiled it, used the new DLL and .browser file and now it works just fine.</p>
http://stackoverflow.com/questions/1930688/javascript-change-class-of-an-element/1930703#1930703-1Answer by blahblah for Javascript change class of an elementblahblah2009-12-18T21:10:55Z2009-12-18T21:10:55Z<p>Using JQuery:</p>
<pre><code>$('ul li:nth-child(2)').attr('class', 'myclass');
</code></pre>
http://stackoverflow.com/questions/1930170/what-is-the-simplest-most-portable-way-to-send-an-email-in-elisp/1930183#19301832Answer by blahblah for What is the simplest, most portable way to send an email in elisp?blahblah2009-12-18T19:19:45Z2009-12-18T19:19:45Z<p><code>C-x m</code> is simple enough.</p>
http://stackoverflow.com/questions/1926919/linq-getting-the-row-with-the-maximum-value-of-a-given-attribute0LINQ: Getting the row with the maximum value of a given attributeblahblah2009-12-18T07:54:25Z2009-12-18T08:16:38Z
<p>I have a bunch of rows grouped on an attribute called <code>MyID</code>. Now I want the one row from each group where the <code>StatusDate</code> attribute is the highest in that one group.</p>
<p>This is what I've come up with.</p>
<pre><code>rows.Select(x => x.Where(y => y.StatusDate == x.Max(z => z.StatusDate)).First())
</code></pre>
<p>With a bit more explanation:</p>
<pre><code>rows.Select(x => // x is a group
x.Where(y => // get all rows in that group where...
// the status date is equal to the largest
// status date in the group
y.StatusDate == x.Max(z => z.StatusDate)
).First()) // and then get the first one of those rows
</code></pre>
<p>Is there any faster or more idiomatic way to do this?</p>
http://stackoverflow.com/questions/655947/not-changing-header-text-color-in-gridview-through-using-css/1926821#19268210Answer by blahblah for Not Changing Header Text Color In Gridview through using CSSblahblah2009-12-18T07:22:16Z2009-12-18T07:22:16Z<p>This happens because you have not defined a CSS rule which says anything about the link color.</p>
<p>Add the following to your stylesheet:</p>
<pre><code>.GridHeaderStyle a {
color: #f0f; /* or whatever */
}
</code></pre>
http://stackoverflow.com/questions/1922927/asp-net-gridview-using-only-a-subset-of-the-data-fields-in-the-table0ASP.NET/GridView: Using only a subset of the data fields in the tableblahblah2009-12-17T16:28:00Z2009-12-17T16:32:04Z
<p>I have a list of objects called <code>Activity</code> and I want to display the date, type and notes for each and every one of these activities. This is the code I'm using.</p>
<pre><code><asp:GridView ID="gvTable" runat="server" AllowSorting="true" ShowHeader="true">
<Columns>
<asp:BoundField DataField="ActivityDate" HeaderText="Date"
HeaderStyle-CssClass="date" />
<asp:BoundField DataField="ActivityType" HeaderText="Type" />
<asp:BoundField DataField="ActivityNotes" HeaderText="Notes" />
</Columns>
<PagerSettings Position="Bottom" Mode="NextPrevious" PageButtonCount="5"
PreviousPageText="Older activities" NextPageText="Newer activities" />
</asp:GridView>
</code></pre>
<p>However, all of the attributes of each object is displayed in the header. How can I force it to display only the columns that I want to use?</p>
http://stackoverflow.com/questions/1493579/vimperator-conkeror-like-link-selection1Vimperator/Conkeror-like link selectionblahblah2009-09-29T16:18:56Z2009-12-17T10:19:16Z
<p>I use Conkeror on a daily basis except at work where I need Firebug, since I'm a web developer. I really miss having the "follow link" ability in Conkeror but I don't want to resort to using Vimperator to get it.</p>
<p>Is there any Firefox extension which lets me follow links by hitting a key followed by the link text like in Conkeror?</p>
http://stackoverflow.com/questions/1909407/c-subclass-listsomething1C#: Subclass List<Something>?blahblah2009-12-15T18:28:00Z2009-12-15T18:39:02Z
<p>I have a class <code>EqualCondition</code> which implements my own interface <code>ICondition</code>, which has only one method: <code>SatisfiedBy(Something)</code>.</p>
<pre><code>public class EqualCondition : ICondition {
private Something m_Something;
public HelloCondition(Something something) {
m_Something = something;
}
// Magic!!!
public bool SatisfiedBy(Something something) {
return something == m_Something;
}
}
</code></pre>
<p>So <code>ICondition</code> is very simple to implement. Now I'm trying to create a <code>CombinationCondition</code> which also implements it. The idea is that <code>CombinationCondition</code> which will contain a list of <code>ICondition</code>s which will determine whether <code>SatisfiedBy</code> will be successful or not.</p>
<p>My first thought was to make <code>CombinationCondition</code> implement <code>IList<Something></code> but I quickly realized that I was only duplicating <code>List<Something></code>. So why not just subclass it?</p>
<p>That idea sounded fine until I started thinking again about how to implement <code>SatisfiedBy</code> if I just subclassed <code>List<Something></code>. I need to do:</p>
<pre><code>return innerList.All(x => x.SatisfiedBy(something))
</code></pre>
<p>But how do I access the inner list?</p>
http://stackoverflow.com/questions/1907264/asp-net-user-control-with-dependent-attributes0ASP.NET: User control with dependent attributesblahblah2009-12-15T12:55:31Z2009-12-15T13:22:52Z
<p>I'm writing a user control with two attributes, <code>A</code> and <code>B</code>. I want the programmer using this control to be warned when defining a value for attribute <code>A</code> but not for <code>B</code>.</p>
<p>Can I accomplish this somehow?</p>
http://stackoverflow.com/questions/1899698/truncate-a-string-with-an-ellipsis-making-sure-not-to-break-any-html-entity0Truncate a string with an ellipsis, making sure not to break any HTML entityblahblah2009-12-14T08:40:38Z2009-12-14T08:55:35Z
<p>I have a database of items with XHTML content and I want to display the items with the HTML stripped off (done) and then truncate each item to a maximum length of 100 characters. If the string exceeds 100 characters, I cut it off and insert <code>&hellip;</code> (an ellipsis) at the end.</p>
<p>The problem is that my program doesn't understand HTML entities that are <em>already</em> in the string. E.g. if the string is <code>something &amp; something</code>, my function may truncate it as <code>something &am...</code> resulting in <em>invalid XHTML</em>.</p>
<p>What is the best way to go about this problem in ASP.NET/C#?</p>
http://stackoverflow.com/questions/1748609/asp-net-uri-handling0ASP.NET: URI handlingblahblah2009-11-17T12:41:11Z2009-12-01T10:32:35Z
<p>I'm writing a method which, let's say, given <code>1</code> and <code>hello</code> should return <code>http://something.com/?something=1&hello=en</code>.</p>
<p>I <em>could</em> hack this together pretty easily, but what abstraction functionality does ASP.NET 3.5 provide for building URIs? I'd like something like:</p>
<pre><code>URI uri = new URI("~/Hello.aspx"); // E.g. ResolveUrl is used here
uri.QueryString.Set("something", "1");
uri.QueryString.Set("hello", "en");
return uri.ToString(); // /Hello.aspx?something=1&hello=en
</code></pre>
<p>I found the <code>Uri</code> class which sounds highly relevant, but I can't find anything which does the above really. Any ideas?</p>
<p>(For what it's worth, the order of the parameters doesn't matter to me.)</p>
http://stackoverflow.com/questions/1821289/django-modelform-instance-with-custom-queryset-for-a-specific-field2Django ModelForm instance with custom queryset for a specific fieldblahblah2009-11-30T17:48:16Z2009-11-30T18:46:31Z
<p>I have a model not unlike the following:</p>
<pre><code>class Bike(models.Model):
made_at = models.ForeignKey(Factory)
added_on = models.DateField(auto_add_now=True)
</code></pre>
<p>All users may work at a number of factories and therefore their user profiles all have a <code>ManyToManyField</code> to <code>Factory</code>.</p>
<p>Now I want to construct a <code>ModelForm</code> for <code>Bike</code> but I want the <code>made_at</code> list to consist of only factories at which the current user works. The idea is that users should be able to add bikes that they've assembled and enter which of the factories the bike was made at.</p>
<p>How do I do that?</p>
http://stackoverflow.com/questions/1724326/asp-net-sitemap-where-a-menu-item-links-to-its-first-child-item0ASP.NET: Sitemap where a menu item links to its first child itemblahblah2009-11-12T18:23:19Z2009-11-21T14:33:46Z
<p>I have written my own <code>SiteMapProvider</code> and my own menu control which work pretty well, but there's one thing left that I haven't figured out how to implement.</p>
<p>My sitemap consists of two levels all the way (the root node excluded) and I want every top-level menu item to link to the first child menu item.</p>
<pre><code>Home---------------Community
|_____Main page |__________Forums
|_____Messages |__________Search
|_____Profile
</code></pre>
<p>So e.g. when the user clicks "Home", the user should be taken to "Main page". Both "Home" and "Main page" should be marked as selected using a CSS class. The equivalent applies for "Community" and "Forums".</p>
<p>Maybe I should also mention that my <code>SiteMapProvider</code> subclass populates this menu dynamically depending on the user type.</p>
<p>How do I do this?</p>
http://stackoverflow.com/questions/1729335/can-django-models-use-mysql-functions/1729353#17293530Answer by blahblah for Can Django models use MySQL functions?blahblah2009-11-13T13:58:31Z2009-11-13T13:58:31Z<p>Using <a href="http://code.djangoproject.com/wiki/Signals" rel="nofollow">Django signals</a> you can do stuff when a model instance is saved, but as far as I know you can't trigger anything on read.</p>
<p>EDIT: My bad, it seems you <em>can</em> do stuff when initializing a model instance.</p>
http://stackoverflow.com/questions/1729318/can-we-use-2-different-url-on-same-anchor-tag-for-javascript-disabled-and-enabled/1729338#17293382Answer by blahblah for Can we use 2 different url on same anchor tag for javascript disabled and enabled condition ?blahblah2009-11-13T13:56:37Z2009-11-13T13:56:37Z<p>Yes, just write a JavaScript which finds the element you want to change the <code>href</code> of when the page has loaded.</p>
<p>Example using JQuery:</p>
<pre><code>$(function () {
$('a.changeable').each(function () {
$(this).attr('href', 'http://google.com/lol');
});
});
</code></pre>
<p>(Untested, but you get the idea.)</p>
<p>So basically, if the user has disabled JavaScript, the default link is used, otherwise the new URL given by the script is used. So your HTML should contain the link that should be used when JavaScript is <em>disabled</em>.</p>
http://stackoverflow.com/questions/1729282/jquery-sliding-div-only-once-per-browser-session-or-ip/1729327#17293271Answer by blahblah for JQuery sliding div only once per Browser Session (or IP)blahblah2009-11-13T13:55:09Z2009-11-13T13:55:09Z<p>As you say, you can save it using a cookie. There is an abundance of JQuery cookie handlers out there, e.g. <a href="http://plugins.jquery.com/project/cookie" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/1728360/finding-asp-net-source-code1Finding ASP.NET source codeblahblah2009-11-13T10:20:54Z2009-11-13T10:31:04Z
<p>Where can I find source code for e.g. XmlSiteMapProvider and other "built-in" stuff for ASP.NET (3.5)?</p>
http://stackoverflow.com/questions/1728118/jquery-selecting-inside-click-method/1728131#17281310Answer by blahblah for jQuery - selecting inside click method blahblah2009-11-13T09:26:51Z2009-11-13T09:26:51Z<p>Read the <a href="http://docs.jquery.com/Main%5FPage" rel="nofollow">JQuery documentation</a> and you will find that you should use <code>$(this)</code>.</p>
http://stackoverflow.com/questions/1723180/jquery-what-is-the-rule-when-do-i-use-this-and-when-is-this-enough/1723234#17232343Answer by blahblah for [jQuery] What is the rule? when do i use $(this) and when is "this" enough?blahblah2009-11-12T15:52:10Z2009-11-12T15:52:10Z<p><code>$(this)</code> gives you <code>this</code> wrapped in jQuery. <code>$($(this))</code> is the same as <code>$(this)</code> and therefore the extra call to <code>$</code> is unnecessary in that case.</p>
<p>The answer is that it depends on the situation. In a lot of plugins, you call the plugin method on a jQuery object, which makes <code>this</code> already wrapped in jQuery!</p>
http://stackoverflow.com/questions/1722592/asp-net-how-do-i-implement-my-own-associatedcontrolid-like-functionality0ASP.NET: How do I implement my own AssociatedControlID-like functionality?blahblah2009-11-12T14:35:38Z2009-11-12T14:45:34Z
<p>I have two user controls A and B, where B depends on the existence of A in the same page.</p>
<p>I'm trying to implement some functionality like this:</p>
<pre><code><mine:A ID="IdOfTheAControl" runat="server" />
<mine:B BelongsTo="IdOfTheAControl" runat="server" />
</code></pre>
<p>I'm able to extract <code>"IdOfTheAControl"</code> but unable to get the actual control with that ID. I tried to use <code>FindControl("IdOfTheAControl")</code> in <code>Page_Load</code> for <code>B</code> but this returns <code>null</code>, probably because the function looks for the control in <code>B.ascx</code> and not the master page where the two controls are siblings.</p>
<p>How do I, from a user control, get access to another user control with a given ID if the two controls are siblings in a page?</p>
http://stackoverflow.com/questions/1940446/linq-to-sql-data-from-two-unrelated-tables-sorting-on-date/1940464#1940464Comment by blahblah on LINQ to SQL: Data from two unrelated tables, sorting on dateblahblah2009-12-21T14:42:00Z2009-12-21T14:42:00ZCould you please give me an example using my tables as shown in the question? Thanks.http://stackoverflow.com/questions/338702/how-to-call-a-client-side-javascript-function-after-a-specific-updatepanel-has-be/339114#339114Comment by blahblah on How to call a client side javascript function after a specific UpdatePanel has been loadedblahblah2009-12-21T10:36:32Z2009-12-21T10:36:32Z+1 for leaving the code, helped me as well.http://stackoverflow.com/questions/1933859/asp-net-gridview-enabling-disabling-buttons-after-paging/1933879#1933879Comment by blahblah on ASP.NET GridView, enabling/disabling buttons after pagingblahblah2009-12-20T13:17:07Z2009-12-20T13:17:07ZThanks a lot, Ram, I'd give you 10 times "accepted" if I could for this great effort. Sad though that we can't seem to sort out the problem with OnPageIndexChanged. :(http://stackoverflow.com/questions/1933859/asp-net-gridview-enabling-disabling-buttons-after-paging/1934523#1934523Comment by blahblah on ASP.NET GridView, enabling/disabling buttons after pagingblahblah2009-12-20T13:07:15Z2009-12-20T13:07:15ZSorry, but I'm positive the CSS is not the issue here.http://stackoverflow.com/questions/1933859/asp-net-gridview-enabling-disabling-buttons-after-paging/1935036#1935036Comment by blahblah on ASP.NET GridView, enabling/disabling buttons after pagingblahblah2009-12-20T12:55:05Z2009-12-20T12:55:05ZWould you mind posting the source code for this test? Doesn't seem to make any difference on my side.http://stackoverflow.com/questions/1933859/asp-net-gridview-enabling-disabling-buttons-after-paging/1933879#1933879Comment by blahblah on ASP.NET GridView, enabling/disabling buttons after pagingblahblah2009-12-19T19:47:48Z2009-12-19T19:47:48Z@Ram: I'm only databinding the GridView explicitly once and that's in <code>OnLoad</code> (if <code>!IsPostBack</code>). I added the <code>ascx</code> to the question.http://stackoverflow.com/questions/1930842/asp-net-gridview-doesnt-display-my-pagertemplateComment by blahblah on ASP.NET GridView doesn't display my PagerTemplateblahblah2009-12-19T17:03:47Z2009-12-19T17:03:47Z@Jim: Done, can only accept it tomorrow earliest.http://stackoverflow.com/questions/1930688/javascript-change-class-of-an-element/1930703#1930703Comment by blahblah on Javascript change class of an elementblahblah2009-12-18T21:44:41Z2009-12-18T21:44:41ZSorry, but he <i>did</i> say he wants the actual class to be <code>"myclass"</code>. Ridiculous to downvote this answer.http://stackoverflow.com/questions/1930153/asp-net-linqdatasource-where-clause/1930189#1930189Comment by blahblah on ASP.NET LinqDataSource WHERE clauseblahblah2009-12-18T19:26:58Z2009-12-18T19:26:58ZSo there really isn't any way to go about this without fetching twice? Given the vast abundance of properties on <code>LinqDataSource</code> and <code>GridView</code> I find that hard to believe. But if you say so!http://stackoverflow.com/questions/1930153/asp-net-linqdatasource-where-clause/1930189#1930189Comment by blahblah on ASP.NET LinqDataSource WHERE clauseblahblah2009-12-18T19:23:00Z2009-12-18T19:23:00ZI didn't have any <code>Rebind</code> method on my <code>LinqDataSource</code>, so I assumed you meant <code>DataBind</code>. That did work, but I really hope data isn't fetched twice now?http://stackoverflow.com/questions/1926919/linq-getting-the-row-with-the-maximum-value-of-a-given-attributeComment by blahblah on LINQ: Getting the row with the maximum value of a given attributeblahblah2009-12-18T08:14:22Z2009-12-18T08:14:22Z@Jon: Oops, you are right. Sorry, Vlad. :/http://stackoverflow.com/questions/1926919/linq-getting-the-row-with-the-maximum-value-of-a-given-attributeComment by blahblah on LINQ: Getting the row with the maximum value of a given attributeblahblah2009-12-18T08:07:21Z2009-12-18T08:07:21Z@Vlad: Add that as an answer and I'll accept it. Makes perfect sense.http://stackoverflow.com/questions/1922915/asp-net-gridview-headerstyle-cssclass-has-no-effectComment by blahblah on ASP.NET/GridView: HeaderStyle-CssClass has no effectblahblah2009-12-17T17:08:52Z2009-12-17T17:08:52Z@adrianos: No. @joerage: Added to the question.http://stackoverflow.com/questions/1922915/asp-net-gridview-headerstyle-cssclass-has-no-effectComment by blahblah on ASP.NET/GridView: HeaderStyle-CssClass has no effectblahblah2009-12-17T16:41:42Z2009-12-17T16:41:42ZIt only has a width set. I know it works, because I use it in my currently static tables.http://stackoverflow.com/questions/1922915/asp-net-gridview-headerstyle-cssclass-has-no-effectComment by blahblah on ASP.NET/GridView: HeaderStyle-CssClass has no effectblahblah2009-12-17T16:38:30Z2009-12-17T16:38:30Z@Shawn: What do you mean? (I don't see how that could matter anyways?)