blog
Atlas Controls can be programmed via raw Javascript or via the declarative code model.Initially the declarative code model may seem that you have to write lots of code but it makes things easy when it comes to complicated actions and behavious of the controls.Look at the Hands on Labshttp://atlas.asp.net/do... Asp.Net Server Controls are also available which writes all the script/ declarative code while rendering.So life is easy ......
Couple of days back I got a query: What expression will i use in VB validator for the following:> Allow enter any alpha characters in text box,> but exclude codes 00 and 50> Currently my expression looks like \w{1,20}> How modify to exclude 00 and 50? I replied with the following solution: try this: [^\s?50|\s?00]\w{1,20} OR [^\s?50|\s?00]\w* both works with the following Example Text: "Ask me 50 00 times"Matches:Askmetimes Important Note: But the above expression will eliminate 5 0 characters ......
Hi All Can anybody point me to a direction to achieve the following. I want to investigate on how to write a Context Manager in .Net. By Context Manager I mean - Different Application (Windows App, Web App, .Net Windows App etc.) will share a common Context and interact with each other. For example say 1.You have a web Application to manage Students. 2. You have another windows Application to manage the Registration of the Students. What I want to achieve is if a student is selected in the Web then ......
This is the home page to find out Microsoft Events in Australia
http://msevents-as.microsoft.com/cui/default.aspx?culture=en-AU
Creating Collection Controls with Rich Design Time Support http://www.divil.co.uk/net/... Codes available both is C# and VB.Net Here is another one from MSDNDeveloping Custom Controls in C# with Smart Device Extensionshttp://msdn.micro... ......
Set Your Priorities
By Joel Spolsky
Wednesday, October 12, 2005
http://www.joelonsoftware.com/articles/SetYourPriorities.html
You will find hips of Free Web Templates on this site to get you started quickly.
http://www.freewebtemplates.com/
Those who have used CodeSmith are already aware how it works. We will see how the engine really works behind.EndUser writes templates ASP style in preferred Language (C#, VB etc.) And the Parser parses the template and Generates the Output.To explain what I am trying to say,An example Template May be (Example in C#) : Test Template{%> This is Test: Example Output for the above template is:Test Template This is Test: 0 This is Test: 1 This is Test: 2 This is Test: 3 This is Test: 4 This is Test: 5What ......
Making RegEx more readable Compare the following code statements defining the same regular expression in .NET: static readonly Regex ParameterReference = new Regex(@"(?<empty>\<... RegexOptions.Compiled | RegexOptions.IgnorePatternW... static readonly Regex ParameterReference = new Regex(@" # Matches invalid empty brackets # (?<empty>\<\>)| # Matches a valid parameter reference ......
http://www.crazygrrl.com/we... http://www.regexlib.com/Che... http://msdn.microsoft.com/l... By the way http://www.regexlib.com is one of the best regex reference site around. Thousands of Regex scripts are available from contributors around the world. Some Quick Example from MSDN http://msdn.microsoft.com/l... I thought ......
The idea is very cool. Just attach your control to the the EventSpy's Listener and there you go you can start monitoring the events that are firing. It will be very handy when you are confused of the time of event firing. http://www.codeproject.com/... Here is the code snippet that author pulished in his article. Very Simple. public class Dummy { public delegate void DummyEventHandler(string something); public event DummyEventHandler DummyEvent; public void RaiseEvent() ......
Visit this site for 10min MSDN Nuggets. You can also download Monthly Nuggets as zip files.
Don't miss them.
http://www.microsoft.com/uk/msdn/events/nuggets.aspx
I would suggest everyone to read this book:Dissecting a C# Application: Inside SharpDevelop A pdf version is available for download. http://www.apress.com/free/ Things that you will learn includes Chapter 1: Features at a Glance 7 Chapter 2: Designing the Architecture 23 Chapter 3: Implementing the Core 51 Chapter 4: Building the Application with Add-ins 81 Chapter 5: Providing Functionality with Workspace Services 107 Chapter 6: The User Interface 135 Chapter 7: Internationalization 169 Chapter ......
1. .Net Framework PropertyGrid Classhttp://msdn.microsoft.... 2. Getting the Most Out of the .NET Framework PropertyGrid Control http://msdn.microsoft.com/l... 3. Make Your Components Really RAD with Visual Studio .NET Property Browser http://msdn.microsoft.com/l... 4. ......
I am planning to write a asp like string parser to build a templatebased code generation engine. I ll post all my findings on this here. Looks like I am not the first one to look at this issue. This is a useful link which suggests how others have accomplished asp like string parser. http://www.dotnet247.com/24... A Client-side Environment for ASP Pages http://msdn.microsoft.com/m... Dynamically Executing codes in .Net http://www.west-wind.com/pr... ......
Those who are curious about Ruby on Rails can read this discussion on Joel on Software.
On the Rails again...
http://discuss.joelonsoftware.com/default.asp?joel.3.222408.11
Also do not miss this video.
http://www.rubyonrails.com/media/video/rails_take2_with_sound.mov
Creating a DropDownLabel Server Control
http://aspalliance.com/708
Tuesday, October 4th, 2005 9:28 am The Asp.Net Atlas Community Site.If you are still not aware of Atlas( AJAX in Asp.Net)Have a look at these siteshttp://msdn.microsoft.... 9:00 am Sharing Session Or create a Common Session SpaceIn IIS we can create a Virtual Directory(VD) and inside the Virtual Directory we can create another Virtual Directory. For ExampleTestParent>>Te... I have a VD TestParent and inside VD TestParent ......