Changes between Version 11 and Version 12 of CodeSamples/ASP.Net/ScribbleApp
- Timestamp:
- 02/06/13 13:19:43 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodeSamples/ASP.Net/ScribbleApp
v11 v12 36 36 37 37 {{{ 38 #!text/x-csharp 38 39 HtmlControl frame1 = new System.Web.UI.HtmlControls.HtmlGenericControl("iframe"); 39 40 frame1.Attributes["src"] = "http://" + dnsname + "/mapguide/Scribble/scribble.aspx?SESSION=" … … 87 88 Drop these dll’s into your applications bin directory, make your references to them and start “using” 88 89 {{{ 90 #!text/x-csharp 89 91 using java.io; 90 92 using ikvm.lang; … … 100 102 101 103 {{{ 104 #!text/x-csharp 102 105 public byte[] MaterializeMapImagePage(string session, string mapname, int width, int height, string imageflavor) 103 106 }}} … … 106 109 107 110 {{{ 111 #!text/x-csharp 108 112 public byte[] MaterializeMapPDFPage(string session, string mapname, int width, int height, string imageflavor) 109 113 }}} … … 160 164 file. 161 165 {{{ 166 #!text/x-csharp 162 167 byte[] forPdf1 = MaterializeMapImagePage(session, mapname, width, height, imageflavor); 163 168