Call a exe on client machine from a webform

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Prasad Patil

    #1

    Call a exe on client machine from a webform

    Hi,
    I have a webform, The link on the webform should call the exe program
    installed on the client machine when the user click the link on the webform.
    It should run the exe installed on the client machine. I am not able to run
    the client application from my webform.
    Any suggestions or link would be great help.

    Thanx
    Prasad
  • Patrice

    #2
    Re: Call a exe on client machine from a webform

    And the error is ?

    It's also likely it couldn't work with later browsers (AFAIK you'll nto be
    able to reference a local resource from a page that comes from he "Internet"
    zone (perhaps by adding the site in a more trusted zone ?)

    Try perhaps first with a plain old htm page to see if this is the case.

    Patrice

    --

    "Prasad Patil" <PrasadPatil@di scussions.micro soft.com> a écrit dans le
    message de news:6A067D8F-9484-4677-A373-6A0675420896@mi crosoft.com...[color=blue]
    > Hi,
    > I have a webform, The link on the webform should call the exe program
    > installed on the client machine when the user click the link on the[/color]
    webform.[color=blue]
    > It should run the exe installed on the client machine. I am not able to[/color]
    run[color=blue]
    > the client application from my webform.
    > Any suggestions or link would be great help.
    >
    > Thanx
    > Prasad[/color]


    Comment

    • Tu-Thach

      #3
      RE: Call a exe on client machine from a webform

      You cannot do that. This would be a security issue if you are able to do it.

      "Prasad Patil" wrote:
      [color=blue]
      > Hi,
      > I have a webform, The link on the webform should call the exe program
      > installed on the client machine when the user click the link on the webform.
      > It should run the exe installed on the client machine. I am not able to run
      > the client application from my webform.
      > Any suggestions or link would be great help.
      >
      > Thanx
      > Prasad[/color]

      Comment

      • Nick Malik

        #4
        Re: Call a exe on client machine from a webform

        Normally not allowed. Assuming you provided the EXE to the customer, you
        could always write it to be an ActiveX control that is installed on the
        local machine.

        It would be cool... but hackers would go wild. Can't you just imagine the
        havoc that would cause if it were allowed?

        You could work around this in another way. You could write a seperate
        client app that accesses your web site, determines what you need from the
        site, and opens a local app. That would work. The client app would have to
        be installed on the client machine, of course, and the user would start it
        instead of their browser, so the user will have given you permission to
        start an app locally.

        --- Nick

        "Prasad Patil" <PrasadPatil@di scussions.micro soft.com> wrote in message
        news:6A067D8F-9484-4677-A373-6A0675420896@mi crosoft.com...[color=blue]
        > Hi,
        > I have a webform, The link on the webform should call the exe program
        > installed on the client machine when the user click the link on the[/color]
        webform.[color=blue]
        > It should run the exe installed on the client machine. I am not able to[/color]
        run[color=blue]
        > the client application from my webform.
        > Any suggestions or link would be great help.
        >
        > Thanx
        > Prasad[/color]


        Comment

        Working...