How to open .chm ( Help files) through .Net (asp.net + vb.net).
.chm Files
Collapse
X
-
Originally posted by SvenVI know you can open something in a winforms app with the following line (c#):
System.Diagnost ics.Process.Sta rt(@"c:\info.ch m");
I don't know however if this is possible in ASP.NET, but you could try..
Thanks.......
i tried it with asp.net but it is not working.Comment
-
Have you tried the following?
if you .chm is available at:
http://yourserver/yourfile.chm
then, you may be able to open it by:
If you want this to happen on server-side, then you can have the above code spit-out by server code (RegisterClient Script).Code:<script> window.open('http://yourserver/yourfile.chm') </script>
Hope that helps.Comment
Comment