Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:700313
More Search Options
RSS Available
Matching Posts
Re: Too many characters in character literal
Single quotes are for characters: char MyChar = 'x'; char MyTab = '\t'; Double quotes are for strings: String MyString = "Hello Moon";
Posted to
C#
(Forum)
by
SGWellens
on 11/25/2009
Re: ToolBars
[quote user="TRIMS30"]I see you're a Minnesotan. Uff Da! [/quote] Yaah, yaah, dat's fer sure. [quote user="TRIMS30"]Tried that but without a value in the TEXT property on a menu item, the Menu Click event doesn't fire. [/quote] I found a way around that problem. Put text in the value property of each menu item and then hook up to this event: protected void Menu1_PreRender(object sender, EventArgs e) { foreach (MenuItem Item in Menu1.Items) Item.Text = "";
Posted to
Getting Started
(Forum)
by
SGWellens
on 11/25/2009
Re: Initializing BOOL?
[quote user="XIII"] Hi, bool result = true; Grz, Kris. [/quote] Kris, Don't you mean: bool result = false;
Posted to
C#
(Forum)
by
SGWellens
on 11/25/2009
Re: Calendar Control to select any 5 dates from any month
I think you have to maintain the selections yourself. This is a good starting point: protected void Calendar1_Load(object sender, EventArgs e) { List<DateTime> StoredDates = Session["StoredDates"] as List<DateTime>; if (StoredDates == null) { StoredDates = new List<DateTime>(); Session["StoredDates"] = StoredDates; } } protected void Calendar1_SelectionChanged(object sender, EventArgs e) { List<DateTime> StoredDates = Session["StoredDates"] as
Posted to
Web Forms
(Forum)
by
SGWellens
on 11/25/2009
Re: Calendar Control to select any 5 dates from any month
[quote user="silverbunny"]I get the following error: NullReferenceException was unhandled by user code. Object reference not set to an instance of an object.[/quote] You haven't installed the code properly. Make sure each event handler is connected to the correct event.
Posted to
Web Forms
(Forum)
by
SGWellens
on 11/25/2009
Re: Why did my post get deleted
[quote user="TheDiddy"]The question fits the description of the thread as its not in the ASP section. Why did it get deleted? [/quote] This whole site is for asp.net. Posts in sub-sections should also be related to asp.net.
Posted to
Feedback on this website
(Forum)
by
SGWellens
on 11/25/2009
Re: Want to catch Exception in object data source
I'm not sure I understand. What is the exception you are getting? Maybe it's not a database insert exception.
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
SGWellens
on 11/24/2009
Re: What does VS2010 logo mean?
[quote user="rtpHarry"] I was thinking that the mobius strip has one continuous side and Visual Studio presents one common interface to many different development technologies... stretching it a bit? [/quote] Sometimes a cigar is just a cigar.
Posted to
Free For All
(Forum)
by
SGWellens
on 11/24/2009
Re: Want to catch Exception in object data source
Then you cannot use the Exception property of the inserted event (it's for database exceptions). You'll need to wrap the CreateUser function in a try...catch handler.
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
SGWellens
on 11/24/2009
Re: Should I use an abstract class or an interface?
Two rules of thumb: If the class has any data, it must be an Abstract class...Interfaces may not include data. An Interface can be added to a class that has already been derived from another class. It is a form of multiple inheritance. If you need to add behavior to existing classes, you'll need an Interface.
Posted to
C#
(Forum)
by
SGWellens
on 11/24/2009
Page 1 of 683 (6823 items) 1
2
3
4
5
Next >
...
Last »
ASP.NET:
Silverlight and RIA Services: Implementing Search
Channel 9:
C9 Lectures: Brian Beckman - Covariance and Contravariance in Physics 1 of 1
Channel 9:
Set Your Data Free
Channel 9:
Implementing a Silverlight SharePoint WebPart with Visual Studio 2010
WindowsClient:
New WPF Showcase Addition: Enterprise
Channel 9:
Reactive Extensions API in depth: Contract
WindowsClient:
Concluding "New WPF Features" Series
WindowsClient:
Introduction to TestApi – Part 5: Managed Code Fault Injection APIs
ASP.NET:
T4MVC now has a real home and a dedicated forum!
TechNet Edge:
Windows Server 2008 R2 : New Power Management Features
ASP.NET:
Web Deployment Painkillers: VS 2010 & MS Deploy
WindowsClient:
Application Accessibility Testing
WindowsClient:
Prism & WCF RIA Services
Channel 9:
Sharepoint 2010 and Claims-Based Identity
WindowsClient:
IRhetoric Ported To BlogEngine.NET
WindowsClient:
PDC Recap and More
Channel 9:
Reactive Extensions API in depth: Primitives
WindowsClient:
New WPF Features: MultiTouch
WindowsClient:
codeplex.com/testapi v 0.4 available
Channel 9:
The Visual Studio Documentary - Alan Cooper, the Father of Visual Basic
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online