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
webpage in winform
Collapse
X
-
Tags: None
-
Originally posted by OuTCasTSystem.Diagnost ics.Process.Sta rt("http://www.WebPage.com ")
try that
oh thank u,thanks a lot its working perfectly.Comment
-
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 javascriptComment
-
You'll have to do this with client side scripting, such as Javascript:
ASP.NET, even AJAX, is still server side and can't interact with the user's browser.Code:<a href="javascript:window.close();">Close This Window</a>
And for future reference, please start new threads for new questions.Comment
-
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 meComment
Comment