webpage in winform

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • purnimakhamri
    New Member
    • Aug 2008
    • 13

    webpage in winform

    hi,can anybody tell how to open webpage in winform,i have one button in winform ,if i click on that i want open the webpage, can u plzz tell me how to navigate, not webrowser another way
  • OuTCasT
    Contributor
    • Jan 2008
    • 374

    #2
    System.Diagnost ics.Process.Sta rt("http://www.WebPage.com ")

    try that

    Comment

    • purnimakhamri
      New Member
      • Aug 2008
      • 13

      #3
      Originally posted by OuTCasT
      System.Diagnost ics.Process.Sta rt("http://www.WebPage.com ")

      try that

      oh thank u,thanks a lot its working perfectly.

      Comment

      • OuTCasT
        Contributor
        • Jan 2008
        • 374

        #4
        Originally posted by purnimakhamri
        oh thank u,thanks a lot its working perfectly.
        Ok. Glad to be of assistance.

        --DK--

        Comment

        • purnimakhamri
          New Member
          • Aug 2008
          • 13

          #5
          hi,can u tell me how to close my ajax web page.if i click the close button i want to close the webpage.In winforms it is this.close(); like this i want in webform not in javascript

          Comment

          • Curtis Rutland
            Recognized Expert Specialist
            • Apr 2008
            • 3264

            #6
            You'll have to do this with client side scripting, such as Javascript:
            Code:
            <a href="javascript:window.close();">Close This Window</a>
            ASP.NET, even AJAX, is still server side and can't interact with the user's browser.

            And for future reference, please start new threads for new questions.

            Comment

            • purnimakhamri
              New Member
              • Aug 2008
              • 13

              #7
              thank you, can u tell me how to set back color property for tree node, if i search one name then that parent node only will get expand and shows the particular name ,this is am getting but i want that particular name should highlight , am trying to write like this

              tn.BackColor=co lor.blue;

              but this Back color property is not coming in ajax webform can u plzzz help me

              Comment

              Working...