User Atomiton - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T00:22:48Zhttp://stackoverflow.com/feeds/user/26931http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1655273/directory-or-subdomain-for-online-store/1834358#18343580Answer by Atomiton for Directory or subdomain for online store?Atomiton2009-12-02T17:06:28Z2009-12-02T17:06:28Z<p>store.site.com is a MUCH better solution.</p>
<p>Generally regular users don't CARE about your URL, they just type in "site" into Google.</p>
<p>Then they click.</p>
<p>As long as your store has a prominent place on your site, it won't be a problem.</p>
<p>Apple does this very well:</p>
<p><a href="http://store.apple.com" rel="nofollow">http://store.apple.com</a></p>
<p>A subdomain also keeps your "sales" apart from your "content" which different avenues in most businesses.</p>
http://stackoverflow.com/questions/756567/regular-expression-for-excluding-special-characters/1499398#14993980Answer by Atomiton for Regular expression for excluding special charactersAtomiton2009-09-30T16:56:02Z2009-09-30T16:56:02Z<p>Here's all the french accented characters:
àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇ’ñ</p>
<p>I would google a list of German accented characters. There aren't THAT many. You should be able to get them all. </p>
<p>For URLS I Replace accented URLs with regular letters like so:</p>
<pre><code>string beforeConversion = "àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇ’ñ";
string afterConversion = "aAaAaAaAeEeEeEeEiIiIiIoOoOoOuUuUuUcC'n";
for (int i = 0; i < beforeConversion.Length; i++) {
cleaned = Regex.Replace(cleaned, beforeConversion[i].ToString(), afterConversion[i].ToString());
}
</code></pre>
<p>There's probably a more efficient way, mind you.</p>
http://stackoverflow.com/questions/1363650/javascript-moving-element-in-the-dom/1363662#1363662-1Answer by Atomiton for JavaScript moving element in the DOMAtomiton2009-09-01T17:28:14Z2009-09-01T17:28:14Z<p>If you have jQuery on the page, <a href="http://stackoverflow.com/questions/233936/jquery-swapping-elements">this post should answer your question</a>.</p>
http://stackoverflow.com/questions/1106772/change-the-link-on-a-sitemap-based-on-if-a-user-is-logged-in/1106790#11067901Answer by Atomiton for Change the link on a sitemap based on if a user is logged in?Atomiton2009-07-09T22:33:02Z2009-07-09T22:52:15Z<p>A simple solution is to have two nodes in your sitemap.</p>
<p>One node shows up for Non-authenticated users but <strong>not</strong> for logged in ones.<br />
One node shows up for Authenticated users with the security access</p>
<p>I believe you can set this up quite simply.</p>
<p>The end result is the same as changing the link but it's easier to maintain.</p>
<p>To add to this:</p>
<pre><code><siteMap>
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="~/Member.aspx" title="Home" roles="SpecialPeople">
<siteMapNode url="~/Nonmember.aspx" title="Site Map" roles="HideForUsers" >
</siteMapNode>
</siteMap>
</code></pre>
<p>So, you set up a rule that Denies Access to the "HideForMembers" role to authenticated users. It's something like that. ASP.Net will take the first rule it finds a match, so you should be able to accomplish it this way.</p>
<p>Otherwise, you could do a Menu_OnDataBound and look for the node:</p>
<pre><code>Protected Sub menMainDataBound(ByVal sender As Object, ByVal e As System.EventArgs)
Try
Dim myPage As New Page
Dim myPrincipal As IPrincipal
Dim colNodes As New Collection
myPrincipal = myPage.User
If myPrincipal.Identity.IsAuthenticated = True Then
Dim menNode As MenuItem
For Each menNode In menMain.Items
Select Case menNode.Value.ToString
Case "Products"
colNodes.Add(menNode)
Case "Contact Us"
colNodes.Add(menNode)
Case "About Us"
colNodes.Add(menNode)
Case "Links"
colNodes.Add(menNode)
End Select
Next
For Each menNode In colNodes
menMain.Items.Remove(menNode)
Next
End If
Catch ex As Exception
End Try
End Sub
</code></pre>
<p><a href="http://forums.asp.net/p/1161879/1922913.aspx#1922913" rel="nofollow">source</a></p>
http://stackoverflow.com/questions/958157/intelligent-searching-with-wildcards-and-word-grouping-in-sql-full-text-searc1Intelligent Searching with wildcards (*) and word grouping in SQL Full-text SearchAtomiton2009-06-05T21:06:17Z2009-07-09T16:29:55Z
<p>What's the best way implement MS SQL full-text search using all the normal things like wildcards and quotations. For example:</p>
<p>If the search term the user inputs is </p>
<blockquote>
<p>Overdose of "Vitamin C" for child*</p>
</blockquote>
<p>I would like to treat "Vitamin C" as one phrase and would like to match "child" and "children"</p>
<p>The documentation offers so many alternatives, it's hard to differentiate them. I'd love to be able to throw the above string at Full-text search and have it decipher the word grouping and the wildcards, but I don't think it's that smart.</p>
http://stackoverflow.com/questions/978088/how-do-i-get-httpcompression-gzip-to-work-with-url-routing-extensionless-urls1How do I get HttpCompression (GZip) to work with URL Routing (Extensionless URLs) on IIS 6.Atomiton2009-06-10T20:52:19Z2009-06-11T01:22:33Z
<p>Okay,</p>
<p>URL Routing is great. Extensionless URLS, SEO friendly etc. However, it seems that IIS 6 doesn't perform compression on sites that use Extensionless URLs.</p>
<p>WildCard Mapping is on so Asp.Net can process the extensionless files, but is there any way to set these resources to be gzipped?</p>
http://stackoverflow.com/questions/837656/custom-a-catch-all-parameter-in-routing/958317#9583170Answer by Atomiton for Custom a catch-all parameter in routingAtomiton2009-06-05T21:53:59Z2009-06-05T21:53:59Z<p>The problem is... how will it know when to stop?</p>
<p>the {*whatever} segment will match:</p>
<pre><code>/foo/
/foo/bar
/foo/bar/details/4/moreFoo
/foo/bar/andmore/details/4/moreFoo
</code></pre>
<p>Because the catch-all parameter includes anything, it will never stop.</p>
<p>The only way to implement this would be to create a different route for each place you use details...</p>
<p>eg:</p>
<pre><code>games/details/{id}/{itemName}
widgets/details/{id}/{itemName}
books/details/{id}/{itemName}
</code></pre>
<p>Of course, that is already provided in the default {controller}/{action}/{id} route</p>
http://stackoverflow.com/questions/953175/how-can-i-encode-quotation-marks-without-asp-net-complaining0How can I encode Quotation marks without Asp.Net complaining?Atomiton2009-06-04T21:21:08Z2009-06-05T06:02:18Z
<h2>On my site, an encoded quote (%22) in url path causes "Illegal characters in path" error</h2>
<p>I want specify search URLs like so:</p>
<p><strong>www.site.com/search/%22Vitamin+C%22</strong></p>
<p>%22 is an encoded quotation mark <strong>"</strong></p>
<p>I'm using a Asp.Net URL Routing and the route is specified like this: <strong>"search/{searchTerm}"</strong></p>
<p>When <code>Context["searchTerm"]</code> is retrieved and Decoded, it would result in the above example being: <strong>"Vitamin+C"</strong> [including quotes]</p>
<p>It would seem that Asp.Net thinks that the there are illegal characters in the URL. I don't understand why, when I AM URLEncoding the text.</p>
<p><strong>How can I encode Quotation marks without Asp.Net complaining?</strong> Many people will use quotation marks to group words together and I want to allow this "smart searching" </p>
http://stackoverflow.com/questions/952222/can-someone-point-me-to-a-really-easy-to-understand-guide-to-web-config/952259#9522593Answer by Atomiton for Can someone point me to a really easy to understand guide to web.config?Atomiton2009-06-04T18:22:11Z2009-06-04T18:36:59Z<p>This is a really good article:</p>
<ul>
<li><a href="http://www.sitepoint.com/article/web-config-file-demystified/" rel="nofollow">The Web.Config Demystified</a></li>
</ul>
<p>It takes the magic out of the Web.Config... which after all is just an XML file.</p>
<ul>
<li><p><a href="http://peterkellner.net/2008/02/23/webconfigbestpractice/" rel="nofollow">Best Practices on using App Settings and Connection Strings</a></p></li>
<li><p>Another link about <a href="http://www.odetocode.com/Articles/345.aspx" rel="nofollow">putting AppSettings in a separate File</a>. I do this ALL THE TIME. I'll have several files where my test environment are different and have something like:</p></li>
</ul>
<blockquote>
<p>Conn.test.Config</p>
<p>Conn.test.Config</p>
<p>App.test.Config</p>
<p>App.live.Config</p>
</blockquote>
<ul>
<li><p>Here's MSDN docs which outline the <a href="http://msdn.microsoft.com/en-us/library/ms178683.aspx" rel="nofollow">additions for .Net 3.5</a>.</p></li>
<li><p>AND... one GREAT way of finding out what people have found to be useful is the items <a href="http://delicious.com/tag/Web.Config" rel="nofollow">tagged Web.Config in delicious</a></p></li>
</ul>
<p>I also love showing people that the fancy "website configuration" under the ASP.Net Tab in IIS is just parsing an XML file and there's nothing fancy about it.</p>
http://stackoverflow.com/questions/946350/can-smtp-errors-be-the-developers-fault0Can SMTP Errors be the Developer's fault?Atomiton2009-06-03T18:22:03Z2009-06-03T21:16:13Z
<p>I have an error message getting returned to me which would appear to be something wrong with the Exchange set up. Is there a possibility that I'm doing something wrong? I have no idea where to to start to track this down:</p>
<pre><code>The following recipient(s) cannot be reached:
Customer Service Account on 6/3/2009 11:00 AM
There was a SMTP communication problem with the
recipient's email server. Please
contact your system administrator.
<fgdc.myservername.net #5.5.0 smtp;550 Requested action not taken: mailbox unavailable>
</code></pre>
<p>This is perhaps a ServerFault question, but I wanted to get some input as to whether it's even possible that there's something I can do to fix it in my code.</p>
<p>Site is Asp.Net C#, using URL Routing</p>
<p>Server is 2003, 64-bit and running Exchange 2003</p>
<p><strong>UPDATE</strong></p>
<p><hr /></p>
<p>Turns out it was a layer of Spam protection. Figured out this was only happening for internal addresses and MIMESweeper looks to be throwing away the messages. They were coming from an external web server, but sending with an internal domain. Flags go up. Messages don't go.</p>
http://stackoverflow.com/questions/928546/url-routing-and-iis6-how-can-i-test-it1URL Routing and IIS6. How can I test it?Atomiton2009-05-29T23:31:21Z2009-06-02T18:23:59Z
<p>I can't seem to understand how I can find out what is erroring out when I implement URL Routing on IIS6 and Webforms.</p>
<p>I continue to get 404 errors when I try to access a route.</p>
<p>I add the ISAPI module as described here:
<a href="http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/" rel="nofollow">http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/</a></p>
<p>SO that way ASP.Net handles all the requests, but THEN I get a 404 error just accessing the site.</p>
<p>Is there a way to tell if the URL Routing engine is even getting the request?</p>
<p><hr /></p>
<p><strong>UPDATE:</strong>
For the 64-bit version of Windows (which I failed to mention) the correct DLL is:</p>
<blockquote>
<p><strong>C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll</strong></p>
</blockquote>
<p>If you're not sure which version (or you want to be sure you get the right path) just <strong>copy the value that is in the Executable Path of the “aspx” extension</strong> in the ListBox above the WildCard Mapping box.</p>
http://stackoverflow.com/questions/936226/how-to-get-started-with-ruby-how-can-i-use-ruby-what-is-it-famous-for-how-is-a/936279#9362792Answer by Atomiton for How to get started with Ruby? How can I use Ruby? What is it famous for? How is a DSL going to be useful? Atomiton2009-06-01T19:14:01Z2009-06-01T21:07:55Z<p>Ruby on Rails is an application framework around ruby.</p>
<p>It's like saying is "Asp.Net MVC" the same as learning C#?</p>
<p>Ruby is the language powering the Framework, but many have taken the good points and implemented it into other frameworks now.</p>
<p>Ruby is an interesting language. IronRuby compiles Ruby down to MSIL, just like C#, VB.Net etc. So it's a good start for implementing Ruby, as it maps Ruby to be able to be used in the CLR.</p>
<p>but if you want to learn the language itself, one good (and fun) way to get the basics is here:
<a href="http://tryruby.hobix.com/" rel="nofollow">http://tryruby.hobix.com/</a></p>
<p><a href="http://en.wikipedia.org/wiki/Ruby%5F%28programming%5Flanguage%29" rel="nofollow">Wiki to more about Ruby</a></p>
<p>Funniest and most creative intro to a language ever:
<a href="http://poignantguide.net/ruby/chapter-1.html" rel="nofollow">Why's (Poignant) Guide to Ruby</a></p>
<p>As for IronRuby. Here's more info on that:
<a href="http://stackoverflow.com/questions/69443/going-ruby-straight-to-ironruby">http://stackoverflow.com/questions/69443/going-ruby-straight-to-ironruby</a></p>
http://stackoverflow.com/questions/291908/using-web-sitemap-with-dynamic-urls-url-routing3Using Web.SiteMap with Dynamic URLS (URL Routing)Atomiton2008-11-15T00:48:18Z2009-06-01T08:55:39Z
<h2>I would like to match "approximate" matches in Web.SiteMap</h2>
<p>The Web.Sitemap static sitemap provider works well, except for one thing. IT'S STATIC!</p>
<p>So, if I would have to have a sitemapnode for each of the 10,000 articles on my page like so :</p>
<ul>
<li>site.com/articles/1/article-title</li>
<li>site.com/articles/2/another-article-title</li>
<li>site.com/articles/3/another-article-again</li>
<li>...</li>
<li>site.com/articles/9999/the-last-article</li>
</ul>
<h2>Is there some kind of Wildcard mapping I can do with the SiteMap to match Anything under Articles?</h2>
<p>Or perhaps in my Webforms Page, is there a way to Manually set the current node?</p>
http://stackoverflow.com/questions/266719/url-routing-handling-spaces-and-illegal-characters-when-creating-friendly-urls5URL Routing: Handling Spaces and Illegal Characters When Creating Friendly URLsAtomiton2008-11-05T21:16:33Z2009-05-30T09:31:45Z
<p>I've seen a lot of discussion on URL Routing, and LOTS of great suggestions... but in the real world, one thing I haven't seen discussed are: </p>
<ol>
<li>Creating Friendly URLs <strong>with Spaces and illegal characters</strong> </li>
<li>Querying the DB</li>
</ol>
<p>Say you're building a Medical site, which has <strong>Articles</strong> with a <strong>Category</strong> and optional <strong>Subcategory</strong>. (1 to many). ( <strong>Could've used any example, but the medical field has lots of long words</strong>)</p>
<p><hr /></p>
<h2><strong>Example Categories/Sub/Article Structure:</strong></h2>
<ol>
<li><strong>Your General Health (Category)</strong>
<ul>
<li><em>Natural Health <strong>(Subcategory)</em></strong>
<ol>
<li>Your body's immune system and why it needs help. <strong>(Article)</strong></li>
<li>Are plants and herbs really the solution?</li>
<li>Should I eat fortified foods?</li>
</ol></li>
<li>Homeopathic Medicine
<ol>
<li>What's homeopathic medicine?</li>
</ol></li>
<li><em>Healthy Eating</em>
<ol>
<li>Should you drink 10 cups of coffee per day?</li>
<li>Are Organic Vegetables worth it?</li>
<li>Is Burger King® evil?</li>
<li>Is "French café" or American coffee healthier?</li>
</ol></li>
</ul></li>
<li><strong>Diseases & Conditions (Category)</strong>
<ul>
<li><em>Auto-Immune Disorders <strong>(Subcategory)</em></strong>
<ol>
<li>The #1 killer of people is some disease</li>
<li>How to get help </li>
</ol></li>
<li><em>Genetic Conditions</em>
<ol>
<li>Preventing Spina Bifida before pregnancy.</li>
<li>Are you predisposed to live a long time?</li>
</ol></li>
</ul></li>
<li><strong>Dr. FooBar's personal suggestions (Category)</strong>
<ol>
<li>My thoughts on Herbal medicine & natural remedies <strong>(Article - no subcategory)</strong></li>
<li>Why should you care about your health?</li>
<li>It IS possible to eat right and have a good diet.</li>
<li>Has bloodless surgery come of age?</li>
</ol></li>
</ol>
<p><hr /></p>
<p>In a structure like this, you're going to have some <strong>LOOONG URLs</strong> if you go:
/{Category}/{subcategory}/{Article Title}</p>
<p>In addition, there are numerous <strong>illegal characters</strong>, like # ! ? ' é " etc.</p>
<h2><strong>SO, the QUESTION(S) ARE:</strong></h2>
<ol>
<li>How would you handle illegal characters and Spaces? (Pros and Cons?)</li>
<li>Would you handle getting this from the Database
<ul>
<li>In other words, would you <strong>trust the DB to find</strong> the Item, passing the title, <strong>or pull all the titles</strong> and find the key in code to get the key to pass to the Database (two calls to the database)?</li>
</ul></li>
</ol>
<p><em>note: I always see nice pretty examples like /products/beverages/Short-Product-Name/ how about handling some ugly examples ^</em>^*</p>
http://stackoverflow.com/questions/455623/how-can-i-prevent-users-from-taking-screenshots-of-my-application-window/884361#8843610Answer by Atomiton for How can I prevent users from taking screenshots of my application window?Atomiton2009-05-19T18:33:00Z2009-05-19T18:33:00Z<p>The only way I can think of doing this in an ultimately fail-proof way is by relaying the images directly to the user's brain and forgoing a screen completely.</p>
<p>Then again, once we get to this stage, we'd likely be able to download from our brain anyhow... hello Johnny Mnemonic.</p>
http://stackoverflow.com/questions/779266/does-it-make-you-a-bad-coder-if-you-have-to-look-up-syntax/779648#7796480Answer by Atomiton for Does it make you a bad coder if you have to look up syntax?Atomiton2009-04-22T23:22:25Z2009-04-22T23:22:25Z<p>I don't think looking up syntax makes you a bad programmer... but if you're not careful, intellisense can rot your brain.</p>
<p>If i was learning a new language, and I kept my pocket dictionary with me to have a basic conversation, I would definitely lack in efficiency.</p>
<p>And if my pocket dictionary's batteries failed... so help me.</p>
http://stackoverflow.com/questions/778074/how-can-i-define-a-variable-as-constant-when-retrieved-from-web-config0How can I define a variable as CONSTANT when retrieved from Web.Config?Atomiton2009-04-22T16:17:42Z2009-04-22T16:36:41Z
<p>I keep a lot of settings in AppSettings, and I was wondering if it's considered good practice to name them in UpperCase. Essentially, they're the same as Constants right? As I understand it, if you change the Web.Config, the app does a recompile.</p>
<p>So, I was thinking, should you keep the settings in AppSettings in UPPERCASE (Assuming you name your constants with all UPPER case.)</p>
<p>Also, should variables that get values from AppSettings be UPPERCASE?</p>
<p>EG.</p>
<pre><code>String MY_SETTING = ConfigurationManager.AppSettings["MY_SETTING"];
</code></pre>
<p>What is the best way to handle these and make them look and feel like Constants? Is it even a good idea? The only way I could think of would be make it readonly:</p>
<pre><code>readonly String MY_SETTING = ConfigurationManager.AppSettings["MY_SETTING"];
</code></pre>
<p>But then I don't know how you could do this with an int:</p>
<pre><code>readonly String MAX_USERS_S = ConfigurationManager.AppSettings["MAX_USERS"];
readonly int MAX_USERS; // needs to be set here... won't compile
int.TryParse(MAX_USERS_S, out MAX_USERS);
</code></pre>
<p>I somehow feel dirty setting readonly variables to look like constants, but to me, stuff in the web.config are essentially constant.</p>
<p>Suggestions?</p>
http://stackoverflow.com/questions/725367/need-help-in-filtering-out-some-vulnerablity-causing-characters-in-querystring/745346#7453460Answer by Atomiton for Need help in filtering out some vulnerablity causing characters in querystringAtomiton2009-04-13T20:48:14Z2009-04-13T20:48:14Z<p>I'm using URL Routing and I found this works well, pass each part of your URL to this function. It's more than you need as it converts characters like "&" to "and", but you can modify it to suit:</p>
<pre><code>public static string CleanUrl(this string urlpart) {
// convert accented characters to regular ones
string cleaned = urlpart.Trim().anglicized();
// do some pretty conversions
cleaned = Regex.Replace(cleaned, "&nbsp;", "-");
cleaned = Regex.Replace(cleaned, "#", "no.");
cleaned = Regex.Replace(cleaned, "&", "and");
cleaned = Regex.Replace(cleaned, "%", "percent");
cleaned = Regex.Replace(cleaned, "@", "at");
// strip all illegal characters like punctuation
cleaned = Regex.Replace(cleaned, "[^A-Za-z0-9- ]", "");
// convert spaces to dashes
cleaned = Regex.Replace(cleaned, " +", "-");
// If we're left with nothing after everything is stripped and cleaned
if (cleaned.Length == 0)
cleaned = "no-description";
// return lowercased string
return cleaned.ToLower();
}
// Convert accented characters to standardized ones
private static string anglicized(this string urlpart) {
string beforeConversion = "àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇ’ñ";
string afterConversion = "aAaAaAaAeEeEeEeEiIiIiIoOoOoOuUuUuUcC'n";
string cleaned = urlpart;
for (int i = 0; i < beforeConversion.Length; i++) {
cleaned = Regex.Replace(urlpart, afterConversion[i].ToString(), afterConversion[i].ToString());
}
return cleaned;
// Spanish : ÁÉÍÑÓÚÜ¡¿áéíñóúü"
}
</code></pre>
http://stackoverflow.com/questions/687134/can-i-define-default-sort-order-in-linq0Can I define Default Sort order in LinQAtomiton2009-03-26T19:02:50Z2009-03-26T19:51:39Z
<p>If I have a nested ListView, and I'm calling a related table in LinQ, how do I sort it, without resorting to the ItemDataBound event of the parent?</p>
<p>Pseudo Code (UPDATED WITH SOLUTION):</p>
<pre><code><asp:ListView ID="lv" runat="server" OnItemDataBound="lv_ItemDataBound" >
<LayoutTemplate>
<!-- Product Category Stuff -->
<asp:PlaceHolder Id="itemPlaceholder" runat="server"></asp:PlaceHolder>
</LayoutTemplate>
<ItemTemplate>
<asp:ListView ID="lvInner" runat="server" DataSource='<%# <%# ((Category)Container.DataItem).Products.OrderBy(p => p.Description) %> %>'>
<LayoutTemplate>
<ul>
<asp:PlaceHolder ID="itemPlaceholder" runat="server"></asp:PlaceHolder>
</ul>
</LayoutTemplate>
<ItemTemplate>
<li>Item Stuff</li>
</ItemTemplate>
</asp:ListView>
</ItemTemplate>
</asp:ListView>
</code></pre>
<p>Perhaps the method is deceptively simple, but I want the inner <strong>Products</strong> to be sorted by a field. I can't see a way to do it declaratively as LinQ creates this Query on the fly, if I'm not mistaken, and doesn't do sorting.</p>
<p>Any thoughts?</p>
<p><strong>UPDATE</strong></p>
<p>Updated the Example to the following:</p>
<pre><code><%# ((Category)Container.DataItem).Products.OrderBy(p => p.Description) %>
</code></pre>
<p>Hope it helps someone else!</p>
http://stackoverflow.com/questions/675474/can-i-number-a-grouptemplate-or-itemtemplate1Can I Number a GroupTemplate or ItemTemplate?Atomiton2009-03-23T22:31:01Z2009-03-25T18:39:40Z
<p>I would like to use a GroupTemplate to separate a list of items into groups. However, I need each Group to be numbered sequentially so I can link to them and implement some JS paging. I'm binding to an IEnumerable</p>
<p>Here's some pseudo code. I would like the output to look like this:</p>
<pre><code><a href="#group1">Go to Group 1<a>
<a href="#group2">Go to Group 2<a>
<a href="#group3">Go to Group 3<a>
<ul id="group1">
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>
<ul id="group2">
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>
<ul id="group3">
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>
</code></pre>
<p>Is this easy to do in a ListView, using GroupTemplate and ItemTemplate?</p>
<pre><code><asp:ListView ID="lv" runat="server" GroupPlaceholderID="groupPlaceholder">
<LayoutTemplate>
<asp:PlaceHolder ID="groupPlaceholder" runat="server"></asp:PlaceHolder>
</LayoutTemplate>
<GroupTemplate>
<ul id="<!-- group-n goes here -->">
<asp:PlaceHolder ID="itemPlaceholder" runat="server"></asp:PlaceHolder>
</ul>
</GroupTemplate>
<ItemTemplate>
<li>Item</li>
</ItemTemplate>
</asp:ListView>
</code></pre>
<p>I can get the number of groups to do the links at the top from the Datasource and basic math, but how do I get <strong>id="groupN"</strong> number into the template?</p>
http://stackoverflow.com/questions/674602/jquery-ui-or-ajaxcontroltoolkit/674827#6748270Answer by Atomiton for JQuery Ui or AjaxControlToolkit ?Atomiton2009-03-23T19:14:40Z2009-03-23T19:14:40Z<p>If you want to get more into the Javascript side of things jQuery will serve you better. If you prefer to code like you do on the server-side and aren't too familiar with JS, then MS AJAX is "easier"</p>
<p>However, I find myself using JQuery for the fancy stuff and MS Ajax when I want something quick and dirty. (And yes, I do feel dirty when I see the size of the MS AJAX library sometimes)</p>
http://stackoverflow.com/questions/628115/dynamically-changing-css-style-in-c/628135#6281355Answer by Atomiton for Dynamically changing css style in c#?Atomiton2009-03-09T21:39:57Z2009-03-10T19:01:20Z<p>Can I suggest an alternative approach?</p>
<p>Set a CSS Style:</p>
<pre><code>.selected { font-style: bold; }
</code></pre>
<p>When a link is clicked set that link's CSS class to "selected" and the others to "";</p>
<p><strong>EDIT: To accommodate for existing Css Class</strong></p>
<pre><code>const string MY_CLASS = "links";
lb1.CssClass = MY_CLASS + " selected"; // selected
lb.CssClass = MY_CLASS; // not selected
</code></pre>
<p>You can quickly get into trouble when defining inline styles, in that they're difficult to overwrite.</p>
<p><strong>EDIT 2:</strong></p>
<p>Something like this code should work. You may have to loop through all the LinkButtons in the list, but I don't think so. I'd just turn off ViewState on the LinkButtons.</p>
<pre><code>// container for links. so you can reference them
// outside of the creation method if you wish. I'd probably call this method in the
// Page_Init Event.
List<LinkButton> listOfLinks = new List<LinkButton>();
const string MY_LB_CLASS = "linkButton"; // generic lb class
private void createSomeLinks() {
for (int i = 0; i < 10; i++) {
// create 10 links.
LinkButton lb = new LinkButton()
{
ID = "lb" + i,
CssClass = MY_LB_CLASS
};
lb.Click += new EventHandler(lb_Click); // Add the click event
}
// You can bind the List of LinkButtons here, or do something with them.
}
void lb_Click(Object sender, EventArgs e) {
LinkButton lb = sender as LinkButton; // cast the sender as LinkButton
if (lb != null) {
// Make the link you clicked selected.
lb.CssClass = MY_LB_CLASS + " selected";
}
}
</code></pre>
http://stackoverflow.com/questions/278703/unique-ways-to-use-the-null-coalescing-operator6Unique ways to use the Null Coalescing operatorAtomiton2008-11-10T18:21:27Z2009-03-10T16:01:25Z
<p>I know the standard way of using the Null coalescing operator in C# is to set default values.</p>
<pre><code>string nobody = null;
string somebody = "Bob Saget";
string anybody = "";
anybody = nobody ?? "Mr. T"; // returns Mr. T
anybody = somebody ?? "Mr. T"; // returns "Bob Saget"
</code></pre>
<p>But what else can ?? be used for? It doesn't seem as useful as the ternary operator, apart from being more concise and easier to read than:</p>
<pre><code>nobody = null;
anybody = nobody == null ? "Bob Saget" : nobody; // returns Bob Saget
</code></pre>
<p>So given that fewer even know about null coalescing operator...</p>
<h3>Have you used ?? for something else?</h3>
<h3>Is ?? necessary, or should you just use the ternary operator (that most are familiar with)</h3>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/588184#5881840Answer by Atomiton for Computer Language puns and jokesAtomiton2009-02-25T22:19:44Z2009-02-27T00:15:53Z<h2>A couple of good ones for those that are into number systems:</h2>
<ul>
<li>If you feel the metric system is
confusing should try hex. The
Drinking age is 15 and you can get
married at 10.</li>
</ul>
<p>Or along similar lines:</p>
<p><strong>Q:</strong> How do you know your child will grow up to be a good programmer?</p>
<p><strong>A:</strong> His favorite game is Crazy 10's (base 8)</p>
<p><strong>Q</strong> Why don't you ever see a <strong>char</strong> or <strong>short</strong> at a buffet?</p>
<p><strong>A</strong> They're full after a couple of <strong>bytes</strong>.</p>
http://stackoverflow.com/questions/588030/link-to-open-jquery-accordion/588394#5883941Answer by Atomiton for Link to open jQuery AccordionAtomiton2009-02-25T23:27:25Z2009-02-25T23:27:25Z<p>The navigation option isn't for panel activation. It's for telling the user where they are. </p>
<p>Using simplified html code:</p>
<pre><code><div id="accordion">
<div>
<h2><a href="#services">Services</a></h2>
<p>More information about all of these services</p>
</div>
<div>
<h2><a href="#about">About</a></h2>
<p>About us</p>
</div>
</div>
</code></pre>
<p>You put the unique ID in the Hyperlink in the title</p>
<p>Then the jQuery (simplified):</p>
<pre><code><script type="text/javascript">
$(function(){
$("#accordion").accordion({ header: "h2", navigation: true });
});
</script>
</code></pre>
<p>The "navigation : true" will enable you to go www.site.com/#about which makes the "about" panel selected. For activation, there are a couple of ways. Perhaps one way is to grab a query string and put it into the jQuery.</p>
<p>With C#</p>
<pre><code>$("#accordion").accordion("activate", '<%= Request.QueryString["id"] %>');
</code></pre>
<p>With PHP</p>
<pre><code>$("#accordion").accordion("activate", '<?php echo $_GET['id']; ?>');
</code></pre>
<p>Which will allow you to specify which panel to open by www.site.com?id=2</p>
http://stackoverflow.com/questions/570801/programmatically-select-item-in-asp-net-listview2Programmatically Select Item in Asp.Net ListView Atomiton2009-02-20T18:51:03Z2009-02-21T00:54:57Z
<p>After doing a quick search I can't find the answer to this seemingly simple thing to do.</p>
<p><strong>How do I Manually Select An Item in an Asp.Net ListView?</strong> </p>
<p>I have a SelectedItemTemplate, but I don't want to use an asp:button or asp:LinkButton to select an item. I want it to be done from a URL. Like a QueryString, for example.</p>
<p>The way I imagine would be one ItemDataBound, checking a condition and then setting it to selected if true, but how do I do this?</p>
<p><strong>For example:</strong></p>
<pre><code>protected void lv_ItemDataBound(object sender, ListViewItemEventArgs e) {
using (ListViewDataItem dataItem = (ListViewDataItem)e.Item) {
if (dataItem != null) {
if( /* item select condition */ ) {
// What do I do here to Set this Item to be Selected?
// edit: Here's the solution I'm using :
((ListView)sender).SelectedIndex = dataItem.DisplayIndex;
// Note, I get here and it gets set
// but the SelectedItemTemplate isn't applied!!!
}
}
}
}
</code></pre>
<p>I'm sure it's one or two lines of code.</p>
<p><strong>EDIT:</strong> I've updated the code to reflect the solution, and it seems that I can select the ListView's SelectedItemIndex, however, it's not actually rendering the SelectedItemTemplate. I don't know if I should be doing this in the ItemDataBound event <strong>as suggested below</strong>.</p>
http://stackoverflow.com/questions/539075/c-loop-limited-to-50-passes/539089#53908916Answer by Atomiton for C# Loop limited to 50 passesAtomiton2009-02-11T22:18:05Z2009-02-11T22:59:11Z<p>Well, the foreach may not be the best solution, but if you must:</p>
<pre><code>int ctr = 0;
foreach (ListViewItem lvi in listView.Items) {
ctr++;
if (ctr == 50) break;
// do code here
}
</code></pre>
<p><strong>Note: a for loop is generally lighter than using a foreach to go through a collection.</strong> </p>
<p>Better to use a for loop:</p>
<pre><code>// loop through collection to a max of 50 or the number of items
for(int i = 0; i < listView.Items.Count && i < 50; i++){
listView.Items[i]; //access the current item
}
</code></pre>
http://stackoverflow.com/questions/489159/how-can-i-minimize-the-weight-of-my-asp-net-pages/530354#5303541Answer by Atomiton for How can I minimize the weight of my ASP.NET pages?Atomiton2009-02-09T22:29:28Z2009-02-09T22:29:28Z<p>Especially inside repeaters, ListViews and GridViews, name your controls something short.</p>
<p>This should be obvious by the Context (A list of Products)</p>
<p>If you have only one HyperLink inside a repeater, call it <strong>hl</strong>. You don't need to call these controls HyperLinkProduct.</p>
<pre><code><asp:Repeater id="rptProducts" runat="server">
<ItemTemplate>
<asp:HyperLink id="hl" runat="server" NavigateUrl='<%# Eval("URL") %>'>
<%# Eval("Name") %>
</asp:HyperLink>
<asp:Image id="img" runat="server" ImageUrl='<%# Eval("ImageUrl") %>' />
</ItemTemplate>
</asp:Repeater>
</code></pre>
<p>This will render something like:</p>
<pre><code><a id="ctl00_rptProducts_ctrl0_hl" href="/products.aspx?id=5">
Product Name
</a>
<img id="ctl00_rptProducts_ctrl0_img" src="images/5.png"/>
</code></pre>
<p>Multiply those ID names by a 100, and your IDs start to take up a lot more space if you use long descriptive names. Inside Repeaters, short IDs should be clear enough, if your Repeater is well-named.</p>
http://stackoverflow.com/questions/186657/enable-viewstate-for-few-controls-and-disable-for-others-page/530029#5300290Answer by Atomiton for Enable ViewState for few controls and disable for others/pageAtomiton2009-02-09T21:19:55Z2009-02-09T21:19:55Z<p>You could also inherit from a BasePage. On the BasePage disable ViewState.</p>
<pre><code>/// <summary>
/// All pages inherit this page
/// </summary>
public class BasePage : System.Web.UI.Page {
protected override void OnLoad(EventArgs e) {
base.OnLoad(e);
}
public bool ViewStateEnabled {
get {
return Page.EnableViewState;
}
set {
Page.EnableViewState = value;
}
}
public BasePage() {
// Disable ViewState By Default
ViewStateEnabled = false;
}
}
</code></pre>
<p>In each page that you want ViewState Enabled, you do the following in Page_Load:</p>
<pre><code>public partial class Products_Default : BasePage {
protected void Page_Load(object sender, EventArgs e) {
this.ViewStateEnabled = true;
}
}
</code></pre>
<p>This should enable ViewState just for that Page (assuming it's ON in the MasterPage). Note: You will need to individually set each control's ViewState on that Page.</p>
http://stackoverflow.com/questions/373106/best-way-for-multi-language-sites-virtual-directories0Best way for multi-language sites virtual DirectoriesAtomiton2008-12-16T23:13:23Z2009-02-09T20:50:13Z
<p>I have a site that will ultimately support 4 languages and 2 countries (US & Canada, English and Spanish)</p>
<p>I'm wondering what's the best way to set up the directory structure?</p>
<p>Right now, I have a root site called site.com: </p>
<p>This will take you to a page where you choose your country and language.</p>
<p>Ideally, I want to have the directory like so:</p>
<pre><code>site.com/ca/en/ (Canada English)
site.com/ca/fr/ (Canada French)
site.com/us/en/ (US English)
site.com/us/es/ (US Spanish)
</code></pre>
<p>But that will mean I will be putting a "ca" and a "us" virtual directory and language virtual directories inside that. IS that good practice, or should I do something like:</p>
<pre><code>site.com/ca-en/ (Canada English)
site.com/ca-fr/ (Canada French)
site.com/us-en/ (US English)
site.com/us-es/ (US Spanish)
</code></pre>
<p><strong>edit: I have done the following:</strong></p>
<p>There is a dummy directory: /ca/ and /us/ in the application. They both have a default.aspx which is just a redirect. In my case, I redirect them to their English language sites:</p>
<p>For example:
site.com/ca/ --> site.com/ca/en/
site.com/us/ --> site.com/us/en/</p>
<p>if site.com is entered, you are pushed to a language selection page. Basically, I use a regular expression in Global.asax on every request to look for the language/culture string.</p>
<p>This has the following benefits. Country separation. So you have control over site.com/ca/ or site.com/us/ and are able to provide a simple URL for each country.</p>
<p>Anyway, the Virtual directories /en/, /fr/ and /es/ are inside their respective country physical folders.</p>
<p>So you have the following (Virtual Dirs are in <strong>bold</strong>):</p>
<p>site.com/ca/<strong>en</strong>/ (default)
site.com/ca/<strong>fr</strong>/
site.com/us/<strong>en</strong>/ (default)
site.com/us/<strong>es</strong>/</p>
<p>What this means is that you need to have five (identical) applications, except you can use the URL to get the current language and country (and point it to the right database).</p>
http://stackoverflow.com/questions/1240915/how-to-add-one-click-unsubscribe-functionality-to-email-newletters/1240932#1240932Comment by Atomiton on How to add one-click unsubscribe functionality to email newletters?Atomiton2009-12-16T19:14:48Z2009-12-16T19:14:48ZHere's an example of using HMAC in C#: <a href="http://buchananweb.co.uk/security01.aspx" rel="nofollow">buchananweb.co.uk/security01.aspx</a>http://stackoverflow.com/questions/4783/interview-questions-for-an-intern/539771#539771Comment by Atomiton on Interview Questions for an InternAtomiton2009-12-04T15:33:32Z2009-12-04T15:33:32Za "red" "BLACKground"?
Ahhh... trick question :)http://stackoverflow.com/questions/756567/regular-expression-for-excluding-special-characters/756609#756609Comment by Atomiton on Regular expression for excluding special charactersAtomiton2009-09-30T16:57:38Z2009-09-30T16:57:38ZWhy not? There aren't that many accented letters. If you have to manage a separate list for each language, so be it.http://stackoverflow.com/questions/1363650/javascript-moving-element-in-the-dom/1363662#1363662Comment by Atomiton on JavaScript moving element in the DOMAtomiton2009-09-17T18:21:40Z2009-09-17T18:21:40ZThere was no mention of changing the DOM. Just to swap elements around visibly.http://stackoverflow.com/questions/1106772/change-the-link-on-a-sitemap-based-on-if-a-user-is-logged-in/1106790#1106790Comment by Atomiton on Change the link on a sitemap based on if a user is logged in?Atomiton2009-07-09T23:37:34Z2009-07-09T23:37:34ZSure, you should be able to set a rule to "Deny" access to logged in users.http://stackoverflow.com/questions/1106772/change-the-link-on-a-sitemap-based-on-if-a-user-is-logged-in/1106790#1106790Comment by Atomiton on Change the link on a sitemap based on if a user is logged in?Atomiton2009-07-09T22:48:58Z2009-07-09T22:48:58ZNot an example, but here's another approach:
<a href="http://forums.asp.net/p/1161879/1922913.aspx#1922913" rel="nofollow">forums.asp.net/p/1161879/…</a>http://stackoverflow.com/questions/240550/why-cant-programmers-speak-the-common-tongueComment by Atomiton on Why can't programmers speak the common tongue?Atomiton2009-07-09T22:30:47Z2009-07-09T22:30:47ZI agree. I think it's important for the community.http://stackoverflow.com/questions/958157/intelligent-searching-with-wildcards-and-word-grouping-in-sql-full-text-searc/1104970#1104970Comment by Atomiton on Intelligent Searching with wildcards (*) and word grouping in SQL Full-text SearchAtomiton2009-07-09T22:28:54Z2009-07-09T22:28:54ZWow! Fantastic Resource. Who voted your answer down?http://stackoverflow.com/questions/1015651/whats-the-famous-bing-running-on-asp-net-asp-net-mvc-iis-7-net-3-5Comment by Atomiton on What's the famous Bing running on? Asp.net, asp.net mvc, IIS 7, .net 3.5?Atomiton2009-06-18T23:11:11Z2009-06-18T23:11:11ZFamous? I don't think something is famous until it becomes a household name with your mother.http://stackoverflow.com/questions/978088/how-do-i-get-httpcompression-gzip-to-work-with-url-routing-extensionless-urlsComment by Atomiton on How do I get HttpCompression (GZip) to work with URL Routing (Extensionless URLs) on IIS 6.Atomiton2009-06-11T20:59:02Z2009-06-11T20:59:02ZWell, Http Compression only gets sent if the Browser requests it. If IE6 doesn't support it, then it won't send a header. And anyway, who seriously cares about IE6? :-) I do all my testing in FF3 and then make sure it doesn't look horrible in IE6. The Compression isn't happening on FF3... so the server isn't sending the compression.http://stackoverflow.com/questions/978088/how-do-i-get-httpcompression-gzip-to-work-with-url-routing-extensionless-urls/978883#978883Comment by Atomiton on How do I get HttpCompression (GZip) to work with URL Routing (Extensionless URLs) on IIS 6.Atomiton2009-06-11T20:56:51Z2009-06-11T20:56:51ZThanks for the httpZip Comment.http://stackoverflow.com/questions/953175/how-can-i-encode-quotation-marks-without-asp-net-complainingComment by Atomiton on How can I encode Quotation marks without Asp.Net complaining?Atomiton2009-06-05T20:33:19Z2009-06-05T20:33:19ZNo. It's actually an "Illegal characters in Path" error. The solution, i have discovered is to turn my search results into a query String. So, the URL will look like www.site.com/search/results?q=%22Vitamin+C%22http://stackoverflow.com/questions/953175/how-can-i-encode-quotation-marks-without-asp-net-complaining/953379#953379Comment by Atomiton on How can I encode Quotation marks without Asp.Net complaining?Atomiton2009-06-05T20:31:35Z2009-06-05T20:31:35ZThanks! I found an example of search implemented here: <a href="http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx" rel="nofollow">weblogs.asp.net/scottgu/archive/…</a>http://stackoverflow.com/questions/953175/how-can-i-encode-quotation-marks-without-asp-net-complaining/954444#954444Comment by Atomiton on How can I encode Quotation marks without Asp.Net complaining?Atomiton2009-06-05T18:52:24Z2009-06-05T18:52:24ZYeah, I am using that method. That's why I'm perplexed. Because I'm using Routing, ASP.Net doesn't like "Quotes" in the path. http://stackoverflow.com/questions/953116/asp-net-based-wiki/953126#953126Comment by Atomiton on ASP.NET based wikiAtomiton2009-06-04T21:22:41Z2009-06-04T21:22:41Z+1. Great Wiki Engine.