Changes between Version 11 and Version 12 of CodeSamples/ASP.Net/ScribbleApp


Ignore:
Timestamp:
Feb 6, 2013, 1:19:43 PM (11 years ago)
Author:
davidwilhelmsson
Comment:

Added syntax formatting

Legend:

Unmodified
Added
Removed
Modified
  • CodeSamples/ASP.Net/ScribbleApp

    v11 v12  
    3636
    3737{{{
     38#!text/x-csharp
    3839        HtmlControl frame1 = new System.Web.UI.HtmlControls.HtmlGenericControl("iframe");
    3940        frame1.Attributes["src"] = "http://" + dnsname + "/mapguide/Scribble/scribble.aspx?SESSION="
     
    8788Drop these dll’s into your applications bin directory, make your references to them and start “using”
    8889{{{
     90#!text/x-csharp
    8991using java.io;
    9092using ikvm.lang;
     
    100102
    101103{{{
     104#!text/x-csharp
    102105 public byte[] MaterializeMapImagePage(string session, string mapname, int width, int height, string imageflavor)
    103106}}}
     
    106109
    107110{{{
     111#!text/x-csharp
    108112public byte[] MaterializeMapPDFPage(string session, string mapname, int width, int height, string imageflavor)
    109113}}}
     
    160164file.
    161165{{{
     166#!text/x-csharp
    162167        byte[] forPdf1 = MaterializeMapImagePage(session, mapname, width, height, imageflavor);
    163168