473,943 Members | 21,762 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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
Nov 17 '05 #1
3 1819
so they have to actually say yes to installing the help file?
for some reason I thought it was seamless

"William F. Robertson, Jr." <wf*********@kp mg.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.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:e1******** ******@TK2MSFTN GP10.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


Nov 17 '05 #2
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:#X******** ******@TK2MSFTN GP10.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." <wf*********@kp mg.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.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:e1******** ******@TK2MSFTN GP10.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



Nov 17 '05 #3
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:

http://www.keyworks.net/keytools.htm

--
Pete
[Microsoft Help MVP]
Nov 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
1579
by: Ted Singh | last post by:
(I apologize in advance if this is an obvious question, my experience is more with console or client-only apps) I am trying to build an web-based HTML UI, which will work with a web-server on the same machine (i.e., http://localhost/...). However, I do not want the logic source to be visible to the user to prevent customer support problems, intellectual property issues, etc. The requirements strictly call for a web-based UI running...
0
1438
by: Matt Billock | last post by:
Hello all, I was wondering if anyone could provide me with some assistance with and error I have been observing. Our current set of framework .dlls defines custom user controls in an assembly called Architecture.Web.DLL. One of the controls within that assembly references an enumeration in another framework .DLL - Architecture.services.dll. Both assemblies are strongly named. The target deployment scenario for our framework is to have...
5
10086
by: Earl Teigrob | last post by:
I am creating an application where I would like to give web designers the ablity to create a static html page and dyanamically load it into my application(exactly like loading a user control into a page). Is there an easy way to do this or do I need to stream the html into my application and parse unwanted header/footer info before rendering it within the application page (as a literal control, i imagine) Has anyone done this or seen any...
12
2272
by: Wardeaux | last post by:
All, Wanting to find a way to create web pages to add to my website without having to recompile the codebehind everytime I want to add a new one... Here's the deal: I have a web app that takes work orders for 7 different items, each item gets 1 page for input specs. All works well. I want to add a new item. I do not want to recompile and redistribute my app everytime just to add a new input page. Can ASPX resources be compiled into a...
4
6857
by: Neil.Smith | last post by:
I can't seem to find any references to this, but here goes: In there anyway to parse an html/aspx file within an asp.net application to gather a collection of controls in the file. For instance what I'm trying to do is upload a html file onto the web server, convert it to aspx file and then parse it for input tags/controls, which in turn will become fields in a newly created database table. Clearly when the aspx file is called the...
13
31460
by: =?Utf-8?B?S2VzdGZpZWxk?= | last post by:
Hi Our company has a .Net web service that, when called via asp.net web pages across our network works 100%! The problem is that when we try and call the web service from a remote machine, one outside of our domain, we get the error.. ** Client found response content type of 'text/html; charset=Windows-1252', but expected 'text/xml' **. We can discover the web service by typing in the url of the asmx so we know the server can 'see' it...
3
27069
by: =?Utf-8?B?TWlrZQ==?= | last post by:
I have an asp.net 2.0 web application that I have pre-compiled and deployed to a Windows 2003 server. When I try to access the web application I get the following message in my browser: 'The file '/Customer/Login.aspx' has not been pre-compiled, and cannot be requested'. If I rename the folder containing the web app to something other than 'Customer' then it works! I have tried deleting the folder and recreating it but I get the same...
2
2369
by: lds | last post by:
I am getting the error "The file '/AHSD/MainMenu.aspx' has not been pre-compiled, and cannot be requested." when I try to deploy one of my applications that I am just migrating to VS 2005. I have searched on the web for a solution, but none of the suggestions so far have worked. Here is my scenario: I am using Visual Studio 2005 with SP1 installed and I have created a Web Deployment Project with the following items selected in the...
2
1730
by: Mike P | last post by:
I have a HTML menu that I want to add some C# code around which will include a variable declaration and an if statement. How do I add this code within my HTML? *If statement here, if true then show div <div id="idButton3" class="otherLeftBarLink" onmouseover="javascript: changeStylesMouseOver('3');" onmouseout="javascript: changeStylesMouseOut('3');" onclick="location='/AllProjects.aspx'"> <div class="leftBarLinkText"> All Projects
0
10135
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
11532
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
11299
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10662
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9864
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8219
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6087
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6308
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3511
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.