Search Results

1
vote

How do you programmatically fill in a form and ‘POST’ a web page?

View the source of the page and use the WebRequest class to do the posting. No need to drive IE. Just figure out what IE is sending to the server and replicate that. Using a tool like Fiddler wi …
10
votes

Is it possible to pass a App setting in the web.config to a Common C# class

In any class you can use ConfigurationManager.AppSettings["KeyToSetting"] to access any value in the element of web.config (or app.config) …