I am using WebBrowser control in my C# winform application, And in URL property I am giving Path of local html file. Below is the code of of my PrintAds.Designer.cs
this.webBrowser1.Url = new System.Uri("D:\\PrintAds.htm", System.UriKind.Absolute);
Every thing is working fine, But I want to add this html file with the project, and I want to dynamically pass the URL to WebBrowser control, How do I do that?
This project is going to be used offline so I cant pass website URL.