Changes between Version 4 and Version 5 of CodeSamples/ASP.Net/ScribbleApp
- Timestamp:
- 11/21/07 11:05:40 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified CodeSamples/ASP.Net/ScribbleApp
v4 v5 22 22 23 23 Here is the platform information: 24 MapGuide Open Source 1.1 25 Windows XP 26 Windows Server 2003 27 .Net Framework 2.0 28 Visual Studio 2005 29 ASP.NET Ajax 1.0 30 ASP.NET 1.0 AjaxControlToolkit - http://www.codeplex.com/ 24 * !MapGuide Open Source 1.1 25 * Windows XP or Windows Server 2003 26 * .Net Framework 2.0 27 * Visual Studio 2005 28 * ASP.NET Ajax 1.0 29 * ASP.NET 1.0 !AjaxControlToolkit - http://www.codeplex.com/ 31 30 32 I also borrowed extensively from the “gt”MGOS sample application. Easily said that this was the starting point for the geometry portion of this application.31 I also borrowed extensively from the "gt" MGOS sample application. Easily said that this was the starting point for the geometry portion of this application. 33 32 34 33 == Notes == … … 48 47 }}} 49 48 50 This then explains the “parent.parent.parent.mapFrame”references within the javascript.49 This then explains the "parent.parent.parent.mapFrame" references within the javascript. 51 50 52 51 Needless to say you may do what you wish. (As an aside, I actually have 4 separate applications in 4 tabpanels all interacting with the map). … … 87 86 88 87 Drop these dll’s into your applications bin directory, make your references to them and start “using” 88 {{{ 89 89 using java.io; 90 90 using ikvm.lang; … … 92 92 using com.lowagie.text.pdf; 93 93 using com.lowagie.text.pdf.codec; 94 }}} 94 95 95 96 === Getting Started with Scribble ===