Ask a Question related to ASP.NET General, Design and Development.
-
George Durzi #1
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
-
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... -
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... -
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... -
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... -
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,... -
George Durzi #2
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...HTML,> One thing to consider is a chm creates a LOT of text files. (actuallymy> 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 fora> > 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> file> > user's machine.. That seems kinda iffy to me depending on how big that>> > 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
-
William F. Robertson, Jr. #3
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...way,> 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...> HTML,> > One thing to consider is a chm creates a LOT of text files. (actually> > but you get my drift)
> >
> > You might want to consider zipping it and sending/downloading it thatwould> my> > 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> > > aspx web application. I wanted to know if anyone who has done thisto> > > have any advice/tips to offer.
> > >
> > > For example, I read that the compiled help file has to be downloadedwhat> a> > file> > > user's machine.. That seems kinda iffy to me depending on how big that> > > gets. There shouldn't be more than 50 help pages, so I have no idea>> >> > > size it will end up as.
> > >
> > > Any tips are appreciated. Thank You
> > >
> > >
> >
>
William F. Robertson, Jr. Guest
-
Pete Lees #4
Re: HTML Compiled Help within ASPX Application
George,
This depends on the length of the help topics, the complexity of the> 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.
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



Reply With Quote

