User Keltex - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T15:42:02Zhttp://stackoverflow.com/feeds/user/28260http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1771806/do-the-nerd-dinner-models-use-best-practices-for-disposing-objects2Do the Nerd Dinner models use best practices for disposing objects?Keltex2009-11-20T16:56:40Z2009-11-20T17:02:17Z
<p>I've been looking at the <a href="http://nerddinner.codeplex.com/" rel="nofollow">Nerd Dinner</a> code and one thing they do in their models, is create an instance of the DataContext like this:</p>
<pre><code>public class DinnerRepository {
private NerdDinnerDataContext db = new NerdDinnerDataContext();
public IQueryable<Dinner> FindUpcomingDinners() {
return from dinner in db.Dinners
where dinner.EventDate > DateTime.Now
orderby dinner.EventDate
select dinner;
}
// more methods below
}
</code></pre>
<p>These are used in the controllers like this:</p>
<pre><code>public class DinnersController : Controller {
DinnerRepository dinnerRepository = new DinnerRepository();
public ActionResult Index() {
var dinners = dinnerRepository.FindUpcomingDinners().ToList();
return View("Index", dinners);
}
}
</code></pre>
<p>But it doesn't seem that NerdDinnerDataContext ever gets disposed. Is this a problem that I should worry about? Or is this pattern OK?</p>
<p><em>Note: not the latest Nerd Dinner code, I know</em> </p>
http://stackoverflow.com/questions/1652496/should-i-encode-flash-videos-using-cbr-or-vbr-for-streaming0Should I encode flash videos using cbr or vbr for streaming?Keltex2009-10-30T21:44:17Z2009-11-01T04:04:23Z
<p>We are going to be hosting some videos that will be streamed (not progressive download). Which is recommended? CBR (constant bit rate) or VBR (variable bit rate) encoding? </p>
http://stackoverflow.com/questions/813793/screwturn-wiki-and-custom-asp-net-membership-provider1ScrewTurn wiki and custom asp.net membership providerKeltex2009-05-02T00:20:15Z2009-10-30T22:16:18Z
<p>I'm thinking of implementing the <a href="http://www.screwturn.eu/" rel="nofollow">Screwturn Wiki</a> for documenting the administration area of a website. I would like to use the existing custom asp.net membership provider so that access to the wiki is seamless. So it would look something like this:</p>
<ul>
<li><code>http://www.example.com/admin</code> - Existing administrative area</li>
<li><code>http://www.example.com/admin/wiki</code> - Wiki</li>
</ul>
<p>There's a plugin called <a href="http://stcez06.kiwipad.com/Default.aspx?Page=HTTPUserProviderPlugin&AspxAutoDetectCookieSupport=1" rel="nofollow">HTTPUserProvider Plugin</a> which allows you to authenticate on another webserver through a web request, but this seems like kind of a hack.</p>
<p>Anybody have experience with this scenario?</p>
http://stackoverflow.com/questions/813793/screwturn-wiki-and-custom-asp-net-membership-provider/1652607#16526070Answer by Keltex for ScrewTurn wiki and custom asp.net membership providerKeltex2009-10-30T22:16:18Z2009-10-30T22:16:18Z<p>They have one now:</p>
<p><a href="http://www.screwturn.eu/Customize.UsersPluginsV2.ashx#ASPNet%5FMembership%5FUser%5FProvider%5F33" rel="nofollow">http://www.screwturn.eu/Customize.UsersPluginsV2.ashx#ASPNet_Membership_User_Provider_33</a></p>
http://stackoverflow.com/questions/1498498/windows-service-that-runs-periodically/1498609#14986091Answer by Keltex for Windows Service that runs PeriodicallyKeltex2009-09-30T14:50:10Z2009-09-30T14:50:10Z<p>Blog.StackOverflow.com has an interesting article on using cache expiration to handle periodic tasks:</p>
<p><a href="http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/" rel="nofollow">http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/</a></p>
http://stackoverflow.com/questions/1394346/how-to-display-image-on-linkbutton-to-look-attractive-in-asp-net/1394401#13944010Answer by Keltex for How to Display image on Linkbutton to look attractive in asp.netKeltex2009-09-08T14:40:40Z2009-09-08T14:40:40Z<p>Why not use <code>ImageButton</code>?</p>
http://stackoverflow.com/questions/1353824/no-login-error-text-for-role-based-authentication-in-asp-net/1353859#13538592Answer by Keltex for No login error text for role based authentication in ASP.NETKeltex2009-08-30T13:23:36Z2009-08-30T13:23:36Z<p>On thing you can do is check the ReturnUrl query string parameter and if it's you "denied" folder, redirect the user to either an error page or an allowed login page. Like this:</p>
<pre><code>protected void frmLogin_LoggedIn(object sender, EventArgs e)
{
if (!User.IsInRole("AllowedRole") &&
InRestrictedArea(Request.QueryString["ReturnUrl"]))
{
Response.Redirect("Not-Allowed-Here.aspx");
}
}
</code></pre>
<p>Define <code>InRestrictedArea</code> to check if the requested area is where they aren't allowed.</p>
http://stackoverflow.com/questions/1352461/is-there-a-good-way-to-store-enums-from-the-database/1352549#13525492Answer by Keltex for Is there a good way to store enums from the database?Keltex2009-08-29T22:26:03Z2009-08-29T22:26:03Z<p>Use the <code>Cache</code> object and store the database results in the cache.</p>
http://stackoverflow.com/questions/956458/how-do-i-setup-iis-with-a-cookieless-domain-to-improve-performance4How do I setup IIS with a cookieless domain to improve performance?Keltex2009-06-05T15:22:48Z2009-08-26T18:14:20Z
<p>I was reading in google's documentation their new <a href="http://code.google.com/speed/page-speed/docs/using.html" rel="nofollow">pagespeed</a> plugin, that they recommend using <a href="http://code.google.com/speed/page-speed/docs/request.html#ServeFromCookielessDomain" rel="nofollow">cookieless domains</a> to improve performance:</p>
<blockquote>
<p>Static content, such as images, JS and CSS files, don't need to be accompanied by cookies, as there is no user interaction with these resources. You can decrease request latency by serving static resources from a domain that doesn't serve cookies. </p>
</blockquote>
<p>Does anybody know how to do this in IIS?</p>
http://stackoverflow.com/questions/1313725/how-can-i-do-an-if-statement-inside-a-repeater/1313764#13137641Answer by Keltex for How can i do an if statement inside a repeaterKeltex2009-08-21T19:17:17Z2009-08-21T19:17:17Z<p>You could do this with user controls:</p>
<pre><code><ItemTemplate>
<uc:Content1 runat='server' id='content1' visible='<%# Container.DataItem("property") == "test" %>'/>
<uc:Content2 runat='server' id='content2' visible='<%# Container.DataItem("property") != "test" %>'/>
</ItemTemplate>
</code></pre>
http://stackoverflow.com/questions/1311850/continuous-string-not-getting-wrapped-in-td/1311905#13119050Answer by Keltex for Continuous string not getting wrapped in tdKeltex2009-08-21T13:19:53Z2009-08-21T13:19:53Z<p>Use the <a href="http://www.quirksmode.org/oddsandends/wbr.html" rel="nofollow"><code><wbr></code></a> tag in your text every few characters (20? 30? you'll need to experiment). This will allow breaks in your text without spaces. Like this:</p>
<pre><code><td>LongLongLong<wbr>TextTextText</td>
</code></pre>
<p>This will be all strung together unless a break is needed.</p>
http://stackoverflow.com/questions/1300951/start-learning-c-without-knowing-c/1300982#13009822Answer by Keltex for Start learning C# without knowing C ?Keltex2009-08-19T16:05:50Z2009-08-19T16:05:50Z<p>My question would be are you trying to <em>choose a first language to learn programming?</em> (C# being an option) or do you know another language and think you might need to learn C before C#?</p>
<p>If you aren't trying to learn programming, then I would say you can skip C and go straight to C#. But for a first language, I would advise neither. Try for a scripting language that you can really writing code quickly. </p>
http://stackoverflow.com/questions/1300492/dropdownlist-results-in-gridview/1300543#13005430Answer by Keltex for Dropdownlist results in gridviewKeltex2009-08-19T15:03:41Z2009-08-19T15:03:41Z<p>What about binding the Visible attribute to <code>Page.IsPostBack</code> (note this is in C# since I'm not familiar with the syntax for VB.NET... I'm sure something similar would work):</p>
<pre><code><ItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlAnswer"
DataTextField="torf" DataValueField="torf" Visible='<%# !Page.IsPostBack %/>></asp:DropDownList>
<asp:Label ID="Label1" runat="server" Text="" Visible='<%# Page.IsPostBack %/></asp:Label>
</ItemTemplate>
</code></pre>
http://stackoverflow.com/questions/1294387/how-to-do-opacity-for-text/1294413#12944132Answer by Keltex for How to do opacity for Text?Keltex2009-08-18T14:54:18Z2009-08-18T14:54:18Z<p>Opacity is a CSS 3 propery. It's expressed from 0 - 1.0. So 50% opacity would be like this:</p>
<pre><code>.xxx {
opacity: 0.5;
}
</code></pre>
<p>It's also not supported in many browsers (IE 6 & IE 7), but there are some workarounds. Examples here: <a href="http://webdesign.about.com/od/css3/a/aa121306.htm" rel="nofollow">http://webdesign.about.com/od/css3/a/aa121306.htm</a></p>
http://stackoverflow.com/questions/1279416/why-my-httpwebrequest-post-to-myhandler-ashx-is-rejected-with-status-code-401/1279480#12794800Answer by Keltex for Why my httpwebrequest post to myhandler.ashx is rejected with status code 401Keltex2009-08-14T18:39:36Z2009-08-14T18:39:36Z<p>Looking at your ProcessRequest(), you do the following:</p>
<pre><code>string returnURL = context.Request.ServerVariables["HTTP_REFERER"];
</code></pre>
<p>Based on how you are calling it with <code>HttpWebRequest</code>, this variable will be null. Then when you create your msgReturn, it will look something like this:</p>
<pre><code>?n=XXX%m=YYY
</code></pre>
<p>When you redirect to this URL, it will probably not be found which is what is returning the 401.</p>
http://stackoverflow.com/questions/1272592/running-net-2-0-3-5-web-sites-in-iis-7/1272598#12725985Answer by Keltex for Running .NET 2.0 & 3.5 web sites in IIS 7Keltex2009-08-13T15:11:56Z2009-08-13T15:11:56Z<p>If it's set to run .NET 2.0, it will run .NET 3.5. There is no separate setting for .NET 3.5.</p>
http://stackoverflow.com/questions/1257897/equation-string-in-vb-net/1257930#12579301Answer by Keltex for equation string in vb .netKeltex2009-08-11T00:25:56Z2009-08-11T00:25:56Z<p>Somebody's already done this (including source code):</p>
<blockquote>
<p><a href="http://community.bartdesmet.net/blogs/bart/archive/2006/10/11/4513.aspx" rel="nofollow">http://community.bartdesmet.net/blogs/bart/archive/2006/10/11/4513.aspx</a></p>
</blockquote>
http://stackoverflow.com/questions/1252706/security-when-specifying-users-in-web-config/1252718#12527181Answer by Keltex for Security when specifying users in web.configKeltex2009-08-10T00:51:00Z2009-08-10T00:51:00Z<p>I think it's fine for little simple sites. But I would certainly encrypt the passwords, like this:</p>
<pre><code><credentials passwordFormat = "SHA1">
<user name="UserName1" password="SHA1EncryptedPassword1"/>
<user name="UserName2" password="SHA1EncryptedPassword2"/>
<user name="UserName3" password="SHA1EncryptedPassword3"/>
</credentials>
</code></pre>
<p>More information on this here: <a href="http://msdn.microsoft.com/en-us/library/e01fc50a.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/e01fc50a.aspx</a></p>
http://stackoverflow.com/questions/1245773/asp-net-object-caching-how-much-is-too-much/1245779#12457791Answer by Keltex for ASP.NET object caching - how much is too much?Keltex2009-08-07T16:38:26Z2009-08-07T16:38:26Z<p>1) I would cache them. You can always set <code>CacheItemPriority.Low</code> if you are worrying about the cache 'filling up'</p>
<p>2) Yes the cache is designed to be accessed regularly. It can lead to huge performance improvements.</p>
http://stackoverflow.com/questions/1223933/bust-iframes-accurately-when-implementing-diggbar-or-facebookbar/1223980#12239801Answer by Keltex for Bust iFrames accurately when implementing DiggBar or FacebookBar?Keltex2009-08-03T18:49:20Z2009-08-03T18:49:20Z<p>You can't. Because of browser cross site-scripting security, your bar which sits in its own frame cannot access any other frames and determine their URLs.</p>
http://stackoverflow.com/questions/1223654/can-i-display-a-pdf-but-not-allow-linking-to-it-in-a-website/1223677#12236775Answer by Keltex for Can I display a PDF, but not allow linking to it in a website?Keltex2009-08-03T17:50:46Z2009-08-03T17:50:46Z<p>To load a PDF file from the disk into a buffer:</p>
<pre><code>byte [] buffer;
using(FileStream fileStream = new FileStream(Filename, FileMode.Open))
{
using (BinaryReader reader = new BinaryReader(fileStream))
{
buffer = reader.ReadBytes((int)reader.BaseStream.Length);
}
}
</code></pre>
<p>Then you can create your <code>MemoryStream</code> like this:</p>
<pre><code>using (MemoryStream msReader = new MemoryStream(buffer, false))
{
// your code here.
}
</code></pre>
<p>But if you already have your data in memory, you don't need the <code>MemoryStream</code>. Instead do this:</p>
<pre><code> Response.ContentType = "application/pdf";
Response.AddHeader("Content-Length", buffer.Length.ToString());
Response.BinaryWrite(buffer);
//End the response
Response.End();
streamDoc.Close();
</code></pre>
http://stackoverflow.com/questions/1219759/crop-a-picture-in-c-with-the-use-of-rectangle-box/1219799#12197990Answer by Keltex for Crop a picture in C# with the use of rectangle boxKeltex2009-08-02T20:45:28Z2009-08-02T20:45:28Z<p>(My answer assumes a web application using ASP.NET):</p>
<p>You probably needs some javascript library to get the dimensions of the pic to crop. This jQuery plugin will do the trick:</p>
<blockquote>
<p><a href="http://www.webresourcesdepot.com/jquery-image-crop-plugin-jcrop/" rel="nofollow">http://www.webresourcesdepot.com/jquery-image-crop-plugin-jcrop/</a></p>
</blockquote>
<p>Then here's an article on Stack Overflow that shows how to crop the image:</p>
<blockquote>
<p><a href="http://stackoverflow.com/questions/734930/how-to-crop-an-image-using-c">http://stackoverflow.com/questions/734930/how-to-crop-an-image-using-c</a></p>
</blockquote>
http://stackoverflow.com/questions/1197444/how-to-get-a-google-map-to-use-100-of-its-parent-container/1197476#11974761Answer by Keltex for How to get a google map to use 100% of its parent container?Keltex2009-07-29T00:25:51Z2009-07-29T00:25:51Z<p><a href="http://code.google.com/apis/maps/documentation/introduction.html" rel="nofollow">Google says</a>:</p>
<blockquote>
<p>Unless you specify a size explicitly for the map using GMapOptions in the constructor, the map implicitly uses the size of the container to size itself.</p>
</blockquote>
<p>So set the size of your map container fill all available space:</p>
<pre><code><div id="map2" style="width: 100%; height: 100%"></div>
</code></pre>
http://stackoverflow.com/questions/1190924/how-to-create-overlapping-header-content-like-facebooks/1190985#11909853Answer by Keltex for How to create overlapping header/content like Facebook'sKeltex2009-07-27T22:18:53Z2009-07-27T22:18:53Z<p>I suggest that you use <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> to look at their html / css markup.</p>
http://stackoverflow.com/questions/1190338/validate-a-gridview/1190347#11903475Answer by Keltex for Validate a Gridview Keltex2009-07-27T20:09:39Z2009-07-27T20:14:43Z<p>You best bet is to convert the <code>BoundField</code> into a <code>TemplateField</code> and add the validation control to the <code>EditItemTemplate</code>. So your first column would become:</p>
<pre><code><asp:TemplateField HeaderText="Application" SortExpression="APPName">
<EditItemTemplate>
<asp:TextBox ID="txtApp" runat="server" Text='<%# Bind("APPName") %>'/>
<asp:RequiredFieldValidator runat='server' ID='requiredApp'
ErrorMessage='Application Name Cannot Be Empty' ControlToValidate='txtApp' />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="labelApp" runat="server" Text='<%# Bind("APPName") %>'/>
</ItemTemplate>
</asp:TemplateField>
</code></pre>
http://stackoverflow.com/questions/1185560/httpmodule-httpapplication-testing-whether-url-is-a-request-for-a-file/1185738#11857380Answer by Keltex for HttpModule/HttpApplication testing whether url is a request for a fileKeltex2009-07-26T22:29:40Z2009-07-26T22:29:40Z<p>Try this:</p>
<pre><code>// get the URI
Uri MyUrl = Request.Url;
// remove path because System.IO.Path doesn't like forward slashes
string Filename = MyUrl.Segments[MyUrl.Segments.Length-1];
// Extract the extension
string Extension = System.IO.Path.GetExtension(Filename);
</code></pre>
<p>Note that <code>Extension</code> will always have the leading '.'. e.g. '.css' or '.js'</p>
http://stackoverflow.com/questions/1184720/can-i-programmatically-view-the-managed-heap-contents-from-a-net-app/1184817#11848170Answer by Keltex for Can I programmatically view the managed heap contents from a .net app?Keltex2009-07-26T15:17:40Z2009-07-26T15:17:40Z<p>You can use the CLR Profiler to see this information:</p>
<blockquote>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=86ce6052-d7f4-4aeb-9b7a-94635beebdda&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=86ce6052-d7f4-4aeb-9b7a-94635beebdda&displaylang=en</a></p>
</blockquote>
http://stackoverflow.com/questions/1182614/drawing-family-trees-with-wpf/1182652#11826523Answer by Keltex for Drawing family trees with WPFKeltex2009-07-25T18:12:15Z2009-07-25T18:12:15Z<p>Check out Family.Show:</p>
<blockquote>
<p><a href="http://www.vertigo.com/familyshow.aspx" rel="nofollow">http://www.vertigo.com/familyshow.aspx</a></p>
</blockquote>
http://stackoverflow.com/questions/1182333/css-how-to-view-computed-font-size/1182367#11823671Answer by Keltex for CSS - How to view computed font size?Keltex2009-07-25T15:58:19Z2009-07-25T15:58:19Z<p>This conversion table between points, pixes, ems and percent isn't 100% accurate, but I've found it to be useful:</p>
<p><a href="http://sureshjain.wordpress.com/2007/07/06/53/" rel="nofollow">http://sureshjain.wordpress.com/2007/07/06/53/</a></p>
http://stackoverflow.com/questions/1182251/auto-converting-numbers-to-comma-fied-versions/1182277#11822774Answer by Keltex for Auto-converting numbers to comma-fied versionsKeltex2009-07-25T15:08:42Z2009-07-25T15:51:03Z<p>Why not (inside your delegate):</p>
<pre><code>CultureInfo ci = new CultureInfo("en-US");
string output = int.Parse(match.Value).ToString("N0",ci);
</code></pre>
<p>Translation:</p>
<ol>
<li>Convert to int (or long if need be)</li>
<li>Use .net Numeric Format to properly insert commas</li>
</ol>
http://stackoverflow.com/questions/1190809/how-do-i-run-my-sql-script-file-through-ado-net/1190832#1190832Comment by Keltex on How do I run my .sql script file through ADO.NET?Keltex2009-11-21T16:13:08Z2009-11-21T16:13:08ZYou should wrap the SqlConnection declaration in a in using()http://stackoverflow.com/questions/1394810/bind-sqldatareader-to-repeater-good-practiceComment by Keltex on Bind SqlDataReader to Repeater. Good practice?Keltex2009-09-08T16:04:57Z2009-09-08T16:04:57ZYou don't need the catch and re-throw block. The finally will take care of it. Or the using by Andrew Harehttp://stackoverflow.com/questions/1279416/why-my-httpwebrequest-post-to-myhandler-ashx-is-rejected-with-status-code-401/1279480#1279480Comment by Keltex on Why my httpwebrequest post to myhandler.ashx is rejected with status code 401Keltex2009-08-14T18:47:19Z2009-08-14T18:47:19ZWhat happens when you remove context.Response.Redirect(msgReturn.ToString());?http://stackoverflow.com/questions/1261436/stop-asp-net-from-recycling-app-pool-due-to-changes-to-the-binComment by Keltex on Stop ASP.Net from recycling app pool due to "changes to the bin"Keltex2009-08-11T16:21:27Z2009-08-11T16:21:27ZWhat makes you think this is the cause if nothing in /bin has changed?http://stackoverflow.com/questions/1218822/dropdownlist-crashes-in-thickboxComment by Keltex on DropDownList crashes in ThickboxKeltex2009-08-02T14:33:13Z2009-08-02T14:33:13ZSome code would be helpful.http://stackoverflow.com/questions/901227/can-you-recommend-an-effective-and-cheap-cdn-for-video-streaming/943588#943588Comment by Keltex on Can you recommend an effective and cheap CDN for video streaming?Keltex2009-07-30T19:40:38Z2009-07-30T19:40:38ZI just started playing with these guys. So far it's working quite nicely.http://stackoverflow.com/questions/1197444/how-to-get-a-google-map-to-use-100-of-its-parent-container/1197476#1197476Comment by Keltex on How to get a google map to use 100% of its parent container?Keltex2009-07-29T19:21:01Z2009-07-29T19:21:01Z@Alex... you're right. Just put in there for clarity.http://stackoverflow.com/questions/1184735/how-to-used-control-key-in-cComment by Keltex on How to used control Key in c#Keltex2009-07-26T15:11:35Z2009-07-26T15:11:35Zwinforms? asp.net?http://stackoverflow.com/questions/1182362/formating-datetime-column-in-a-datasetComment by Keltex on formating datetime column in a DataSet.Keltex2009-07-25T15:59:59Z2009-07-25T15:59:59ZIs the column a text column or a DateTime column?http://stackoverflow.com/questions/1182251/auto-converting-numbers-to-comma-fied-versions/1182277#1182277Comment by Keltex on Auto-converting numbers to comma-fied versionsKeltex2009-07-25T15:52:13Z2009-07-25T15:52:13Z@maciejkow I incorporated your suggestion.http://stackoverflow.com/questions/1174991/how-do-i-hide-the-username-password-prompt-that-appears-when-a-webmethod-gets-c/1175187#1175187Comment by Keltex on How do I hide the username/password prompt that appears when a [WebMethod] gets called on an invalid session?Keltex2009-07-24T15:24:55Z2009-07-24T15:24:55Z@DDaviesBrackett I wonder if you want to dig into the asp.net source code.http://stackoverflow.com/questions/1168250/whats-the-fastest-way-to-load-a-text-or-ntext-sql-server-columnComment by Keltex on What's the fastest way to load a text or ntext SQL Server column?Keltex2009-07-22T21:20:32Z2009-07-22T21:20:32ZYes. It's the primary key.http://stackoverflow.com/questions/1168250/whats-the-fastest-way-to-load-a-text-or-ntext-sql-server-column/1168266#1168266Comment by Keltex on What's the fastest way to load a text or ntext SQL Server column?Keltex2009-07-22T21:09:55Z2009-07-22T21:09:55ZIt's using the primary key, which is indexed.http://stackoverflow.com/questions/1131981/in-c-net-is-there-a-reason-for-no-copy-constructor-for-stringdictionary/1131999#1131999Comment by Keltex on In C# .NET, is there a reason for no copy constructor for StringDictionary?Keltex2009-07-15T15:09:42Z2009-07-15T15:09:42ZI think he's saying that the generic type DOES have this sort of constructor, but the old specialized dictionary does not.http://stackoverflow.com/questions/1128746/how-do-i-find-the-client-id-of-control-within-an-asp-net-gridview/1128748#1128748Comment by Keltex on How do I find the Client ID of control within an ASP.NET GridView?Keltex2009-07-15T14:35:34Z2009-07-15T14:35:34Zup voted because it works, but I prefer Chris's answer because it's not done in code-behind.