January 21st, 2008 07:47 AM
Go to msdn.con and download one of their templates. The list is here:
http://msdn2.microsoft.com/en-us/asp.net/aa336613.aspx
The "Personal Design" template supports themes. You download the...
January 10th, 2008 01:00 PM
Have you checked the web.config file and make sure that debug compilation was not set to true? It would not be the first time someone forgot to modify that before publishing the web site.
Of...
December 30th, 2007 05:55 PM
Figured it out...
I changed to using a hyperlink web control instead of just an html <a> tag.
December 29th, 2007 07:37 PM
Hi all...
I'm having a problem developing a CSS-based menu structure. I prefer having many of my files in subdirectories below the root. For example, I have a subdirectory just off the root,...
December 27th, 2007 09:39 AM
If you are asking how to make an application reside in the system tray (not have an entry on the task bar), I've done this... it's REALLY easy in C#.
Go to http://codeproject.com and type in...
December 27th, 2007 09:30 AM
Good answer... but doesn't this code need to read:
CheckBox1_checked()
{
CheckBox2.checked= false;
}
CheckBox2_checked()
{
December 27th, 2007 09:13 AM
http://www.asp.net is Microsoft's site for asp. There you will find free HOW TO videos on all things ASP, even Ajax. I was in a certification bootcamp a few months ago and the instructor showed us...
December 26th, 2007 05:45 PM
Whenever I use VS to put entries into a listbox, it does it for me in the InitializeComponent() code that is at the top of your listing.
If anything, put your
listBox1.Items.Add("Ontario");...
December 26th, 2007 12:02 PM
First of all, it looks like you are only setting all of the check boxes to true (don't have a way of setting them to false).
I'm not so good at VB, and you might need to make my code look more...
December 26th, 2007 09:54 AM
If you're talking about the Page "Title", that is nothing more than setting the Title property of the page. Good place to do this is in the Page_Load() event handler.
protected void...
December 24th, 2007 08:32 AM
I believe I answered this for you on the DevShed forums....
December 19th, 2007 11:38 AM
The concept of "master pages" and "content pages" do that. You define a master page that has some controls on it, usually things like headers, footers, menus. You also define WHERE the content will...
December 18th, 2007 10:31 AM
Hello all...
I am working through an asp.net 2.0 book, and have a question about cookies. The book makes it appear as though it is possible to have multiple cookies, but all of my data is...
November 14th, 2007 12:57 PM
Guess I was trying to use the standard "Control Box" (minimize, maximixe, close) options, but see that at least some of my tray apps don't do it this way, but instead have a separate OK/Close button...
November 13th, 2007 09:01 PM
I'm developing an app that sits in the tray. When I double-click on the icon while it is in the tray, animation makes it appear as if the program was "asleep" just over the START button. When I...
October 16th, 2007 03:15 PM
Hello All.
As someone who has spent years doing procedural programming (C, asm), instead of OOP, I am struggling with how to design/implement my data. C# seems (at least to me) to want to tie the...