User Cerebrus - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T04:18:50Z http://stackoverflow.com/feeds/user/53718 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/532341/what-do-team-leaders-do 13 What do Team Leaders do? Cerebrus 2009-02-10T13:35:35Z 2009-11-03T09:05:29Z <p>It's been a while since I've taken over the responsibility of leading my team and I'm probably doing a reasonable job at it. However, I get the feeling that I am not getting enough exposure to the real-world responsibilities and activities that Team Leaders engage in. On the other hand, it might be I am doing much more than an average Team Leader is expected to do! Other TL's I work with only seem to engage actively in development. Either way, I have no yardstick to compare with and my searches have not revealed anything concrete.</p> <p>Therefore, I am really interested in learning about the activities that you as a Lead or your Team Leaders are involved in, on a daily basis. Specifically, regarding the following points :</p> <ul> <li>What activities form an integral part of a Team Leader's average workday? (Programming, Task delegation, Reporting, Bug management, etc.)</li> <li>What tools/software form a part of a Team Leader's essential toolkit? (MS Project, Excel, TFS, etc.) Note: I have already read <a href="http://stackoverflow.com/questions/94481/what-tools-are-available-for-a-team-leader-members-to-manage-tasks-agile-progra">What tools are available to a Team leader...</a></li> <li>What kind of reports does a Team Leader submit to the Project Leader or Manager?</li> <li>What aspects of the initial designing/architecting/engineering the application is a Team Leader expected to be involved in?</li> <li>Are all or most Team Leaders actively involved in Object or Data modeling and designing Product Workflows?</li> <li>What aspects of a Project Manager's job should a Team Leader be involved in... for instance, resource management using Gantt charts?</li> </ul> <p>I would greatly appreciate specific answers. EDIT: <strong>I would like to emphasize that I am not asking about the characteristics of a good Team Leader.</strong></p> <p>Thanks in advance for your insight!</p> http://stackoverflow.com/questions/1661197/valid-characters-for-javascript-variable-names/1661231#1661231 0 Answer by Cerebrus for Valid Characters for JavaScript Variable Names Cerebrus 2009-11-02T13:09:24Z 2009-11-02T13:09:24Z <p>How about this article at <a href="http://www.codelifter.com/main/tips/tip%5F020.shtml" rel="nofollow">CodeLifter.com</a> ?</p> http://stackoverflow.com/questions/1398108/how-do-i-format-a-datetime-in-c/1398182#1398182 2 Answer by Cerebrus for How do I format a DateTime? in c#? Cerebrus 2009-09-09T07:55:42Z 2009-09-09T07:55:42Z <p><em>Ah! <code>DateTime</code> questions... everyone's favourite!! ;-)</em></p> <p>The only relevant point to this question is that as @x2 mentioned in the comments, a DateTime (nullable or otherwise) is stored as a number of ticks. What you see in the Watch window is just a abstraction of that value into a human readable date and time component.</p> <p>Why would you want to store a DateTime object as formatted ? Wouldn't that defeat the purpose of having a DateTime variable ? "Formatting", by definition means conversion to a string. This means creation of a separate string variable which holds the Datetime value formatted as per your requirement. In one of the comments, you say you need to work with this variable... why not create a formatted string variable from this source DateTime variable, instead.</p> http://stackoverflow.com/questions/1398069/getting-image-from-a-picturebox/1398146#1398146 1 Answer by Cerebrus for getting image from a picturebox Cerebrus 2009-09-09T07:44:29Z 2009-09-09T07:44:29Z <p>There appears to be nothing intrinsically wrong with your code (unless the problem is with one of the parameters). <code>PictureBox.Image.Save()</code> does work!</p> <p>It is possible that the PictureBox displays an image, but the <code>Image</code> object referenced by it is already disposed. You can get rid of the Object reference error by implementing a check for nullability first :</p> <pre><code>If picturebox1.Image isnot Nothing Then ... End If </code></pre> <p>In addition, you should check the code that draws the Image... does it dispose of references as expected ?</p> http://stackoverflow.com/questions/1277665/do-not-fill-dropdownlist-if-upstanding-usercontrol-isnt-visible/1277775#1277775 2 Answer by Cerebrus for Do not fill DropDownList if upstanding UserControl isn't visible Cerebrus 2009-08-14T13:12:54Z 2009-08-14T13:12:54Z <p>Try making the loading of the usercontrols imperative in nature (as demonstrated by @Dante) instead of declarative (by registering it in the ASPX, for instance). That way, only that control which is explicitly loaded should invoke it's respective Datasource controls).</p> http://stackoverflow.com/questions/1277682/best-practices-for-handling-error-strings/1277760#1277760 0 Answer by Cerebrus for Best Practices for handling Error Strings Cerebrus 2009-08-14T13:09:03Z 2009-08-14T13:09:03Z <p>I would use an enumerated list of Error codes, instead. Relying on string comparison is very prone to pitfalls (such as case sensitivity, multi-lingual issues, etc).</p> <p>I was about to post an example <code>enum</code> (almost identical to the one @John posted), but his example seems sufficient.</p> http://stackoverflow.com/questions/1264451/are-there-any-resources-online-which-will-walk-me-through-the-construction-of-an/1264484#1264484 1 Answer by Cerebrus for Are there any resources online which will walk me through the construction of an application built in C#? Cerebrus 2009-08-12T06:20:21Z 2009-08-12T06:20:21Z <p>During my early efforts at .NET, I used to find the tutorials at <a href="http://www.functionx.com" rel="nofollow">http://www.functionx.com</a> profoundly helpful because they present concepts by building small applications or projects that mimic real-world scenarios. Sounds like exactly what you need.</p> <p>They don't have tutorials on the latest language features (C# 3.5, for instance), but I think you can easily progress from beginner to intermediate level by walking through all the projects. The tutorials are directed at beginners so you should have no problem in comprehension.</p> http://stackoverflow.com/questions/1264457/how-to-create-setup-for-any-exe/1264471#1264471 0 Answer by Cerebrus for How to create setup for any exe ? Cerebrus 2009-08-12T06:15:58Z 2009-08-12T06:15:58Z <p><a href="http://geekswithblogs.net/shahed/archive/2006/08/03/86985.aspx" rel="nofollow">This blog post</a> lists a few useful links to info about Setup and Deployment projects using Visual Studio.</p> <p>You could also google with the keywords ".net deployment project".</p> http://stackoverflow.com/questions/1253231/datagridview-in-c/1253251#1253251 1 Answer by Cerebrus for datagridview in c# Cerebrus 2009-08-10T05:38:37Z 2009-08-10T05:38:37Z <p>What you really need is to read a few tutorials on the subject... Try googling for something like "DataGridView update C#".</p> <p>Here are two I found:</p> <p><a href="http://www.switchonthecode.com/tutorials/csharp-tutorial-binding-a-datagridview-to-a-database" rel="nofollow">SwitchOntheCode.com</a><br /> <a href="http://en.csharp-online.net/Working%5Fwith%5FData%E2%80%94Using%5Fthe%5FDataGridView" rel="nofollow">csharp-online.net</a></p> http://stackoverflow.com/questions/1237252/how-can-i-check-whether-dns-error-occurred-after-getting-webexception/1237396#1237396 2 Answer by Cerebrus for How can I check whether DNS error occurred after getting WebException Cerebrus 2009-08-06T07:24:25Z 2009-08-06T07:24:25Z <p>Instead of relying (ever!) on the response message received, I would rely on the <a href="http://msdn.microsoft.com/en-us/library/system.net.httpstatuscode.aspx" rel="nofollow">StatusCode</a> of the WebResponse received. An HTTP status code in the range <code>4xx (400-499)</code> would be indicative of DNS issues or errors in locating the resource.</p> http://stackoverflow.com/questions/1216308/can-somebody-help-me-modifying-an-open-source-software-keepass/1216319#1216319 3 Answer by Cerebrus for Can somebody help me modifying an open-source software (KeePass)? Cerebrus 2009-08-01T10:21:21Z 2009-08-01T10:21:21Z <p>I do use KeePass 2.x to store all my credentials. Haven't had a chance to look at the source code, though.</p> <p>I think your question would be more suitable when asked in the <a href="http://sourceforge.net/forum/?group%5Fid=95013" rel="nofollow">KeePass forums</a>. Maybe they're already working on a fix ? You might be also able to contribute to the development of the program.</p> http://stackoverflow.com/questions/1199278/post-back-response-from-php-to-javascript-solved/1199303#1199303 4 Answer by Cerebrus for Post Back response from PHP to javascript [SOLVED] Cerebrus 2009-07-29T10:35:23Z 2009-07-29T10:35:23Z <p>I suggest you read up on <a href="http://www.w3schools.com/ajax/" rel="nofollow">AJAX</a>.</p> <p><a href="http://www.w3schools.com/PHP/php%5Fajax%5Fdatabase.asp" rel="nofollow">Here's a PHP example</a> on W3Schools that details an AJAX hit.</p> http://stackoverflow.com/questions/1199191/file-access-denied-in-net/1199219#1199219 2 Answer by Cerebrus for File Access denied in .NET Cerebrus 2009-07-29T10:16:06Z 2009-07-29T10:16:06Z <p>It would be helpful to identify the exact cause if you present the code you are working with. Without that, my guess is that your application leaves handles to the <code>Filestream</code> open.</p> <p>You should always dispose of unmanaged references using the dispose pattern (or using the <a href="http://msdn.microsoft.com/en-us/library/yh598w02.aspx" rel="nofollow"><code>using</code> construct</a>).</p> http://stackoverflow.com/questions/1198721/c-directoryinfo-getfiles-begining-with/1198727#1198727 6 Answer by Cerebrus for C# DirectoryInfo.getFiles begining with Cerebrus 2009-07-29T08:16:31Z 2009-07-29T08:16:31Z <pre><code>FileInfo[] taskFiles = taskDirectory.GetFiles("apples*.xml"); </code></pre> http://stackoverflow.com/questions/1193585/edittemplate-property-of-aspgridview-control/1193626#1193626 2 Answer by Cerebrus for EditTemplate property of asp:GridView control. Cerebrus 2009-07-28T11:58:32Z 2009-07-28T11:58:32Z <p>You only need to create a <code>ButtonField</code> with <code>Commandname</code> set to "Edit" (alternatively, set the <code>AutoGenerateEditButton</code> property of the GridView to True).</p> <p>The GridView supports preconfigured commands for fields that specify a specific set of CommandNames (such as "Edit", "Delete", "Cancel").</p> <p>When this button is clicked, your GridView will go into "Edit" mode and the EditItemTemplate will automatically be displayed. </p> http://stackoverflow.com/questions/1192435/restricting-users-to-access-c-drive-in-c/1192477#1192477 2 Answer by Cerebrus for Restricting users to access C drive in C#? Cerebrus 2009-07-28T07:46:36Z 2009-07-28T07:46:36Z <p>Perhaps you mean that the user chooses the directory using the <code>FolderBrowserDialog</code> ? In any case, neither the <code>FolderBrowserDialog</code> nor the <code>SaveFileDialog</code> offer any in-built means of restricting the user selection.</p> <p>Your most straightforward option therefore is to validate the user's selection and check if it is not one of directories you have chosen to restrict access to. You could also set code permissions and disallow permission for your code to save files into the restricted folders.</p> http://stackoverflow.com/questions/1181980/set-button-to-disabled-when-accessdatasource-has-no-rows/1182009#1182009 2 Answer by Cerebrus for Set button to disabled when AccessDataSource has no rows Cerebrus 2009-07-25T12:27:27Z 2009-07-25T12:36:06Z <p>The <code>AccessDataSource</code> inherits from the <code>SqlDataSource</code> class. It therefore provides an event called <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sqldatasource.selected.aspx" rel="nofollow"><code>Selected</code></a> which is the event raised after the SELECT operation is completed. This event should have an EventArgs parameter of the type <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sqldatasourcestatuseventargs.aspx" rel="nofollow"><code>SqlDataSourceEventArgs</code></a>).</p> <p>This EventArgs parameter has a property called <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sqldatasourcestatuseventargs.affectedrows.aspx" rel="nofollow"><code>AffectedRows</code></a> which will tell you the count of rows retrieved. If it is 0, you can set the enabled property of your Button.</p> <pre><code>private void OnSelectedHandler(Object source, SqlDataSourceStatusEventArgs e) { if (e.AffectedRows == 0) //Disable the button. } </code></pre> <p>For the record, the <code>DataView</code> class resides in the <code>System.Data</code> namespace. In addition, calling <code>Select()</code> on the AccessDataSource will mean that you are running two select statements, one to retrieve the records (if any), and the other simply to count the number of retrieved records.</p> http://stackoverflow.com/questions/1170154/how-can-you-convert-blank-spaces-to-nbsp-in-javascript/1170240#1170240 0 Answer by Cerebrus for How can you convert blank spaces to &nbsp; in javascript Cerebrus 2009-07-23T07:38:36Z 2009-07-23T07:38:36Z <p>To answer the question, No, there isn't a way to do this without using Regex/String replace.</p> <p>As others have indicated, using the JS String object methods such as <code>replace()</code> is your best bet.</p> http://stackoverflow.com/questions/1158063/visual-studio-2003-vs-visual-studio-2005/1158121#1158121 2 Answer by Cerebrus for Visual Studio 2003 vs. Visual Studio 2005 Cerebrus 2009-07-21T09:20:06Z 2009-07-21T09:20:06Z <p>VS 2003 only has the "Web application" project type, not "Websites" that are available in VS 2005. Additionally, the File system website model is lacking in VS 2003.</p> <p>VS 2003 requires a web application to be a configured virtual folder in IIS. It does not need to be copied to <code>Inetpub\wwwroot</code> folder, but it does need to be a virtual directory. So you do not need to copy the files to the IIS folder. </p> <p>Lastly, VS 2003 does not have a "Publish" site option because when you build the website, all files are compiled into a single assembly. This is in contrast with the VS 2005 website model where each resource is compiled into a separate assembly allowing for dynamic compilation.</p> http://stackoverflow.com/questions/1157775/questions-about-javascript-injection/1157840#1157840 1 Answer by Cerebrus for Questions about Javascript injection Cerebrus 2009-07-21T07:59:58Z 2009-07-21T07:59:58Z <p>There are various levels of security that can be implemented based on the design considerations of your application.</p> <p>I would go with the following basic rules:</p> <ol> <li><p>Sanitize all input, removing known malicious sections (for instance, <code>&lt;script&gt;</code> tags in a rich HTML editor). Regex based pattern matching is commonly used for this kind of sanitization.</p></li> <li><p>Remove all input that are not in your white-list of allowed values.</p></li> <li><p>Encode any HTML before storing in the database and Decode it back when it is being retrieved for display.</p></li> </ol> <p><strong>Edit</strong>:@Phoenix talks about validation in this context so I thought I'd add this. I have said this before and I reiterate: I am not against script based validation. I only caution people not to rely on it expressly. A common design pattern is to validate basic criteria using script based validation and apply rigorous validation on the server side when that data is submitted.</p> http://stackoverflow.com/questions/1153399/how-is-possible-to-javascript-so-that-instead-of-having-a-drop-down-menu-there-ar/1153450#1153450 0 Answer by Cerebrus for How is possible to javascript so that instead of having a drop-down-menu there are buttons for each of the values? Cerebrus 2009-07-20T13:04:10Z 2009-07-20T13:04:10Z <p>You could simply create two buttons and invoke the <code>updateTarget()</code> function in the <code>onClick</code> event of the buttons :</p> <pre><code>&lt;input type="button" value="Option 1" onclick="updateTarget(1);" /&gt; &lt;input type="button" value="Option 2" onclick="updateTarget(2);" /&gt; </code></pre> <p>Note that the signature of the <code>updateTarget()</code> must change to allow you to pass the parameter so that your code can branch accordingly:</p> <pre><code>function updateTarget(optionNumber) { if (optionNumber == 1) ... else if (optionNumber == 2) ... else ... } </code></pre> http://stackoverflow.com/questions/1153005/validation-javascript/1153058#1153058 1 Answer by Cerebrus for Validation, javascript Cerebrus 2009-07-20T11:38:24Z 2009-07-20T11:38:24Z <p>In this case, you are matching characters that do not fall into the supplied ranges. Therefore, you can put the matched text into a backreference and use that.</p> <p>Alternatively, you can construct a <code>Regexp</code> object and use it's <a href="http://www.w3schools.com/jsref/jsref%5Flastmatch%5Fregexp.asp" rel="nofollow"><code>lastMatch</code></a> property.</p> http://stackoverflow.com/questions/1152840/how-do-you-increase-the-height-of-an-html-textbox/1152851#1152851 0 Answer by Cerebrus for how do you increase the height of an html textbox Cerebrus 2009-07-20T10:49:27Z 2009-07-20T10:49:27Z <p>Don't the <a href="http://reference.sitepoint.com/css/height" rel="nofollow"><code>height</code></a> and <a href="http://reference.sitepoint.com/css/font-size" rel="nofollow"><code>font-size</code></a> CSS properties work for you ?</p> http://stackoverflow.com/questions/1152811/there-is-already-an-object-named-tbltable1-in-the-database/1152833#1152833 3 Answer by Cerebrus for There is already an object named 'tbltable1' in the database Cerebrus 2009-07-20T10:42:28Z 2009-07-20T10:42:28Z <p>The <a href="http://www.w3schools.com/Sql/sql%5Fselect%5Finto.asp" rel="nofollow"><code>SELECT INTO</code></a> statement creates a new table of the name you provide and populates it with the results of the SELECT statement.</p> <p>I think you should be using <code>INSERT INTO</code> since the table already exists. If your purpose is in fact to populate a temporary table, then you should provide a table name that does not already exist in the database.</p> <p>See <a href="http://msdn.microsoft.com/en-us/library/ms190750.aspx" rel="nofollow">MSDN</a> for more information on this.</p> http://stackoverflow.com/questions/1145853/show-page-in-iframe-with-different-url-in-browser/1146031#1146031 0 Answer by Cerebrus for show page in iframe with different url in browser Cerebrus 2009-07-17T22:51:10Z 2009-07-17T22:51:10Z <p>I suppose you can easily do this by using the <code>NavigateUrl</code> property of the <code>TreeNode</code> to set the target URL. (You can construct this based on the <code>Text/Value</code> properties of the current TreeNode.</p> <p>Also, you can set the target frame in which the page is to be loaded by setting the <code>Target</code> property of the TreeNode. In your case, it seems you would need to set it to the parent frame (the window itself).</p> http://stackoverflow.com/questions/1145867/gridvew-child-gridview-extra-column-wont-disappear/1146009#1146009 0 Answer by Cerebrus for GridVew, Child GridView, extra column won't disappear? Cerebrus 2009-07-17T22:42:51Z 2009-07-17T22:42:51Z <p>I don't see an opening tag for these <code>tr</code>, <code>td</code> tags:</p> <pre><code>... &lt;ItemTemplate &gt; &lt;/td&gt;&lt;/tr&gt; ... </code></pre> <p>Just checked and the author of the article seems to have the same issue in the generated source of the page.</p> http://stackoverflow.com/questions/1145892/how-to-force-a-sqlconnection-to-physically-close-while-using-connection-pooling/1145951#1145951 1 Answer by Cerebrus for How to force a SqlConnection to physically close, while using connection pooling? Cerebrus 2009-07-17T22:26:59Z 2009-07-17T22:32:03Z <p><code>CommandBehavior.CloseConnection</code> is usually discouraged because of this very fact - You can't be sure that the Connection will be closed. (I'll try to find some concrete evidence of this, I'm saying this from faint recall).</p> <p><code>Dispose()</code> is the <em>surest</em> way because it implicitly calls <code>Close()</code>.</p> <p>The <code>using</code> construct demonstrated by @Alex is just another (programmer friendly) way of writing the <code>try-finally</code> construct with the added implicit Disposal of objects.</p> <p><strong>Edit: (after edit to question)</strong></p> <p>Your concern over the connections <em>actually</em> closing seems unwarranted to me. The connection would simply return to the pool so that it can be reused easily without having to go through all the initialization. This does not mean that the Connection is still actively connected to the DB.</p> http://stackoverflow.com/questions/1142312/how-do-i-find-out-if-a-user-has-cookies-disabled-in-asp-net/1142336#1142336 1 Answer by Cerebrus for How do I find out if a user has cookies disabled in ASP.NET Cerebrus 2009-07-17T09:49:46Z 2009-07-17T09:49:46Z <p>You can check the <code>Request.Cookies</code> property which would return an empty <code>HttpCookieCollection</code>.</p> <p>In Javascript, the usual way to check is the Navigator.cookieEnabled property (works on IE, for other browsers, I think you need to set a cookie and try to read back its value).</p> http://stackoverflow.com/questions/1141933/validate-phone-number-existence-for-united-states/1141984#1141984 2 Answer by Cerebrus for Validate Phone Number Existence for United States Cerebrus 2009-07-17T08:14:53Z 2009-07-17T08:14:53Z <p>You could validate phone number formats using a Regex such as those <a href="http://regexlib.com/DisplayPatterns.aspx?cattabindex=6&amp;categoryId=7" rel="nofollow">listed here</a>, but in order to validate if the phone number really exists you would need to subscribe to a web service that holds current data for all phone numbers in the United States and publishes a method to validate such data. I don't think such a service would be free.</p> <p>Also, take a look at <a href="http://stackoverflow.com/questions/175488/us-phone-number-verification">this related question</a> on SO.</p> http://stackoverflow.com/questions/1141841/paging-large-amounts-of-data-in-a-gridview/1141895#1141895 1 Answer by Cerebrus for Paging large amounts of Data in a Gridview Cerebrus 2009-07-17T07:47:09Z 2009-07-17T07:47:09Z <p>The <code>Fill()</code> method of <code>DbDataAdapter</code> class has a convenient overload for this very purpose :</p> <pre><code>public int Fill (DataSet dataSet, int startRecord, int maxRecords, string srcTable) </code></pre> <p>In this overload, you can provide the record number to start with and the maximum records to retrieve from that starting point. This enables you to retrieve only a subset of records from the datasource based on the current page index. All you need to keep track of is the current record index that is displayed.</p> <p>So you would need to modify your DAL to provide this overload. I haven't used SubSonic so I can't tell if that feature exists in it.</p> http://stackoverflow.com/questions/750902/how-do-i-get-rid-of-o-is-not-declared/750913#750913 Comment by Cerebrus on How do i get rid of __o is not declared? Cerebrus 2009-11-12T12:51:04Z 2009-11-12T12:51:04Z Thanks for that useful comment, @awe! http://stackoverflow.com/questions/523220/awesome-visual-studio-macros/523291#523291 Comment by Cerebrus on Awesome Visual Studio Macros Cerebrus 2009-11-02T13:17:29Z 2009-11-02T13:17:29Z I've seen stranger. Sort the answers by date and you'll see the rationale. ;-) http://stackoverflow.com/questions/502958/how-can-i-get-the-untruncated-text-value-of-an-option-element/502990#502990 Comment by Cerebrus on How can I get the untruncated text value of an <OPTION> element? Cerebrus 2009-11-02T13:15:53Z 2009-11-02T13:15:53Z I agree, very succinctly put. http://stackoverflow.com/questions/838486/how-to-make-net-application-access-internet-through-proxy/838500#838500 Comment by Cerebrus on How to make .NET application access internet through proxy Cerebrus 2009-11-02T13:14:26Z 2009-11-02T13:14:26Z I suggest you read the question before the edit, buddy! There was no mention of a third party library such as Gdata. http://stackoverflow.com/questions/1661197/valid-characters-for-javascript-variable-names/1661227#1661227 Comment by Cerebrus on Valid Characters for JavaScript Variable Names Cerebrus 2009-11-02T13:10:02Z 2009-11-02T13:10:02Z +1 for the link to ECMA ! http://stackoverflow.com/questions/1615111/multi-threading-locks-and-monitor-class-not-working/1615147#1615147 Comment by Cerebrus on Multi Threading locks and monitor class not working Cerebrus 2009-10-23T18:31:49Z 2009-10-23T18:31:49Z Exactly that. The object (variable) to which the Monitor holds a lock must be global, not local to the Property or method in which locking occurs. That would prevent its reinitialization. http://stackoverflow.com/questions/1519763/how-do-i-pass-parameters-from-dropdown-list-to-stored-procedures/1519812#1519812 Comment by Cerebrus on how do i pass parameters from dropdown list to stored procedures Cerebrus 2009-10-05T12:36:39Z 2009-10-05T12:36:39Z Good catch, that's quite possible too. +1 http://stackoverflow.com/questions/1519789/asp-net-multifile-assembly Comment by Cerebrus on ASP.NET MultiFile Assembly Cerebrus 2009-10-05T12:35:46Z 2009-10-05T12:35:46Z Is your question solely in the intonation ? http://stackoverflow.com/questions/1519790/images-that-are-in-appdata-folder-not-shown-in-browser/1519800#1519800 Comment by Cerebrus on Images that are in App_Data folder not shown in browser Cerebrus 2009-10-05T12:35:07Z 2009-10-05T12:35:07Z @Muhammad: No, you don't! :P http://stackoverflow.com/questions/1519763/how-do-i-pass-parameters-from-dropdown-list-to-stored-procedures Comment by Cerebrus on how do i pass parameters from dropdown list to stored procedures Cerebrus 2009-10-05T12:32:51Z 2009-10-05T12:32:51Z What are you doing with the <code>sp1</code> variable ? Is there some code that we are not seeing here ? If you add the <code>sp1</code> parameter as-is to the Command's parameter collection, such an error would naturally result. http://stackoverflow.com/questions/1519763/how-do-i-pass-parameters-from-dropdown-list-to-stored-procedures/1519777#1519777 Comment by Cerebrus on how do i pass parameters from dropdown list to stored procedures Cerebrus 2009-10-05T12:30:39Z 2009-10-05T12:30:39Z No, I do not think so. A quick check on MSDN reveals that the SqlParameterCollection.AddWithValue() method expects the parameter name to include the &quot;@&quot; symbol. I suspect the problem lies elsewhere. http://stackoverflow.com/questions/1461223/how-do-i-encode-an-url/1461260#1461260 Comment by Cerebrus on How do I encode an URL? Cerebrus 2009-09-22T17:10:47Z 2009-09-22T17:10:47Z +1 for the use of EscapeUriString(). http://stackoverflow.com/questions/1461223/how-do-i-encode-an-url Comment by Cerebrus on How do I encode an URL? Cerebrus 2009-09-22T17:08:30Z 2009-09-22T17:08:30Z @envalid: I do not think the adjective &quot;cruel&quot; is appropriate here. A better description would be &quot;ungracious, inconsiderate and uncivil&quot; ! ;-) http://stackoverflow.com/questions/1409425/find-matching-strings-using-regx-in-javascript/1409433#1409433 Comment by Cerebrus on Find matching strings using RegX in Javascript?? Cerebrus 2009-09-11T07:21:11Z 2009-09-11T07:21:11Z Yeah, I believe this is the best way. +1 http://stackoverflow.com/questions/1398108/how-do-i-format-a-datetime-in-c/1398126#1398126 Comment by Cerebrus on How do I format a DateTime? in c#? Cerebrus 2009-09-09T07:49:56Z 2009-09-09T07:49:56Z Good answer, especially the comment about storage! +1