hi..
i have developed a web application using asp.net2005. my purpose is to run this application in another windows system with the help of url.. we will install only sql server2000 and dot net framework,and finally we will install the deployment "msi" file.. so how can i do this...

Recommended Answers

All 3 Replies

Hi you can use webbrowser control in the windows application.

Best Regards,
Phani

Hi you can use webbrowser control in the windows application.

Best Regards,
Phani

can u tell me briefly ... how is it possible?

simply take a windows application and in that from the toolbox just drag and drop a webbrowser control. You can specify navigate property for webbrowser control as "your webpage link:".

The following is the some code snippet.

private void Form1_Load(object sender, EventArgs e)
        {
            
            webBrowser1.Navigate("WWW.YAHOO.COM");
        }

try it...

Best Regards,
Phani

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.