User Nicholas - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T06:21:32Zhttp://stackoverflow.com/feeds/user/2808http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/793108/how-to-set-multiple-selected-values-in-asp-net-checkboxlist0How to set multiple selected values in asp.net checkboxlistNicholas2009-04-27T11:24:26Z2009-11-06T05:00:02Z
<p>I have a asp.net checkbox list bound to a linq to sql datasource and when I check the item count of my CheckBoxList on the page load event it is 0. I want to be able to set the selected items on my checkboxlist here but cannot.</p>
<p>The datasource's selected event fires after the page load. If this is the case, how can I set the selected items on my list?</p>
<p>If I set the SelectedValue to a value it only displays the last value as selected instead of all the values which are selected. How can I select multiple values in my checkboxlist in the pageload event?</p>
http://stackoverflow.com/questions/365263/whats-your-favorite-c-open-source-project-of-the-year-2008/368244#368244-1Answer by Nicholas for What's Your Favorite C# Open Source Project of the year 2008?Nicholas2008-12-15T12:41:02Z2009-10-01T21:59:58Z<p><a href="http://en.wikipedia.org/wiki/DotNetNuke" rel="nofollow">DotNetNuke</a>, a great extensible opensource CMS system.</p>
http://stackoverflow.com/questions/114521/hide-asp-net-gridview-row0Hide asp.net Gridview rowNicholas2008-09-22T12:23:36Z2009-09-29T13:39:30Z
<p>I am creating a gridview that allows adding of new rows by adding the controls neccessary for the insert into the footertemplate but when the objectdatasource has no records I add a dummy row as the footertemplate is only displayed when there is data. How can I hide this dummy row? I have tried setting e.row.visible = false on RowDataBound but the row is still visible :-(</p>
http://stackoverflow.com/questions/1426697/reccomend-free-database-to-use-for-commercial-purposes-in-net-app1Reccomend Free Database to use for commercial purposes in .net appNicholas2009-09-15T11:54:31Z2009-09-17T06:55:03Z
<p>I am looking for a free/opensource relational database to use on a commercial asp.net 3.5 project. Any recommendations?</p>
http://stackoverflow.com/questions/685162/how-much-traffic-can-shared-web-hosting-take/1404448#14044480Answer by Nicholas for How Much Traffic Can Shared Web Hosting Take?Nicholas2009-09-10T10:14:37Z2009-09-10T10:14:37Z<p>I suggest ensuring that your application is ready for large amounts of traffic, even if you are on a super duper webserver, but your app is badly written, you will loose potential clients. Some of the easiest optimizations that can be done to an existing web app is to reduce the number of DB connections, so read up on caching and partial caching.</p>
http://stackoverflow.com/questions/1315386/efficient-data-paging-with-datalist-and-linq0Efficient Data Paging with Datalist and LinqNicholas2009-08-22T07:28:17Z2009-08-22T07:28:17Z
<p>I am trying to achieve the following using the Datalist and Linq to Sql:</p>
<ol>
<li>Paged Datalist</li>
<li>Efficient paging i.e if there are 3000 records only retrieve the records needed for the current page.</li>
<li>Have the page number displayed in the querystring to allow pages to be cached.</li>
</ol>
<p>However, when I look at the sql which is outputted it is doing multiple data calls for each page (see below). </p>
<p>So my questions are:</p>
<ol>
<li>Why are there 2 calls for the number
of records? </li>
<li>Why is the first 10
records returned initially? </li>
<li>How can I set this up to only have 2 datacalls?</li>
</ol>
<p><strong>My Code</strong>
</p>
<pre><code><asp:ListView ID="lv" runat="server" DataSourceID="ds">
<LayoutTemplate>
<asp:PlaceHolder runat="server" ID="itemPlaceHolder" />
</LayoutTemplate>
<ItemTemplate>
<p>
<b>
<asp:Literal ID="Literal2" runat="server" Text='<%# Eval("Submitted") %>' />
</b>
<br />
<asp:Literal ID="Literal1" runat="server" Text='<%# Eval("Text") %>' />
</p>
</ItemTemplate>
</asp:ListView>
<asp:DataPager runat="server" ID="dp" PagedControlID="lv" QueryStringField="page">
<Fields>
<asp:NextPreviousPagerField ButtonType="Button" ShowFirstPageButton="True"
ShowNextPageButton="true" ShowPreviousPageButton="False" />
<asp:NumericPagerField />
<asp:NextPreviousPagerField ButtonType="Button" ShowLastPageButton="True"
ShowNextPageButton="true" ShowPreviousPageButton="False" />
</Fields>
</asp:DataPager>
</code></pre>
<p><strong>This is the ouputted sql for page 8</strong>
SELECT COUNT(*) AS [value]
FROM [dbo].[Entries] AS [t0]</p>
<p>SELECT TOP (10) [t0].[Submitted], [t0].[Text]
FROM [dbo].[Entries] AS [t0]
ORDER BY [t0].[Submitted]</p>
<p>SELECT COUNT(*) AS [value]
FROM [dbo].[Entries] AS [t0]</p>
<p>SELECT [t1].[Submitted], [t1].[Text]
FROM (
SELECT ROW_NUMBER() OVER (ORDER BY [t0].[Submitted]) AS [ROW_NUMBER], [t0].[Submitted], [t0].[Text]
FROM [dbo].[Entries] AS [t0]
) AS [t1]
WHERE [t1].[ROW_NUMBER] BETWEEN 70 + 1 AND 70 + 10
ORDER BY [t1].[ROW_NUMBER]</p>
http://stackoverflow.com/questions/1046293/ajaxpro-and-ontimeout-error/1265704#12657040Answer by Nicholas for AjaxPro and OnTimeOut errorNicholas2009-08-12T11:53:25Z2009-08-12T11:53:25Z<p>You can try this:
<a href="http://groups.google.sc/group/ajaxpro/browse%5Fthread/thread/da617d3dc31d65cb" rel="nofollow">http://groups.google.sc/group/ajaxpro/browse_thread/thread/da617d3dc31d65cb</a></p>
http://stackoverflow.com/questions/1205935/download-all-pdf-attachments-from-gmail-account-in-c0Download all PDF Attachments from Gmail Account in C#Nicholas2009-07-30T11:13:51Z2009-07-30T11:27:02Z
<p>Can someone point me to a code sample that downloads all attachments of a specific type (eg. PDF) from a gmail account. I have been looking at a few gmail API's but haven't found what I am looking for.</p>
http://stackoverflow.com/questions/380259/most-important-features-for-a-cms/1141972#11419721Answer by Nicholas for Most Important Features for a CMSNicholas2009-07-17T08:11:38Z2009-07-17T08:11:38Z<p>My number one requirement when choosing a CMS system is the ability to skin it easily and control the markup.</p>
<p>Users can be really fussy about getting the layout EXACTLY as they want.</p>
http://stackoverflow.com/questions/1108587/howto-style-unordered-list-to-display-list-items-in-rounded-corner-box1Howto style unordered list to display list items in rounded corner boxNicholas2009-07-10T09:20:11Z2009-07-10T14:19:45Z
<p>I would like to style an UL to display all items in a box with rounded corners (see below):
<img src="http://img133.imageshack.us/img133/6275/12171926.gif" alt="alt text" /></p>
<p>Is it ppossible to use css and only the UL (with no additional divs and tables) as i'm going to use it in a CMS system to style all ul created by the user.</p>
http://stackoverflow.com/questions/939802/date-validation-with-asp-net-validator0Date validation with ASP.NET validatorNicholas2009-06-02T14:09:51Z2009-06-02T14:43:04Z
<p>I'm trying to use an ASP.NET <code>RangeValidator</code> to validate a date on a textbox. The format of the date entered on the textbox is <code>dd MMMM yyyy</code>.</p>
<p>How can I use the range validator to validate a valid date? If I enter <strong>1 January 1000</strong> as the min or max value I get an error saying value cannot be converted to type date, but if I use another format it picks up my entered text as invalid.</p>
<p>Below is my code:</p>
<pre><code><asp:TextBox
runat="server"
ID="txtDatecompleted"
/>
<cc2:CalendarExtender
ID="datecompletedExtender"
runat="server"
TargetControlID="txtDatecompleted"
Format="dd MMMM yyyy"
/>
<asp:RangeValidator
runat="server"
ID="RangeValidator1"
Type="Date"
ControlToValidate="txtDatecompleted"
MaximumValue="9999/12/28"
MinimumValue="1000/12/28"
ErrorMessage="enter valid date"
Display="None"
/>
<cc2:ValidatorCalloutExtender
ID="RangeValidator1_ValidatorCalloutExtender"
runat="server"
Enabled="True"
TargetControlID="RangeValidator1">
</cc2:ValidatorCalloutExtender>
</code></pre>
http://stackoverflow.com/questions/325182/ideas-for-opensource-cms-in-asp-net-mvc/909718#9097180Answer by Nicholas for Ideas for OpenSource CMS in ASP.NET MVCNicholas2009-05-26T09:07:23Z2009-05-26T09:07:23Z<p>REALLY good skinning ability, must be able to customie the look and feel completely - "My Web Pages Starter Kit" has a nice example of setting the layout in the skin file by implimenting a custom Templated Control. Makes it really easy to change the complete look and feel AND the structure of the HTML and plug in new themes.</p>
http://stackoverflow.com/questions/792805/filter-gridview-results-using-linq-to-sql-object-datasource-with-a-like-operator1Filter Gridview results using Linq to Sql Object datasource with a LIKE operatorNicholas2009-04-27T09:25:01Z2009-05-09T14:17:06Z
<p>I have a gridview bound to a LINQ to Sql datasource. I would like to filter the the results in the gridview using the LIKE operator. i.e I have a textbox used to Search on Username and I would like to select all users with the username like [textbox value].</p>
<p>Below is my code:</p>
<pre><code><h1>Manage Users</h1>
</code></pre>
Search for users
Username:
<pre><code><asp:GridView ID="GridView2" runat="server" AllowPaging="True"
AllowSorting="True" AutoGenerateColumns="False" DataSourceID="LinqDataSource1">
<Columns>
<asp:BoundField DataField="UserName" HeaderText="User Name" ReadOnly="True"
SortExpression="UserName" />
<asp:BoundField DataField="FullName" HeaderText="Full Name" ReadOnly="True"
SortExpression="FullName" />
<asp:BoundField DataField="Email" HeaderText="Email" ReadOnly="True"
SortExpression="Email" />
<asp:BoundField DataField="LastLoginDate" HeaderText="Last Login" ReadOnly="True"
SortExpression="LastLoginDate" DataFormatString="{0:dd MMMM yyyy}"/>
<asp:HyperLinkField Text="Edit" DataNavigateUrlFields="UserId" DataNavigateUrlFormatString="~/Pages/UsersMaintenance/CreateEditUser.aspx?UserId={0}" />
</Columns>
</asp:GridView>
<asp:LinqDataSource ID="LinqDataSource1" runat="server"
ContextTypeName="AirProducts.BusinessLogic.AirProductsDataContext"
Select="new (UserId,UserName, Details.FullName,Membership.Email,Membership.LastLoginDate)"
TableName="Users" Where="UserName == @UserName" >
<WhereParameters>
<asp:ControlParameter ControlID="txtUsername" Name="UserName"
PropertyName="Text" Type="String" />
</WhereParameters>
</asp:LinqDataSource>
</code></pre>
http://stackoverflow.com/questions/792805/filter-gridview-results-using-linq-to-sql-object-datasource-with-a-like-operator/801293#8012930Answer by Nicholas for Filter Gridview results using Linq to Sql Object datasource with a LIKE operatorNicholas2009-04-29T07:41:14Z2009-04-29T07:41:14Z<p>I couldn't get it to work in the markup of the LinqDataSource, but was able to trap it here, plus as a bonus I got intellisense support.</p>
<pre><code> protected void LinqDataSource1_Selecting(object sender, LinqDataSourceSelectEventArgs e)
{
AirProductsDataContext db = new AirProductsDataContext();
e.Result = from v in db.Users orderby v.UserName ascending
where v.UserName.Contains(txtUsername.Text)
select new {v.UserId,v.UserName, v.UserDetail.FullName,v.Membership.Email,v.Membership.LastLoginDate}
;
}
</code></pre>
http://stackoverflow.com/questions/793108/how-to-set-multiple-selected-values-in-asp-net-checkboxlist/801285#8012850Answer by Nicholas for How to set multiple selected values in asp.net checkboxlistNicholas2009-04-29T07:38:53Z2009-04-29T07:38:53Z<p>I used the DataBound event to select to set the selected items.</p>
http://stackoverflow.com/questions/633774/optimize-development-virtual-machine9Optimize development Virtual MachineNicholas2009-03-11T08:54:37Z2009-04-24T16:38:18Z
<p>As a best practice I use a virtual machine for my development - I would like to try and optimize my VM as much as possible. All I have installed is server 2003, IIS and Visual Studio 2008.
What do you do to optimize your development VM i.e what service do you switch off etc...</p>
http://stackoverflow.com/questions/673153/html-table-with-fixed-headers/673223#6732230Answer by Nicholas for HTML table with fixed headers?Nicholas2009-03-23T12:36:52Z2009-03-23T12:36:52Z<p>Try this:</p>
<p><strong><a href="http://vikaskhera.wordpress.com/2008/11/06/5-easy-steps-to-create-a-fixed-header/" rel="nofollow">http://vikaskhera.wordpress.com/2008/11/06/5-easy-steps-to-create-a-fixed-header/</a></strong></p>
http://stackoverflow.com/questions/633774/optimize-development-virtual-machine/633859#6338596Answer by Nicholas for Optimize development Virtual MachineNicholas2009-03-11T09:26:33Z2009-03-11T09:26:33Z<p>Ixclude my build folder from my virus guard for on access scans</p>
<p>These are the services that I turn off in my VM</p>
<ul>
<li>Turned off Shutdown event tracker</li>
<li>Switched off indexing on c:\</li>
<li>Error Reporting Service switched off</li>
<li>Smart Card Access switched off</li>
<li>TCP/IP NetBIOS Helper</li>
<li>Remote Desktop Help Session Manager</li>
<li>Remote Registry</li>
<li>Uninterruptible Power Supply</li>
<li>Windows Audio</li>
<li>Wireless Zero Configuration</li>
</ul>
http://stackoverflow.com/questions/102558/biggest-advantage-to-using-asp-net-mvc-vs-web-forms/630275#6302750Answer by Nicholas for Biggest advantage to using ASP.Net MVC vs web formsNicholas2009-03-10T13:54:46Z2009-03-10T13:54:46Z<p>My 2 cents:</p>
<ul>
<li>ASP.net forms is great for Rapid application Development and adding business value quickly. I still use it for most intranet applications.</li>
<li>MVC is great for Search Engine Optimization as you control the URL and the HTML to a greater extent</li>
<li>MVC generally produces a much leaner page - no viewstate and cleaner HTML = quick loading times</li>
<li>MVC easy to cache portions of the page.
-MVC is fun to write :- personal opinion ;-)</li>
</ul>
http://stackoverflow.com/questions/587481/developer-documentation-sharepoint-document-management-vs-screwturn-wiki/629731#6297310Answer by Nicholas for Developer Documentation: Sharepoint Document Management vs. ScrewTurn WikiNicholas2009-03-10T11:21:19Z2009-03-10T11:21:19Z<p>We are currently using a combination of both, sharepoint for specs and formalized docs and a Wiki for "tacit knowledge". Each of our solutions has a page in the wiki and this works very well due to the ease of adding content. </p>
http://stackoverflow.com/questions/8440/visual-studio-optimizations/503255#5032552Answer by Nicholas for Visual Studio OptimizationsNicholas2009-02-02T13:47:16Z2009-02-02T13:47:16Z<p>One of the best enhancements I've found is to disable the onaccess scan of your anti-virus for the folder where your projects reside. Every time I did a build the IO of the virus checker decreased the speed.</p>
http://stackoverflow.com/questions/491670/hide-authorized-menu-item-in-asp-net-web-sitemap2Hide authorized menu item in asp.net web.sitemapNicholas2009-01-29T13:57:18Z2009-01-30T19:52:05Z
<p>I have a web.sitemap with security trimming enabled, however I need to hide a menu item based on a role to a page that has no access rules in the web.config.</p>
<p>i.e I have a Campaign page that is used to view existing campaigns as well as to add new campaigns, but I want the "New Campaigns" menu item to be hidden for anonymous users.
I tried adding the role name to the roles attribute in the web.sitemap but this has no effect.</p>
<p>I'm sure there must be a quick way to do this without modifying the sitemap provider which is my next port of call.</p>
http://stackoverflow.com/questions/365489/questions-every-good-net-developer-should-be-able-to-answer/368254#3682543Answer by Nicholas for Questions every good .NET developer should be able to answer?Nicholas2008-12-15T12:43:16Z2008-12-15T12:43:16Z<p>I suggest enquiring about blogs that they read on a regular basis and personal programming projects that they have worked on as this will show a willingness to learn and a passion for programming.</p>
http://stackoverflow.com/questions/86333/what-design-pattern-do-you-use-the-most/352206#3522060Answer by Nicholas for What design pattern do you use the most?Nicholas2008-12-09T09:21:05Z2008-12-09T09:21:05Z<p>Factory Pattern - Always program against an Interface :-)</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204655#2046551Answer by Nicholas for What things didn't you know you needed but are now very glad you have?Nicholas2008-10-15T13:14:52Z2008-10-15T13:14:52Z<p>Reflector!!!!!!!</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204649#2046491Answer by Nicholas for What things didn't you know you needed but are now very glad you have?Nicholas2008-10-15T13:12:24Z2008-10-15T13:12:24Z<p>Two tools:</p>
<ol>
<li>Good Database schema compare tool (Great for generating change scripts on legacy dbs)</li>
<li>Tool to generate Insert Scripts (Lets you annihilate your dev environemnt and restore at any time via query analyzer)</li>
</ol>
http://stackoverflow.com/questions/45626/using-asp-net-ajax-pagemethods-and-validators2Using ASP.NET AJAX PageMethods and ValidatorsNicholas2008-09-05T12:17:42Z2008-09-15T18:20:23Z
<p>I have a basic CRUD form that uses PageMethods to update the user details, however the Validators don't fire off, I think I need to manually initialize the validators and check whether the validation has passed in my javascript save method. Any ideas on how to do this?</p>
http://stackoverflow.com/questions/45626/using-asp-net-ajax-pagemethods-and-validators/49371#493711Answer by Nicholas for Using ASP.NET AJAX PageMethods and ValidatorsNicholas2008-09-08T09:32:20Z2008-09-08T09:32:20Z<p>Ok so I finally solved this: You need to call Page_ClientValidate() in your Save javascript method and If it returns true continue with the save, the Page_ClientValidate() initiates the client side validators, See code below:</p>
<pre><code> function Save()
{
var clientValidationPassed =Page_ClientValidate();
if(clientValidationPassed)
{
//Save Data
PageMethods.SaveUser(UserName,Role,SaveCustomerRequestComplete, RequestError);
$find('editPopupExtender').hide();
}
else
{
//Do Nothing as CLient Validation messages are now displayed
}
return false;
}
</code></pre>
http://stackoverflow.com/questions/33395/how-do-i-filter-nodes-of-treeview-and-menu-controls-with-sitemap-data-sources-bas/34352#343521Answer by Nicholas for How do I filter nodes of TreeView and Menu controls with sitemap data sources based on user permissions?Nicholas2008-08-29T10:51:27Z2008-08-29T10:51:27Z<p>securityTrimmingEnabled="true" works for internal pages that have a config file restricting permissions, you can also add role="SomeRole" in the sitemap to ovveride the display mechanism, which is useful if you have menu items to external sites.</p>
http://stackoverflow.com/questions/32173/disable-asp-net-radiobutton-with-javascript/32473#324731Answer by Nicholas for Disable asp.net radiobutton with javascriptNicholas2008-08-28T14:49:10Z2008-08-28T14:49:10Z<p>I found 2 ways to get this to work, the below code correctly distinguishes between the RadioButton and Checkbox controls.</p>
<pre><code> private static void DisableControl(WebControl control)
{
Type controlType = control.GetType();
if (controlType == typeof(CheckBox))
{
((CheckBox)control).InputAttributes.Add("disabled", "disabled");
}
else if (controlType == typeof(RadioButton))
{
((RadioButton)control).InputAttributes.Add("disabled", "true");
}
else if (controlType == typeof(ImageButton))
{
((ImageButton)control).Enabled = false;
}
else
{
control.Attributes.Add("readonly", "readonly");
}
}
</code></pre>
<p>And the solution I used is to set SubmitDisabledControls="True" in the form element which is not ideal as it allows a user to fiddle with the values but is fine in my scenario. The second solution is to mimic the Disabled behavior and details can be found here: http://aspnet.4guysfromrolla.com/articles/012506-1.aspx'>http://aspnet.4guysfromrolla.com/articles/012506-1.aspx.</p>
http://stackoverflow.com/questions/1205935/download-all-pdf-attachments-from-gmail-account-in-c/1206000#1206000Comment by Nicholas on Download all PDF Attachments from Gmail Account in C#Nicholas2009-07-30T11:41:07Z2009-07-30T11:41:07ZThanks but I'm looking for C# exampleshttp://stackoverflow.com/questions/491670/hide-authorized-menu-item-in-asp-net-web-sitemap/496938#496938Comment by Nicholas on Hide authorized menu item in asp.net web.sitemapNicholas2009-02-02T09:36:29Z2009-02-02T09:36:29ZI was hoping that there was a way to do it "out the box", but looks like I'm gonna have to create a new sitemap provider.http://stackoverflow.com/questions/491670/hide-authorized-menu-item-in-asp-net-web-sitemap/491763#491763Comment by Nicholas on Hide authorized menu item in asp.net web.sitemapNicholas2009-01-30T08:09:02Z2009-01-30T08:09:02ZThis won't work because the same page is used to view Campaigns by anonymous users. Therefore I need to be able to simply hide the menu item without actually locking it down, in this instance the Page handles the different security states.http://stackoverflow.com/questions/114521/hide-asp-net-gridview-row/114612#114612Comment by Nicholas on Hide asp.net Gridview rowNicholas2008-09-22T12:55:20Z2008-09-22T12:55:20ZDoesn't work, still displays the empty row :-(http://stackoverflow.com/questions/114521/hide-asp-net-gridview-row/114589#114589Comment by Nicholas on Hide asp.net Gridview rowNicholas2008-09-22T12:41:32Z2008-09-22T12:41:32ZI always want the footer shown as that is where my insert controls are contained, I want to hide the DummyRow I add.