HTML Compiled Help within ASPX Application

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default HTML Compiled Help within ASPX Application

    I'm about to embark on building a compiled help (.chm) application for my
    aspx web application. I wanted to know if anyone who has done this would
    have any advice/tips to offer.

    For example, I read that the compiled help file has to be downloaded to a
    user's machine.. That seems kinda iffy to me depending on how big that file
    gets. There shouldn't be more than 50 help pages, so I have no idea what
    size it will end up as.

    Any tips are appreciated. Thank You


    George Durzi Guest

  2. Similar Questions and Discussions

    1. HTML Consuming ASPX Sevice
      I would like to access an ASPX service that returns a simple character string and have that character string appear on the page that called the...
    2. attachments from network resource in an aspx web mail application
      Hi all There seem to be a problem when i attempt to add attachment from the client machine to the mail message sent from the web aspx server...
    3. HTML table on aspx web form
      Hi, I want to put a HTML table on aspx webform so that i can place my header, menu, footer user controls appropriately. I got 3 user controls...
    4. How to prevent referenced assemblies from being compiled into the application?
      My question may be a bit odd. Right now I can see that all referenced assemblies in my project are compiled into the application assembly so when...
    5. How to refrence html objec t from aspx form
      Add a runat="server" and id attribute to it. It also needs a CodeBehind reference. If you are using VS.Net, you can right-click it in the Designer,...
  3. #2

    Default Re: HTML Compiled Help within ASPX Application

    so they have to actually say yes to installing the help file?
    for some reason I thought it was seamless

    "William F. Robertson, Jr." <wfrobertson@kpmg.com> wrote in message
    news:%238lw7p1ODHA.3192@TK2MSFTNGP10.phx.gbl...
    > One thing to consider is a chm creates a LOT of text files. (actually
    HTML,
    > but you get my drift)
    >
    > You might want to consider zipping it and sending/downloading it that way,
    > so they can install it where ever they care too.
    >
    > bill
    >
    >
    > "George Durzi" <gdurzi@nospam_hotmail.com> wrote in message
    > news:e16trn1ODHA.3088@TK2MSFTNGP10.phx.gbl...
    > > I'm about to embark on building a compiled help (.chm) application for
    my
    > > aspx web application. I wanted to know if anyone who has done this would
    > > have any advice/tips to offer.
    > >
    > > For example, I read that the compiled help file has to be downloaded to
    a
    > > user's machine.. That seems kinda iffy to me depending on how big that
    > file
    > > gets. There shouldn't be more than 50 help pages, so I have no idea what
    > > size it will end up as.
    > >
    > > Any tips are appreciated. Thank You
    > >
    > >
    >
    >

    George Durzi Guest

  4. #3

    Default Re: HTML Compiled Help within ASPX Application

    Yes, you shouldn't be able to force an install to a client machine. That
    would be bad (virii and stuff).

    The only other solution you have is to write a web interface for the help
    files. That is what we are in the processing of looking into now.

    bill


    "George Durzi" <gdurzi@nospam_hotmail.com> wrote in message
    news:#X7vOu1ODHA.3088@TK2MSFTNGP10.phx.gbl...
    > so they have to actually say yes to installing the help file?
    > for some reason I thought it was seamless
    >
    > "William F. Robertson, Jr." <wfrobertson@kpmg.com> wrote in message
    > news:%238lw7p1ODHA.3192@TK2MSFTNGP10.phx.gbl...
    > > One thing to consider is a chm creates a LOT of text files. (actually
    > HTML,
    > > but you get my drift)
    > >
    > > You might want to consider zipping it and sending/downloading it that
    way,
    > > so they can install it where ever they care too.
    > >
    > > bill
    > >
    > >
    > > "George Durzi" <gdurzi@nospam_hotmail.com> wrote in message
    > > news:e16trn1ODHA.3088@TK2MSFTNGP10.phx.gbl...
    > > > I'm about to embark on building a compiled help (.chm) application for
    > my
    > > > aspx web application. I wanted to know if anyone who has done this
    would
    > > > have any advice/tips to offer.
    > > >
    > > > For example, I read that the compiled help file has to be downloaded
    to
    > a
    > > > user's machine.. That seems kinda iffy to me depending on how big that
    > > file
    > > > gets. There shouldn't be more than 50 help pages, so I have no idea
    what
    > > > size it will end up as.
    > > >
    > > > Any tips are appreciated. Thank You
    > > >
    > > >
    > >
    > >
    >
    >

    William F. Robertson, Jr. Guest

  5. #4

    Default Re: HTML Compiled Help within ASPX Application

    George,
    > For example, I read that the compiled help file has to be downloaded to a
    > user's machine.. That seems kinda iffy to me depending on how big that file
    > gets. There shouldn't be more than 50 help pages, so I have no idea what
    > size it will end up as.
    This depends on the length of the help topics, the complexity of the
    coding, the number of images, etc. For a help file resembling one of
    Microsoft's, I'd expect a 50-topic help file to be in the region of
    75-100 Kb.

    The help compiler uses quite efficient compression methods, with the
    result that your help file should be substantially smaller than the
    combined size of the source files. However, you can usually increase
    the compression rate by recompiling the help file with KeyTools, a
    free program available from:

    [url]http://www.keyworks.net/keytools.htm[/url]

    --
    Pete
    [Microsoft Help MVP]
    Pete Lees Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139