User Drell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T18:42:59Zhttp://stackoverflow.com/feeds/user/41801http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080948/asp-net-tableadapter-is-returning-phantom-results/1343345#13433450Answer by Drell for ASP.Net - TableAdapter is returning phantom resultsDrell2009-08-27T19:34:53Z2009-08-27T19:34:53Z<p>Check the ExcuteMode property of the tableAdapter for the query. Be sure it is set to "Reader". There are 3 options for ExecuteMode: </p>
<ol>
<li>Reader - Returns rows of data</li>
<li>Scalar - Returns single value</li>
<li>NonQuery - Returns an int with number of rows affected</li>
</ol>
<p>Also check the Parameters Collection for a return value parameter. It should have properites AllowDBNull (true if you allow nulls), Direction (ReturnValue). This parameter should hold the results of your SP. In your example it would be null since there were no records returned.</p>
http://stackoverflow.com/questions/977819/webresource-axd-invalid-viewstate/1033195#10331952Answer by Drell for WebResource.axd - Invalid ViewStateDrell2009-06-23T15:12:14Z2009-06-23T15:12:14Z<p>MS has an open bug report as of 6/14/09 reguarding this issue:</p>
<p><a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=434997&wa=wsignin1.0" rel="nofollow">https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=434997&wa=wsignin1.0</a></p>
http://stackoverflow.com/questions/474878/what-reusable-code-should-every-developer-have-in-their-toolbox/475103#4751030Answer by Drell for What reusable code should every developer have in their toolbox?Drell2009-01-23T23:48:13Z2009-01-23T23:48:13Z<p>PKI authentication</p>
http://stackoverflow.com/questions/453105/how-to-vertically-align-a-table-column-both-top-and-bottom/453337#4533370Answer by Drell for How to vertically align a table column both top and bottom?Drell2009-01-17T13:52:46Z2009-01-17T13:52:46Z<p>Use the rowspan attribute (<a href="http://www.htmlcodetutorial.com/tables/index_famsupp_30.html" rel="nofollow">http://www.htmlcodetutorial.com/tables/index_famsupp_30.html</a>) to make the long text (column2) span two rows. Then put the Para1 in the first column first row (align top), then Para2 in the first column second row (align bottom).</p>
<pre><code>--------------------------------------
|Para 1 Align Top |This is your very |
| |long text. This |
| |is your very long |
|_________________|text. |
| |This is your very |
| |long text. This |
| |is your very long |
|Para2 align bottm|Text. |
--------------------------------------
</code></pre>
http://stackoverflow.com/questions/333571/asp-net-system-unauthorizedaccessexception-access-to-path-denied/363500#3635000Answer by Drell for ASP.NET: System.UnauthorizedAccessException - Access to Path DeniedDrell2008-12-12T17:25:01Z2008-12-12T17:25:01Z<p>Check that the image file (jpg) you're writing to the tempStorage has the proper permissions for the webuser account(aspnet or iis_wpg). You can set the TempStorage directory to replace permisson entries on all child objects. </p>
<ol>
<li>Right Click TempStorage folder and select properties</li>
<li>Select the security tab (ensure the proper read/write/modify permissons are here)</li>
<li>Click the Advanced button</li>
<li>Check the second checkbox - Replace permissions entries on all child objects with entries shown here that apply to child objects.</li>
</ol>
<p>Now all files that you add to the TempStoreage folder will inherit the permissions allowing you webuser account to read the jpg file.</p>
http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node/357247#3572470Answer by Drell for ASP.NET TreeView and Selecting the Selected NodeDrell2008-12-10T19:20:50Z2008-12-10T19:20:50Z<p>When you're adding nodes to the tree in the _TreeNodePopulate() event, set the .SelectionAction property on the node.</p>
<pre><code>TreeNode newCNode;
newCNode = new TreeNode("New Node");
newCNode.SelectAction = TreeNodeSelectAction.Select;
//now you can set the .NavigateUrl property to call the same page with some query string parameter to catch in the page_load()
newCNode.NavigateUrl = "~/ThisPage.aspx?args=" + someNodeAction
RootNode.ChildNodes.Add(newCNode);
</code></pre>
http://stackoverflow.com/questions/1493090/how-to-fix-ssis-value-does-not-fall-within-expected-rangeComment by Drell on How to fix SSIS : "Value, does not fall within expected range"?Drell2009-09-29T16:36:49Z2009-09-29T16:36:49ZCan you please provide a bit more information. What component type is displaying the red x? Data Source? Data Conversion? Destination? What other components are listed in the Data Flow and in what order?