User DevelopingChris - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T08:49:04Z http://stackoverflow.com/feeds/user/1220 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1858038/message-box-in-asp-net/1858044#1858044 0 Answer by DevelopingChris for Message Box in ASP.NET... DevelopingChris 2009-12-07T05:48:23Z 2009-12-07T05:48:23Z <pre><code> Response.Write("[script] alert('message here');[/script]"); </code></pre> <p>stackoverflow won't allow the real tags replace the [ with &lt; and the ] with ></p> http://stackoverflow.com/questions/1662860/posting-a-web-form-to-a-different-page-in-asp-net-3-5/1662868#1662868 1 Answer by DevelopingChris for Posting a web form to a different page in asp.net 3.5 DevelopingChris 2009-11-02T18:30:22Z 2009-11-02T18:30:22Z <p>So if your machine keys are the same and or you post without viewstate on the page, then you can cross post all day long.</p> <p>So if you set the machine key in the machine config of both servers to the same value you should be good.</p> http://stackoverflow.com/questions/10634/should-i-switch-from-nant-to-msbuild 13 Should I switch from nant to msbuild? DevelopingChris 2008-08-14T03:36:54Z 2009-10-16T17:36:47Z <p>I currently use nant, ccnet (cruise control), svn, mbunit. I use msbuild to do my sln build just because it was simpler to shell out. </p> <p>Are there any merits to switching my whole build script to MSBuild? I need to be able to run tests, watir style tests, xcopy deploy. Is this easier?</p> <p><strong>Update: Any compelling features that would cause me to shift from nant to msbuild?</strong></p> http://stackoverflow.com/questions/1557072/programatically-ask-a-page-in-global-asax-if-its-marked-obsolete 1 Programatically ask a page, in global asax if its marked obsolete? DevelopingChris 2009-10-12T21:35:48Z 2009-10-13T00:06:12Z <p>I would like to mark some pages in my site that is currently in the wild as "obsolete" and pick up on that in my global.asax and redirect the client to a different page.</p> <p>Then I will have the site notify the dev team that someone tried to hit that page.</p> <p>Can you access the Type information for the page from any global place?</p> http://stackoverflow.com/questions/1492966/can-you-run-jython-on-the-jvm-that-runs-on-pulse-smart-pens 0 Can you run Jython on the JVM that runs on Pulse smart pens? DevelopingChris 2009-09-29T14:37:46Z 2009-10-04T04:58:46Z <p>I'm looking at developing an application that takes advantage of the Pulse smart pen.</p> <p>I would rather do it in python than java. Its not clear what version of the jvm runs on the pen, as evidence <a href="http://www.livescribe.com/media/pdf/Livescribe%5FPulse%5FSpecifications.pdf" rel="nofollow">here in the tech specs</a></p> <p>Are there limitations on whether or not jython and jruby will run on mobile version of the jvm?</p> http://stackoverflow.com/questions/1493090/how-to-fix-ssis-value-does-not-fall-within-expected-range 0 How to fix SSIS : "Value, does not fall within expected range"? DevelopingChris 2009-09-29T14:57:08Z 2009-09-30T22:22:08Z <p>When I open up the solution that contains SSIS packages created by a colleague, I get this awkward error that tells me nothing about what I'm supposed to do to fix it.</p> <p>He left instructions to take all the "variables" out of the connection string in the dtsx file manually before opening up the solution. I have done that, now when try to view the package in the designer I just get an image of a red x and this message.</p> <p>EDDIT: You cannot see any design elements, no tabs across the top to switch to errors or data flows. Just a gray center area on the screen with a red x, and the message, its like VisualStudio dies in the process of reading the dtsx file.</p> http://stackoverflow.com/questions/1492183/asp-netpaging-when-deleting-rows/1492529#1492529 3 Answer by DevelopingChris for ASP.NET:Paging when deleting rows DevelopingChris 2009-09-29T13:23:39Z 2009-09-29T13:23:39Z <p>When you delete the item, you need to rebind the data, so that the pager resizes.<br /> Not just call databind, you have to reset the datasource and call databind. It doesn't keep the data in the datasource between post backs.</p> <p>Before you do that, make sure you reset the pageIndex to one that is in scope on the new set.</p> http://stackoverflow.com/questions/218908/best-way-to-turn-an-integer-into-a-month-name-in-c 7 Best way to turn an integer into a month name in c#? DevelopingChris 2008-10-20T15:51:48Z 2009-09-19T15:40:00Z <p>Is there a best way to turn an integer into its month name in .net?</p> <p>Obviously I can spin up a datetime to string it and parse the month name out of there. That just seems like a gigantic waste of time.</p> http://stackoverflow.com/questions/1426976/should-i-use-request-params-instead-of-explicitly-doing-request-form 0 Should I use Request.Params instead of explicitly doing Request.Form? DevelopingChris 2009-09-15T12:45:44Z 2009-09-15T12:59:53Z <p>I have been using Request.Form for all my code. And if I need querystring I hit that explicitly too. It came up in a code review that I should probably use the Params collection instead.</p> <p>I thought it was a best practice, to hit the appropriate collection directly. I am looking for some reinforcement to one side or the other of the argument.</p> http://stackoverflow.com/questions/1380734/how-to-use-css-in-asp-net/1380755#1380755 3 Answer by DevelopingChris for How to use css in asp.net DevelopingChris 2009-09-04T18:13:14Z 2009-09-04T18:13:14Z <p>If you have a label control on your page.</p> <p>Set the cssclass property on it in the markup.</p> <pre><code>&lt;asp:Label runat="Server" id="MyCrazyFontLabel" CssClass="MyStyle" &gt;Hello world&lt;/asp:Label&gt; </code></pre> http://stackoverflow.com/questions/1028547/too-many-parameters-were-provided-in-this-rpc-request-the-maximum-is-2100 -3 Too many parameters were provided in this RPC request. The maximum is 2100. ? DevelopingChris 2009-06-22T17:44:09Z 2009-08-25T09:24:42Z <p>A search query returned this error. I have a feeling its because the in clause is ginormous on a subordinant object, when I'm trying to ORM the other object.</p> <p>Apparently in clauses shouldn't be built 1 parameter at a time. Thanks ibatis.</p> http://stackoverflow.com/questions/333163/how-to-bind-a-gridview-to-a-list-of-multiple-types 2 How to bind a GridView to a list of multiple types? DevelopingChris 2008-12-02T05:53:51Z 2009-08-13T15:36:44Z <p>I get this error:</p> <p>System.Reflection.TargetException: Object does not match target type.</p> <p>when trying to bind a <code>List&lt;IEvent&gt;</code> where an IEvent can be an appointment, a birthday, or a few other calendar related event types.</p> http://stackoverflow.com/questions/89606/in-sql-server-2005-how-do-i-change-the-schema-of-a-table-without-loosing-any-d 3 In sql server 2005, how do I change the "schema" of a table without loosing any data? DevelopingChris 2008-09-18T02:56:06Z 2009-08-07T03:22:00Z <p>I have a table that got into the "db_owner" schema, and I need it in the "dbo" schema.</p> <p>Is there a script or command to run to switch it over?</p> http://stackoverflow.com/questions/1238498/in-c-get-all-the-nsf-filesnotes-database-from-data-notes-directory-and-popul/1238518#1238518 0 Answer by DevelopingChris for In C# Get All the .nsf files(Notes Database) from \data\notes directory and populate it in a Listbox DevelopingChris 2009-08-06T12:22:10Z 2009-08-06T12:22:10Z <p>You could get a directory object and then ask for files by a dos mask from it as an array.</p> <pre><code>Using System.IO var di = new DirectoryInfo("\data\notes"); FileInfo[] files = di.GetFiles("*.nsf"); DropDownList ddl = new DropDownList(); for(int i = 0;i&lt;files.Length;i++) { var file = files[i]; ddl.Items.Add(ListItem.FromString(file.Name)); } </code></pre> http://stackoverflow.com/questions/11975/handling-timezones-in-storage 5 Handling timezones in storage? DevelopingChris 2008-08-15T04:54:59Z 2009-08-02T09:58:00Z <p>Store everything in GMT?</p> <p>Store everything the way it was entered with an embedded offset?</p> <p>Do the math everytime you render?</p> <p>Display relative Times "1 minutes ago"?</p> http://stackoverflow.com/questions/1213706/what-user-do-python-scripts-run-as-in-windows 1 What user do python scripts run as in windows? DevelopingChris 2009-07-31T17:02:28Z 2009-07-31T21:15:18Z <p>I'm trying to have python delete some directories and I get access errors on them. I think its that the python user account doesn't have rights?</p> <pre><code>WindowsError: [Error 5] Access is denied: 'path' </code></pre> <p>is what I get when I run the script.<br /> I've tried </p> <pre><code>shutil.rmtree os.remove os.rmdir </code></pre> <p>they all return the same error.</p> http://stackoverflow.com/questions/1113615/using-asp-on-asp-net-site/1113628#1113628 3 Answer by DevelopingChris for Using ASP on ASP.Net site DevelopingChris 2009-07-11T12:34:36Z 2009-07-11T12:34:36Z <p>You can combine them pretty easily, you will just need to have the asp have its own global.asa and session timing. As long as your authentication logic is simple, you can write it in both, or consume it as a service from the asp pages.</p> <p>The main concerns are shared state amongst pages. IFrames are viable options, but hard to get to look natural.</p> <p>I'm currently doing this in an application that is half converted, its 170 aspx pages, and 210 asp pages.</p> <p>That said, the context switching of maintaining both parts, is painful. So try and get it rewritten, quickly. On MVC its fairly trivial to have the logic flow like asp.</p> http://stackoverflow.com/questions/1090508/ref-type-and-value-type-in-generic/1090525#1090525 1 Answer by DevelopingChris for ref type and value type in Generic. DevelopingChris 2009-07-07T05:35:00Z 2009-07-07T05:35:00Z <p>When MyInt type is cast as Object, it gets cast as a val type. Object cannot be treated like a reference since its representing both val and ref, it must be explicitly passed by ref.</p> <p>int can be cast as an object, and its still treated as a val. string can be cast as object, and its treated as a val. Even though normally it would be a ref type.</p> <p>If you did the AnotherSwap and passed T in as MyInt, you would get the same results as before. If you called the original swap algorithm with objects, you would get the same output as the latter.</p> http://stackoverflow.com/questions/1090413/question-on-console-readline-in-c/1090416#1090416 5 Answer by DevelopingChris for Question on Console.ReadLine() in C# DevelopingChris 2009-07-07T04:57:18Z 2009-07-07T04:57:18Z <pre><code>while(!string.IsNullOrEmpty(str)) </code></pre> <p>check it for both with the built in method</p> <p>if it comes back empty they just pressed enter, and you've it your sentinel either way, so you can fail on that.</p> http://stackoverflow.com/questions/1026662/mysql-column-types/1026681#1026681 1 Answer by DevelopingChris for Mysql column types DevelopingChris 2009-06-22T11:34:39Z 2009-06-22T11:34:39Z <p>Minutes as int for time out.<br /> A many to many table to get the team.</p> http://stackoverflow.com/questions/976782/is-my-asp-net-session-too-big/976794#976794 1 Answer by DevelopingChris for Is My ASP.NET Session Too Big? DevelopingChris 2009-06-10T16:40:26Z 2009-06-10T16:40:26Z <p>The general industry standard is to reduce it to as low as possible, cache the objects, and store the id's in session to go retrieve them on the next request.</p> <p>In asp.net in general, there are problems with running a multiple box application and having to store session in the database, and then deserialize it into objects.</p> <p>If you end up going this way, its more of a hit to have to hit the database for xml and then deserialize it than to hit the record itself.</p> http://stackoverflow.com/questions/976701/javascript-confusion/976723#976723 0 Answer by DevelopingChris for Javascript confusion DevelopingChris 2009-06-10T16:26:00Z 2009-06-10T16:26:00Z <p>calls a method on the windows object called $$ and passes a string argument to it, which appears to be an xpath expression.</p> <p>which returns input tags that contain an attribute called value starting with RSW.</p> http://stackoverflow.com/questions/885725/how-do-i-select-all-the-rows-where-a-varchar-field-contains-non-digit-characters 1 How do I select all the rows where a varchar field contains non-digit characters? DevelopingChris 2009-05-20T00:59:55Z 2009-05-20T13:57:33Z <p>I want to find all instances in a table where a string field cannot be cast as a number. Is there a way to do like a "try" in t-sql so that I can get all the id's where the cast failed and delete the value?</p> http://stackoverflow.com/questions/885636/how-do-i-disable-plugins-from-command-line-on-visual-studio 0 How do I disable plugins from command line on visual studio? DevelopingChris 2009-05-20T00:08:05Z 2009-05-20T08:16:33Z <p>Resharper is killing me for some reason on startup, I just need to get in, is there a command line switch for load without addins?</p> http://stackoverflow.com/questions/720555/name-suggestions-for-opensource-organisation-and-mvc-cms-project/885665#885665 0 Answer by DevelopingChris for Name suggestions for OpenSource organisation and MVC CMS Project DevelopingChris 2009-05-20T00:24:49Z 2009-05-20T00:24:49Z <p>ModelViewContent - no fuss, just editing inline.</p> http://stackoverflow.com/questions/885636/how-do-i-disable-plugins-from-command-line-on-visual-studio/885644#885644 0 Answer by DevelopingChris for How do I disable plugins from command line on visual studio? DevelopingChris 2009-05-20T00:13:21Z 2009-05-20T00:13:21Z <p>The shortest hack I can find is, open VS with no solution. Disable it for all time. Restart with the project that gave you trouble, restart resharper once all the difficult and error prone files are closed.</p> http://stackoverflow.com/questions/46147/why-are-all-links-in-my-site-are-red-in-google-chrome-and-safari 3 why are all links in my site are red, in google chrome and safari? DevelopingChris 2008-09-05T16:08:19Z 2009-05-18T05:47:34Z <p>just started using google chrome, and noticed in parts of our site, all the links on the page are bright red. They should be black with a dotted underline. </p> <p>Is there some gotcha in webkit rendering that turns all links red regardless of style?</p> http://stackoverflow.com/questions/868851/how-do-i-programatically-301-redirect-in-an-asp-page 0 How do I programatically 301 redirect in an asp page? DevelopingChris 2009-05-15T14:01:18Z 2009-05-15T14:12:19Z <p>I'm upgrading some classic asp pages to .net, but not all of them. Rather than go and modify all the links in this backwards system, which pulls some of its links from a cms data store. I would like to take advantage of http and just remove the code our of that file, and perform a programatic 301 so that all the other pages can just be upgraded piecemeal.</p> http://stackoverflow.com/questions/822293/what-is-the-most-widely-used-parser-generator-for-c/823210#823210 3 Answer by DevelopingChris for What is the most widely used parser generator for C#? DevelopingChris 2009-05-05T03:38:14Z 2009-05-05T03:38:14Z <p>Everything I've done or used that needed a parser used good old ANTLR.<br /> Its slightly over complicated, but it doesn't leave you wanting.</p> http://stackoverflow.com/questions/778216/is-there-a-generic-system-delegate-that-takes-2-types-and-returns-the-second 2 Is there a generic system delegate that takes 2 types and returns the second DevelopingChris 2009-04-22T16:56:22Z 2009-04-22T16:58:56Z <p>I am looking for something like Action but I want it to be</p> <pre><code>delegate U ReturnAction&lt;T,U&gt;(T param); </code></pre> <p>Is there already a system delegate for this? I just don't want to reinvent the wheel. I did the same thing when I first needed a Predicate and then realized it existed.</p> http://stackoverflow.com/questions/1857908/c-how-do-i-check-if-a-datagrid-is-empty/1857929#1857929 Comment by DevelopingChris on C#: How do I check if a DataGrid is empty? DevelopingChris 2009-12-07T05:53:34Z 2009-12-07T05:53:34Z Not that you'd intentionally do this, but if you set the datasource, but then didn't call databind, there would be nothing on the screen, and yet for this request, this assertion would be true, when it probably shouldn't be. http://stackoverflow.com/questions/1858038/message-box-in-asp-net/1858042#1858042 Comment by DevelopingChris on Message Box in ASP.NET... DevelopingChris 2009-12-07T05:50:40Z 2009-12-07T05:50:40Z The only reason I say this is a bad idea, is that it tells the user it happened even if it didn't. Where as emitting it on next page load will actually confirm the server action completed. Although the elegance of setting it on a property is not lost. http://stackoverflow.com/questions/1854236/trigger-jquery-with-php Comment by DevelopingChris on trigger jquery with php? DevelopingChris 2009-12-06T04:56:03Z 2009-12-06T04:56:03Z tomato toomato, trigger, is semantically implied as &quot;causes it to be run in the browser&quot; and in fact it can, in a few ways. Via responding to ajax with a sentinel which jquery directs. Or by simply serving JavaScript in the page like @Mark has suggested. http://stackoverflow.com/questions/583088/subversion-hook-for-closing-quality-center-bugs Comment by DevelopingChris on Subversion hook for closing Quality Center bugs DevelopingChris 2009-12-02T16:31:11Z 2009-12-02T16:31:11Z I have not found an answer yet, my interests waned because the team that uses subversion ended up not budgeting in new seats to quality center, even though its standard and we used sharepoint tickets, so no connection needed. http://stackoverflow.com/questions/728533/spring-net-constructor-interceptors Comment by DevelopingChris on Spring.NET & Constructor Interceptors DevelopingChris 2009-11-14T05:32:49Z 2009-11-14T05:32:49Z did you ever get this working? http://stackoverflow.com/questions/46586/goto-still-considered-harmful/46661#46661 Comment by DevelopingChris on GOTO still considered harmful? DevelopingChris 2009-10-29T20:37:29Z 2009-10-29T20:37:29Z so lets take a side step, table saws are touted generally as the most dangerous wood working tool. GOTOs have also been widely known to inflict harm. Personally a simple function can replace a goto. The point is, there is no real reason you should choose goto over something less dangerous. The wood working analogy breaks down here, because the table saw has no less dangerous analog. http://stackoverflow.com/questions/46586/goto-still-considered-harmful/46661#46661 Comment by DevelopingChris on GOTO still considered harmful? DevelopingChris 2009-10-27T20:55:00Z 2009-10-27T20:55:00Z Clearly you are not most. I've never lost fingers to them either. Although I seen plenty of halved digits from table saws, and plenty of bugs in systems from goto's. I've honestly never seen a GOTO in a modern OO language that was required, for the business that commissioned that software to make money. http://stackoverflow.com/questions/1557072/programatically-ask-a-page-in-global-asax-if-its-marked-obsolete/1557122#1557122 Comment by DevelopingChris on Programatically ask a page, in global asax if its marked obsolete? DevelopingChris 2009-10-13T13:44:02Z 2009-10-13T13:44:02Z simple, elegant, nice. Didn't know that the &quot;handler&quot; was the page. Thanks Darin. http://stackoverflow.com/questions/1557072/programatically-ask-a-page-in-global-asax-if-its-marked-obsolete/1557600#1557600 Comment by DevelopingChris on Programatically ask a page, in global asax if its marked obsolete? DevelopingChris 2009-10-13T13:42:59Z 2009-10-13T13:42:59Z I had explored this route personally, as the easier solution to implement. The hard part is, its hard to know, when you are trying to get a page to run, why the hell you are getting redirected. Making maintenance on the obsolete's more confusion. My thought is to also mark a date when something was obsoleted and before every release to go find the things that have been obsolete in production fro 90 days or whatever and prune them. http://stackoverflow.com/questions/24680/using-subversion-with-vb6/24737#24737 Comment by DevelopingChris on Using Subversion with VB6 DevelopingChris 2009-10-09T14:53:15Z 2009-10-09T14:53:15Z thanks, I've only seen vb6 under glass, I'm a web person and in its hay day I was doing php. http://stackoverflow.com/questions/1492183/asp-netpaging-when-deleting-rows/1492529#1492529 Comment by DevelopingChris on ASP.NET:Paging when deleting rows DevelopingChris 2009-10-03T03:03:39Z 2009-10-03T03:03:39Z asp.net built in controls and ajax don't always play nice, you might have to use my absolute most despised thing, an update panel, to pull off the best of both worlds. you could also just use jqGrid or some other client paging grid and call it quits on asp.net built in controls all together. http://stackoverflow.com/questions/1493090/how-to-fix-ssis-value-does-not-fall-within-expected-range Comment by DevelopingChris on How to fix SSIS : "Value, does not fall within expected range"? DevelopingChris 2009-09-29T17:10:03Z 2009-09-29T17:10:03Z it doesn't even get that far, its just hosed, a gray area in the design surface with this x and the message, I almost thought this is what it was supposed to do, and then I created a new project from scratch and my new stuff works, but nothing that our other developer did loads. http://stackoverflow.com/questions/1492901/how-do-i-set-the-protocol-when-using-redirecttoaction-in-asp-net-mvc Comment by DevelopingChris on How do I set the protocol when using RedirectToAction in asp.net MVC? DevelopingChris 2009-09-29T14:38:58Z 2009-09-29T14:38:58Z Curious, what protocol would you want to change it to? http://stackoverflow.com/questions/1426976/should-i-use-request-params-instead-of-explicitly-doing-request-form/1426987#1426987 Comment by DevelopingChris on Should I use Request.Params instead of explicitly doing Request.Form? DevelopingChris 2009-09-15T13:03:36Z 2009-09-15T13:03:36Z So far, I think you answered exactly what I was looking for, to keep from killing this question's interest, I'll mark it so, tomorrow http://stackoverflow.com/questions/1380734/how-to-use-css-in-asp-net/1380740#1380740 Comment by DevelopingChris on How to use css in asp.net DevelopingChris 2009-09-04T18:14:05Z 2009-09-04T18:14:05Z good point, however, the cssclass property would still have a value, it just wouldn't work.