Showing related tags and posts accross the entire site.
-
I have encoutered this very strange error when Im trying to modify one of my user controls on a winddows forms module. It's the first happened to me so I assume I can fix this just by cleaning up the bin folder, update references, reload or restart the project. To no avail, I have googled around and...
-
Lately, I was wondering why the Autosize property of label on windows forms is set to true, this is annoying and tiring if you love using windows forms designer(yucks! kidding ), because you often want a properly aligned controls and fixed with labels on data entry textboxes.But not until i want to loicalize...
-
We have decided to use the free BDPLite control as the date picker control for our small web application. The ease of use of the control and its simple style gave me the push to use it (and the prompt reply from its product manager for some concerns). First, i had some comments on the deployment. The...
-
in my quest yesterday to find a free datepicker control for our application, i bumped into BasicDatePicker . they have this lite version of their control ( http://www.basicdatepicker.com/BDPLite ) which is free. i immediately hook it up in our application and it was working in my machine. my teammate...
-
i have been using a number of free asp.net controls for our current project simple because i don't have to redo what the gurus have done and i still haven't finished the asp.net server controls book. i have chosen scott mitchell's menu for our project and since this morning, it is giving me a headache...
-
i wanted to enclose my displayed data in an html table using a repeater control so i immediately followed the articles that i've read about repeater controls. i declare a table tag in the headertemplate and a table end tag in the footertemplate. <asp:repeater id="repeater1" runat=server> <headertemplate><table><...
-
i lost a few minutes today trying to figure out databinding with a repeater control. to tell you the truth i have never used the said control in a project since i am a fan of the datagrid. i always have a notion that the repeater control is for the advanced users who know how to customize the produced...
-
i am currently designing the pages for our web application (.NET 1.1). this is the first time that i will be designing it and i am very eager to use metabuilder's master pages. the first time i saw it in use is with community server 1.1. if you have seen the cs 1.1 code, you'll be surprised on how they...
-
i just saw the first episode of DNRTV (dotnetrocks tv) about webcontrols. fantastic pioneer episode and excellent presentation by Miguel Castro. i noticed though that the pro developers have been using third party refactoring tools eventhough they are using vs 2005 (boodhoo was using resharper, miguel...
-
I was revising a page where a user selects an item from a grid and does a very intensive processing. User can select a number of items from the grid, since it uses a checkbox column and since it performs a very intensive processing i decided to switch it to a single select grid using radiobutton. Another...