User Sara Chipps - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T07:58:45Z http://stackoverflow.com/feeds/user/4140 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57804/nhibernate-mappingexception-no-persister-for 11 NHibernate.MappingException: No persister for: Sara Chipps 2008-09-11T22:27:05Z 2009-11-25T10:09:45Z <p>Now, before you say it I DID google and my hbm.xml file IS an Embedded Resource. </p> <p>Here is the code I am calling:</p> <pre><code>ISession session = GetCurrentSession(); var returnObject = session.Get&lt;T&gt;(Id); </code></pre> <p>Here is my mapping file for the class:</p> <pre><code> &lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"&gt; &lt;class name="HQData.Objects.SubCategory, HQData" table="SubCategory" lazy="true"&gt; &lt;id name="ID" column="ID" unsaved-value="0"&gt; &lt;generator class="identity" /&gt; &lt;/id&gt; &lt;property name="Name" column="Name" /&gt; &lt;property name="NumberOfBuckets" column="NumberOfBuckets" /&gt; &lt;property name="SearchCriteriaOne" column="SearchCriteriaOne" /&gt; &lt;bag name="_Businesses" cascade="all"&gt; &lt;key column="SubCategoryId"/&gt; &lt;one-to-many class="HQData.Objects.Business, HQData"/&gt; &lt;/bag&gt; &lt;bag name="_Buckets" cascade="all"&gt; &lt;key column="SubCategoryId"/&gt; &lt;one-to-many class="HQData.Objects.Bucket, HQData"/&gt; &lt;/bag&gt; &lt;/class&gt; &lt;/hibernate-mapping&gt; </code></pre> <p>Has anyone run to this issue before?</p> <p>EDIT the XML wasn't displaying correctly.</p> http://stackoverflow.com/questions/1633899/google-analytics-and-python 2 Google Analytics and Python Sara Chipps 2009-10-27T21:57:06Z 2009-11-08T07:02:59Z <p>I'm brand new at Python and I'm trying to write an extension to an app that imports GA information and parses it into MySQL. There is a shamfully sparse amount of infomation on the topic. The Google Docs only seem to have examples in JS and Java... </p> <p>...I have gotten to the point where my user can authenticate into GA using SubAuth. That code is here:</p> <pre><code>import gdata.service import gdata.analytics from django import http from django import shortcuts from django.shortcuts import render_to_response def authorize(request): next = 'http://localhost:8000/authconfirm' scope = 'https://www.google.com/analytics/feeds' secure = False # set secure=True to request secure AuthSub tokens session = False auth_sub_url = gdata.service.GenerateAuthSubRequestUrl(next, scope, secure=secure, session=session) return http.HttpResponseRedirect(auth_sub_url) </code></pre> <p>So, step next is getting at the data. I have found this library: (beware, UI is offensive) <a href="http://gdata-python-client.googlecode.com/svn/trunk/pydocs/gdata.analytics.html" rel="nofollow">http://gdata-python-client.googlecode.com/svn/trunk/pydocs/gdata.analytics.html</a> However, I have found it difficult to navigate. It seems like I should be gdata.analytics.AnalyticsDataEntry.getDataEntry(), but I'm not sure what it is asking me to pass it. </p> <p>I would love a push in the right direction. I feel I've exhausted google looking for a working example. </p> <p>Thank you!!</p> <p>EDIT: I have gotten farther, but my problem still isn't solved. The below method returns data (I believe).... the error I get is: "'str' object has no attribute '_BecomeChildElement'" I believe I am returning a feed? However, I don't know how to drill into it. Is there a way for me to inspect this object?</p> <pre><code>def auth_confirm(request): gdata_service = gdata.service.GDataService('iSample_acctSample_v1.0') feedUri='https://www.google.com/analytics/feeds/accounts/default?max-results=50' # request feed feed = gdata.analytics.AnalyticsDataFeed(feedUri) print str(feed) </code></pre> http://stackoverflow.com/questions/266053/what-are-some-exercises-you-do-to-make-you-a-better-programmer 36 What are some exercises you do to make you a better programmer? Sara Chipps 2008-11-05T18:01:23Z 2009-10-19T19:41:07Z <p>Lately, I have taken to programming without a mouse to force myself to become more comfortable with different shortcuts. It's been a good exercise as I feel using shortcuts is essential for productivity .</p> <p>I figured I would ask if anyone else did the same types of things and could recommend other things to help improve my habits. </p> http://stackoverflow.com/questions/418876/what-was-your-most-uncomfortable-programming-experience 18 What was your most uncomfortable programming experience Sara Chipps 2009-01-07T01:33:42Z 2009-10-09T01:49:15Z <p>I made this a wiki because I think that some people may think it's too "thready" but I had to share and it wasn't appropriate on my blog. </p> <p>I've had a few, but I think the strangest was once I was on an interview (when I was consulting) and it was my first interview. I wasn't 100% familiar with the position, I knew they wanted to utilize my experience with SQL server to import and archive older data. </p> <p>Well, I was in a man's office, we were alone and he closed the door on the way in. After a few questions he looked at me with a total straight face and said seriously "So, do you have any experience with Wang?"</p> <p>Those unfamiliar with American slang should google (or not), but I was frozen silent and beet red for about 30 seconds before he said "It was a database machine in the 70s."</p> <p>I'm sure that other people have funny stories, sometimes we nerds can be awkward. </p> http://stackoverflow.com/questions/289137/visual-studio-2008-dll-disappearing-issues 2 Visual Studio 2008 .dll disappearing issues Sara Chipps 2008-11-14T03:07:47Z 2009-09-24T05:27:27Z <p>Ok, so I have VS 2008 and SVN. When I "rebuild all" a handful of my .dll's disappear from my bin folder. </p> <p>I have these .dll's in a library folder and that's where I am referencing them from. </p> <p>When I go to publish the app the publish fails, I think they are related. When I reboot my web.config (change something and save) this error goes away. However, the publish still fails. </p> <p>When I go to the folder and update svn puts all of them back of course, but then it just happens all over again.</p> <p>Thank you. </p> http://stackoverflow.com/questions/183469/how-do-you-reward-yourself-when-youve-overcome-a-monster-task 13 How do you reward yourself when you've overcome a monster task Sara Chipps 2008-10-08T15:48:14Z 2009-08-19T21:04:32Z <p>I just finished debugging something really hairy, took me three days and one night of not sleeping (not just one bug, obv). </p> <p>What I WANTED to do was stand on my desk and dance. What I did do is let myself surf on reddit for a few, and I may treat myself to a walk and a nice lunch. </p> <p>What are some good rewards for getting a task completed?</p> http://stackoverflow.com/questions/287764/what-should-i-tell-kids-about-how-great-it-is-to-be-a-programmer 14 What should I tell kids about how great it is to be a programmer? Sara Chipps 2008-11-13T18:21:08Z 2009-08-10T12:19:13Z <p>I am putting a presentation together. I thought about illustrating with websites like <a href="http://www.facebook.com/" rel="nofollow">Facebook</a>, and <a href="http://www.MySpace.com" rel="nofollow">MySpace</a>. </p> <p>Does anyone have children around that age that could tell me what they are into? How to hold their attention? Ways to illustrate what we do? Get them interested?</p> <p>Your ideas are greatly appreciated, I really want to be able to convey how fun this is :). </p> <p>I don't have access to a digital projector... which really stinks. I do have access to an old transparency overhead, though.</p> <p><hr /></p> <p><a href="http://stackoverflow.com/questions/207278/career-day-how-do-i-make-computer-programmer-sound-cool-to-8-year-olds">http://stackoverflow.com/questions/207278/career-day-how-do-i-make-computer-programmer-sound-cool-to-8-year-olds</a></p> http://stackoverflow.com/questions/1083653/jquery-dynamic-id-control-property 3 JQuery dynamic ID control property Sara Chipps 2009-07-05T08:07:07Z 2009-07-05T19:23:49Z <p>So, I have JQuery dynamically generating controls. The input controls are called EnterLink + number of controls generated. On generation of a new input control I want to change the previously created input so it is disabled. Right now my code looks as so, it does not work. </p> <pre><code>if (rowCount &gt; 0) { var last = rowCount - 1; $("#EnterLink" + last).disabled = true; } </code></pre> <p>This looks like it should work, I checked the ids of the controls and that's exactly like they are formatted. </p> http://stackoverflow.com/questions/52608/is-subversion-version-control-necessary-for-a-small-development-group-1-2-prog/52619#52619 37 Answer by Sara Chipps for Is Subversion (Version Control) Necessary For A Small Development Group (1-2 programmers)? Sara Chipps 2008-09-09T18:57:13Z 2009-06-26T17:12:46Z <p>I am ONE programmer and I find it invaluable, as I sometimes want to roll things back, or compare something to an earlier version. </p> <p>Also, I version documents from users and things like that. </p> <p>It's a great way to track your development. </p> http://stackoverflow.com/questions/1013285/can-i-pass-in-t-property-also-ideas-for-improving-this-method 4 Can I pass in T.Property? Also, ideas for improving this method? Sara Chipps 2009-06-18T15:16:22Z 2009-06-21T21:36:06Z <p>Or possibly there is a better way. </p> <p>I am building a dynamic query builder for NHibernate, we don't want to put HQL directly into the application, we want it as ORM agnostic as possible. It looks like this currently:</p> <pre><code> public override IEnumerable&lt;T&gt; SelectQuery(Dictionary&lt;string, string&gt; dictionary) { string t = Convert.ToString(typeof (T).Name); string criteria = string.Empty; foreach (KeyValuePair&lt;string, string&gt; item in dictionary) { if (criteria != string.Empty) criteria += " and "; criteria += item.Key + " = '" + item.Value + "'"; } string query = " from " + t; if (criteria != string.Empty) query += " where " + criteria; return FindByHql(query); } </code></pre> <p>ok, great, however.... there are two things in here that pose a problem:</p> <ol> <li><p>This query only handles "and," my initial thought is to pass is to build a method to dynamically build the dictionary that takes the property name, value, and an operator "and" or "or" and builds the dictionary along with an array of operators. Does that sound like the right thing to do?</p></li> <li><p>Ok, so, this works GREAT, however, when there is an integer it fails because of the single quotes. What I think would be the BEST way is have the dictionary accept <code>&lt;T.Property, string&gt;</code> and then reflect into T.Property to find the datatype and behave accordingly. Am I over complicating this?</p></li> </ol> <p>Thank you. </p> http://stackoverflow.com/questions/467016/can-i-dynamically-add-html-within-a-div-tag-from-c-on-load-event 0 Can I dynamically add HTML within a div tag from C# on load event? Sara Chipps 2009-01-21T21:10:54Z 2009-06-09T19:35:31Z <p>Mind you, I am using master pages, but can I locate a div within the page and throw some html in there? Thanks. </p> http://stackoverflow.com/questions/471682/i-need-to-change-the-style-and-control-use-of-the-asplogin-control-button 2 I need to change the style and control use of the asp:Login control button Sara Chipps 2009-01-23T02:32:16Z 2009-06-09T19:35:09Z <p>Is it possible to get the source and code behind of the control so I can manipulate it myself? </p> <p>That way I can keep using the Membership and have the ease of functionality, but can use my own controls. </p> <p>I'm sure there is an easy solution to this. </p> <p>Thanks. </p> http://stackoverflow.com/questions/920028/linq-syntax-in-vb-net 0 Linq syntax in VB.NET Sara Chipps 2009-05-28T09:42:21Z 2009-05-28T13:43:31Z <p>What I really want is to select these two tables in to an anon type like in Scott Gu's blog: <a href="http://weblogs.asp.net/scottgu/archive/2007/05/15/new-orcas-language-feature-anonymous-types.aspx?CommentPosted=true" rel="nofollow">here</a> However, I would settle for this created type "ActiveLots" I am joining two tables together and want to be able to reference columns from each in my result set. </p> <p>I don't seem to be getting the syntax correctly. </p> <pre><code> Dim pi = From p In dc.Inventories Join i In dc.InventoryItems On p.InventoryItemID _ Equals i.InventoryItemID Where p.LotNumber &lt;&gt; "" _ Select New ActiveLots LotNumber = p.LotNumber, Quantity = p.Quantity, Item = i.Item, Uom = i.UnitofMeasure, Description = i.Description </code></pre> http://stackoverflow.com/questions/54118/what-is-the-best-way-to-populate-a-menu-control-on-a-master-page 3 What is the Best Way to Populate a Menu Control on a Master Page Sara Chipps 2008-09-10T14:05:56Z 2009-05-22T19:43:29Z <p>Database? Page variables? Enum????? </p> <p>looking for opionions here. </p> http://stackoverflow.com/questions/198717/aspsitemappath-with-dynamic-images 1 asp:SiteMapPath with dynamic images Sara Chipps 2008-10-13T19:20:09Z 2009-05-22T19:40:25Z <p>Ok, so I'm building bread crumbs and depending on the value of the breadcrumb an image will be the seperator. So "HOME" will have one image and "SEARCH" will have another. </p> <p>I know I can do this programatically (at least I ASSUME) but is there an easier way to do this? Can I link an image to a node based on the value of the node? Can I do it with PathSeparatorTemplate? </p> <p>Thank you. </p> http://stackoverflow.com/questions/842192/wpf-hide-menuitem-on-contextmenu-based-on-object-property 0 WPF hide MenuItem on ContextMenu based on object property Sara Chipps 2009-05-08T23:03:44Z 2009-05-09T13:16:52Z <p>I need to programatically show/hide a MenuItem, what would be the best way to do this?</p> http://stackoverflow.com/questions/810573/what-obsolete-programming-techniques-are-you-glad-to-see-go/810584#810584 3 Answer by Sara Chipps for What obsolete programming techniques are you glad to see go? Sara Chipps 2009-05-01T08:03:49Z 2009-05-01T08:03:49Z <p>Postbacks. </p> http://stackoverflow.com/questions/123539/how-can-a-team-or-can-a-team-develop-a-crm-system-in-two-months/123633#123633 7 Answer by Sara Chipps for How can a team or can a team develop a CRM system in two months? Sara Chipps 2008-09-23T20:24:36Z 2009-04-22T08:22:07Z <p>Use another CRM to do it. </p> http://stackoverflow.com/questions/740709/is-there-a-better-way-of-filling-a-generic-list-from-a-sql-dataadapter 0 Is there a better way of filling a generic List from a SQL DataAdapter? Sara Chipps 2009-04-11T20:08:02Z 2009-04-11T20:47:19Z <p>I have an existing application that uses Active Record for its data retrieval. It's in VB.NET (first time I'm doing VB.NET; I usually work in C#). And I'm building a method to return a <code>List(Of T)</code> of an object. </p> <p>The current pattern uses a <code>SQLDataAdapter</code> to populate a datatable. I COULD add the record to the <code>List(Of T)</code> as I fill the datatable, but there HAS to be a better way to do this. </p> <p>Any ideas? I'm not married to using <code>SQLDataAdapter</code>, if there's a better way that avoids it...</p> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008 2 ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Sara Chipps 2008-09-02T01:10:54Z 2009-04-09T20:34:30Z <p>Ok, so, my visual studio is broken. I say this NOT prematurely, as it was my first response to see where I had messed up in my code. When I add controls to the page I can't reference all of them in the code behind. Some of them I can, it seems that the first few I put on a page work, then it just stops. </p> <p>I first thought it may be the type of control as initially I was trying to reference a repeater inside an update panel. I know I am correctly referencing the code behind in my aspx page. But just in case it was a screw up on my part I started to recreate the page from scratch and this time got a few more controls down before VS stopped recognizing my controls.</p> <p>After creating my page twice and getting stuck I thought maybe it was still the type of controls. I created a new page and just threw some labels on it. No dice, build fails when referencing the control from the code behind. </p> <p>In a possibly unrelated note when I switch to the dreaded "design" mode of the aspx pages VS 2008 errors out and restarts. </p> <p>I have already put a trouble ticket in to Microsoft. I uninstalled all add-ins, I reinstalled visual studio. </p> <p>Anyone that wants to see my code just ask, but I am using the straight WYSIWYG visual studio "new aspx page" nothing fancy.</p> <p>I doubt anyone has run into this, but have you? </p> <p>Has anyone had success trouble shooting these things with Microsoft? Any way to expedite this ticket without paying??? I have been talking to a rep from Microsoft for days with no luck yet and I am dead in the water. </p> <p>Thank you. </p> <p><hr /></p> <p><strong>Jon Limjap:</strong> I edited the title to both make it clear and descriptive <em>and</em> make sure that nobody sees it as offensive. "Foo-barred" doesn't exactly constitute a proper question title, although your question is clearly a valid one.</p> http://stackoverflow.com/questions/135047/interview-questions-for-flash-developers 4 Interview questions for Flash developers Sara Chipps 2008-09-25T18:24:56Z 2009-03-20T09:01:08Z <p>For an interview in a few, I'm not at all familiar with Flash development. </p> <p>What would you ask?</p> http://stackoverflow.com/questions/251382/design-question-control-array 1 Design Question - Control Array Sara Chipps 2008-10-30T19:16:10Z 2009-03-02T07:40:07Z <p>Ok, I know how to do this, but I want to know if this is the BEST way. </p> <p>I have a table called "Topics" which has a list of topics(obv). I have a page with about 20 (+/-10) check boxes with all the different topics a user can subscribe to. I figured the best way to do this is to make a control array of check boxes and populate it on page load. </p> <p>The issue is that the check boxes are in a unique arrangement, should I place them on the page and then dynamically populate them on load? Is that the best way to do it? I'm not too familiar with control arrays. </p> <p>Thanks! </p> http://stackoverflow.com/questions/550006/html-text-not-formatting 2 HTML text not formatting Sara Chipps 2009-02-14T23:46:34Z 2009-02-15T00:03:23Z <p>so I have HTML formatted Sql text stored in my database, I populate the contents of a <code>&lt;p&gt;&lt;/p&gt;</code> tag with it on page load, but though HTML tags are showing up in the text they are not formatting the text. Is there a step I am missing?</p> http://stackoverflow.com/questions/483547/how-do-i-setup-an-asp-net-iis-dev-enviroment-on-a-mac-for-my-flash-developer 0 How do I setup an ASP.Net/IIS dev enviroment on a Mac for my Flash developer? Sara Chipps 2009-01-27T14:19:20Z 2009-02-10T13:15:29Z <p>No, no, I'm not getting hives ;). </p> <p>I am able to run a local version of my .NET 3.5 site on IIS and troubleshoot whilst I develop. However, my flash developer is forced to log onto our Windows 2003 and mess with our staging server when he wants to see how his work is doing. This is unacceptable, I understand, but right now there are time concerns so this hack is going to have to fly for a little. </p> <p>How do I set up a dev environment for my flash developer to be able to work on his local machine? I'm sure this gets done in other places. </p> http://stackoverflow.com/questions/529870/sql-images-byte-arrays 1 SQL Images -> byte arrays Sara Chipps 2009-02-09T20:48:36Z 2009-02-09T20:58:04Z <p>So I am importing some images stored in SQL image columns, and I need to change them to Byte arrays since I store my images as varbinary(max) and recreate them. I would LOVE it if there was a program to do this, or a really easy way since I don't have a ton of time. </p> <p>Any ideas out there?</p> http://stackoverflow.com/questions/517897/anyone-know-any-programming-related-poetry/517930#517930 2 Answer by Sara Chipps for Anyone know any programming related poetry? Sara Chipps 2009-02-05T21:11:20Z 2009-02-05T21:11:20Z <p><a href="http://itmanagement.earthweb.com/entdev/article.php/3790601/A-Software-Programmers-Christmas-Poem.htm" rel="nofollow">http://itmanagement.earthweb.com/entdev/article.php/3790601/A-Software-Programmers-Christmas-Poem.htm</a></p> <p>if I may say so myself. </p> http://stackoverflow.com/questions/512878/how-do-you-determine-if-doing-something-the-right-way-will-handicap-you 4 How do you determine if doing something the right way will handicap you? Sara Chipps 2009-02-04T19:21:48Z 2009-02-05T05:45:37Z <p>I have a horrible habit, actually something I'm wrestling with right this moment, when I think of a better way to do something - either a refactor, or something that would just be SO MUCH COOLER LOOKING, or such a better UX, I just HAVE to do it. Even when it would cost me time and I'm in a time crunch. I never know when to say, "no, there isn't time for this I can do it later."</p> <p>Is there a line you draw? </p> <p>Like right now I need a way to display magazine articles that are in the database. The easy way would be to create a new .aspx page and just pass the article id. the AWESOME way would be a jquery fade in modal that would display the article. At least that's what I think. Not being a guru it would take me longer to write. We are launching next week no time for extra crap. However, I just can't bring myself to do it the easy way. </p> <p>Does anyone else run into this problem? Wondering if more experienced programmers have some wisdom to share. </p> http://stackoverflow.com/questions/372715/ajax-calendar-extender-display-issue-in-safari 1 AJAX calendar extender display issue in Safari Sara Chipps 2008-12-16T21:07:40Z 2009-02-04T13:58:24Z <p>Ok, this is not a CSS issue, I removed all styling from the page. This is a calendar extender that has a target id of a textbox and the popupbutton is the same text box. </p> <p>The month name is displaying lower than the days, so it's not usable. </p> <p>it's fine in IE. </p> <p>I am using Safari in Windows Vista. </p> <p>Does anyone know what is causing this?</p> <p>Thank you. </p> <p>I don't know why this was voted down, is there some information I'm missing? This isn't a duplicate question. </p> <p>UPDATE:</p> <p>here is the c0dez:</p> <pre><code> &lt;label&gt;date&lt;/label&gt; &lt;asp:TextBox ID="txtDate" CssClass="field" runat="server" /&gt; &lt;asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtDate" Text="*" /&gt; &lt;ajaxtoolkit:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="txtDate" Format="MMMM d, yyyy" PopupButtonID="txtDate" PopupPosition="BottomLeft" /&gt; </code></pre> http://stackoverflow.com/questions/508316/asp-net-membership-staying-authenticated-issues 3 ASP.NET Membership staying authenticated issues Sara Chipps 2009-02-03T18:29:44Z 2009-02-03T20:00:29Z <p>So, my application is being odd in the fact that when you login you will stay logged in for a page or two then get lost. My settings are this:</p> <pre><code> &lt;authentication mode="Forms"&gt; &lt;forms name=".ASPXFORMSAUTH" timeout="20"/&gt; &lt;/authentication&gt; &lt;authorization&gt; &lt;allow users="*" /&gt; &lt;/authorization&gt; &lt;membership defaultProvider="MySqlConnection" userIsOnlineTimeWindow="45"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add name="MySqlConnection" type="System.Web.Security.SqlMembershipProvider" connectionStringName="MySqlConnection" applicationName="HQChannel" enablePasswordRetrieval="true" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="true" passwordFormat="Hashed" minRequiredNonalphanumericCharacters="0" minRequiredPasswordLength="6" /&gt; &lt;/providers&gt; &lt;/membership&gt; </code></pre> <p>Thanks for your help. </p> http://stackoverflow.com/questions/326821/need-to-explain-why-checkboxes-look-funky-in-safari 0 need to explain why checkboxes look funky in Safari Sara Chipps 2008-11-28T22:37:13Z 2009-02-03T03:32:03Z <p>Everyone in my office uses Macs and therefore most use Safari. </p> <p>We have a page that has 30 checkboxes on it, I didn't even do the HTML myself but no matter if I use the html input checkbox with a label or an asp:Checkbox usig the text property for the label my boss is irritated because the checkbox is a little below center on the label. </p> <p>I can only assume that this is due to Sarari and it's wonky rendering. I doubt there is a fix that wont be rediculously complicated (if there is please let me know). I didn't even do the html myself, I sent it out. </p> <p>I tried to explain to him that's how Safari "is" but that wasn't acceptable. I googled to see if anyone else had run into such an issue, (I didn't google to hard though, figured I'd just ask you guys). What do I do when hit with an issue like this where he insists something so minor is unacceptable? Am I approaching this wrong? I mean the HTML is perfectly reasonable here it is: </p> <pre><code>&lt;ul&gt; &lt;li&gt;&lt;asp:CheckBox CssClass="checkbox" runat="server" Text="Accessories" /&gt;&lt;/li&gt; &lt;li&gt;&lt;asp:CheckBox CssClass="checkbox" runat="server" Text="Art" /&gt;&lt;/li&gt; &lt;li&gt;&lt;asp:CheckBox CssClass="checkbox" runat="server" Text="Athletic Apparel" /&gt;&lt;/li&gt; &lt;!-- etc... --&gt; &lt;/ul&gt; </code></pre> <p>How can I explain this to him a way he will understand?</p> http://stackoverflow.com/questions/1662926/what-is-your-recommendation-for-a-good-book-on-the-net-clr-and-cil/1662979#1662979 Comment by Sara Chipps on What is your recommendation for a good book on the .NET CLR and CIL? Sara Chipps 2009-11-02T19:28:14Z 2009-11-02T19:28:14Z Beat me to it, excellent read. http://stackoverflow.com/questions/44868/coding-beauty-vs-business-needs/44896#44896 Comment by Sara Chipps on Coding beauty vs business needs Sara Chipps 2009-08-21T16:05:45Z 2009-08-21T16:05:45Z this was written before comments existed. http://stackoverflow.com/questions/1261825/subversion-should-anyone-be-developing-off-the-trunk/1261834#1261834 Comment by Sara Chipps on Subversion - should anyone be developing off the trunk? Sara Chipps 2009-08-11T19:29:33Z 2009-08-11T19:29:33Z LOL I love &quot;Yes, a woman.&quot; What about black programmers, YOU DIDN'T LIST ANY BLACK PROGRAMMER. Racist. http://stackoverflow.com/questions/1253167/how-does-being-high-on-marijuana-affect-your-ability-to-code Comment by Sara Chipps on How does being high on marijuana affect your ability to code? Sara Chipps 2009-08-10T05:06:39Z 2009-08-10T05:06:39Z Finally, the answers we've all been waiting for. http://stackoverflow.com/questions/1148991/where-did-all-the-chick-programmers-go Comment by Sara Chipps on Where did all the chick programmers go? Sara Chipps 2009-07-19T00:57:19Z 2009-07-19T00:57:19Z Hi. We are here. http://stackoverflow.com/questions/1083653/jquery-dynamic-id-control-property/1083662#1083662 Comment by Sara Chipps on JQuery dynamic ID control property Sara Chipps 2009-07-05T08:21:55Z 2009-07-05T08:21:55Z Gracias! 15characterlimitstinks http://stackoverflow.com/questions/1013285/can-i-pass-in-t-property-also-ideas-for-improving-this-method/1013483#1013483 Comment by Sara Chipps on Can I pass in T.Property? Also, ideas for improving this method? Sara Chipps 2009-06-18T16:35:28Z 2009-06-18T16:35:28Z criteria queries is a good way to go, but I stayed with my current setup in the spirit of &quot;getting s**t done&quot; http://stackoverflow.com/questions/1013285/can-i-pass-in-t-property-also-ideas-for-improving-this-method/1013362#1013362 Comment by Sara Chipps on Can I pass in T.Property? Also, ideas for improving this method? Sara Chipps 2009-06-18T16:34:37Z 2009-06-18T16:34:37Z I used this except I did away with the Dictionary all together and just added &quot;Property&quot; as string to the QueryObject class. Thanks! http://stackoverflow.com/questions/920028/linq-syntax-in-vb-net/920080#920080 Comment by Sara Chipps on Linq syntax in VB.NET Sara Chipps 2009-05-28T10:07:52Z 2009-05-28T10:07:52Z perfect, thanks!!! http://stackoverflow.com/questions/269876/what-is-the-connection-string-for-odbc-connections/269959#269959 Comment by Sara Chipps on What is the connection string for odbc connections? Sara Chipps 2009-04-28T08:10:45Z 2009-04-28T08:10:45Z this is very cool, I did not know this. http://stackoverflow.com/questions/740709/is-there-a-better-way-of-filling-a-generic-list-from-a-sql-dataadapter/740739#740739 Comment by Sara Chipps on Is there a better way of filling a generic List from a SQL DataAdapter? Sara Chipps 2009-04-11T20:48:27Z 2009-04-11T20:48:27Z nope, that's all I wanted... a way to get around the redundant data objects. Thanks! http://stackoverflow.com/questions/663884/get-started-with-nhibernate/663902#663902 Comment by Sara Chipps on Get started with nhibernate Sara Chipps 2009-03-19T20:32:07Z 2009-03-19T20:32:07Z this was extremely helpful for me. http://stackoverflow.com/questions/660972/what-is-your-best-pseudo-code-phrase Comment by Sara Chipps on What is your best pseudo-code phrase? Sara Chipps 2009-03-19T16:36:44Z 2009-03-19T16:36:44Z I voted to re-open. http://stackoverflow.com/questions/517897/anyone-know-any-programming-related-poetry Comment by Sara Chipps on Anyone know any programming related poetry? Sara Chipps 2009-02-05T21:16:02Z 2009-02-05T21:16:02Z I would like to know what kind of soap programmers use. http://stackoverflow.com/questions/512878/how-do-you-determine-if-doing-something-the-right-way-will-handicap-you/512898#512898 Comment by Sara Chipps on How do you determine if doing something the right way will handicap you? Sara Chipps 2009-02-04T19:33:02Z 2009-02-04T19:33:02Z awesome, thanks. However, I am implementing URL rewriting... maybe this is a great time to start using it.