Click here to Skip to main content
15,912,932 members
Home / Discussions / C#
   

C#

 
GeneralRe: string process Pin
Mohammad Daba'an9-Feb-07 20:36
Mohammad Daba'an9-Feb-07 20:36 
GeneralRe: string process Pin
Mohammad Daba'an9-Feb-07 22:17
Mohammad Daba'an9-Feb-07 22:17 
GeneralSolution Pin
Mohammad Daba'an10-Feb-07 0:24
Mohammad Daba'an10-Feb-07 0:24 
QuestionFetching webpages as IE/Firefox Pin
phimix8-Feb-07 1:53
phimix8-Feb-07 1:53 
AnswerRe: Fetching webpages as IE/Firefox Pin
aSarafian8-Feb-07 2:30
aSarafian8-Feb-07 2:30 
GeneralRe: Fetching webpages as IE/Firefox Pin
phimix8-Feb-07 2:49
phimix8-Feb-07 2:49 
GeneralRe: Fetching webpages as IE/Firefox Pin
Sandeep Akhare8-Feb-07 3:23
Sandeep Akhare8-Feb-07 3:23 
GeneralRe: Fetching webpages as IE/Firefox Pin
Sandeep Akhare8-Feb-07 3:31
Sandeep Akhare8-Feb-07 3:31 
Hi
i have develop one application in which i need to read data from Web page which is written by javascript function i alter my solution by different logic but i got the parameters which are passed to the javascript funciton
read whole by reaading whole respnonse in the stream reader
HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(webPageObject.Url);<br />
				WebProxy myProxy = new WebProxy("10.4.10.66", 80);<br />
			<br />
				myHttpWebRequest.Proxy = myProxy;<br />
				Uri siteUri = new Uri(webPageObject.Url);<br />
				c = new Cookie("chasezip",_wholeZipCode, "/", ".chase.com");<br />
				c2 = new Cookie("marketlist",webPageObject.MarketList, "/", ".chase.com");<br />
			<br />
				myHttpWebRequest.CookieContainer = new CookieContainer();<br />
				<br />
				CookieCollection cookiesBefore= myHttpWebRequest.CookieContainer.GetCookies(siteUri);<br />
				<br />
				myHttpWebRequest.CookieContainer.Add(siteUri, c);<br />
				myHttpWebRequest.CookieContainer.Add(siteUri, c2);<br />
				<br />
				CookieCollection cookiesAfter= myHttpWebRequest.CookieContainer.GetCookies(siteUri);<br />
				<br />
				<br />
				<br />
									<br />
				response = (HttpWebResponse)myHttpWebRequest.GetResponse();<br />
				resStream = response.GetResponseStream();<br />
            <br />
<br />
				_streamReader = new StreamReader(resStream);<br />

Hope i am on right track to understand you

<l>Thanks and Regards
Sandeep

Questionremote again Pin
mihksoft8-Feb-07 1:46
mihksoft8-Feb-07 1:46 
AnswerRe: remote again Pin
Antony M Kancidrowski8-Feb-07 2:10
Antony M Kancidrowski8-Feb-07 2:10 
GeneralRe: remote again Pin
mihksoft8-Feb-07 2:26
mihksoft8-Feb-07 2:26 
GeneralRe: remote again Pin
Antony M Kancidrowski8-Feb-07 2:41
Antony M Kancidrowski8-Feb-07 2:41 
Questionform logic/timing Pin
Planker8-Feb-07 1:35
Planker8-Feb-07 1:35 
AnswerRe: form logic/timing Pin
aSarafian8-Feb-07 1:43
aSarafian8-Feb-07 1:43 
AnswerRe: form logic/timing Pin
Stefan Troschuetz8-Feb-07 1:43
Stefan Troschuetz8-Feb-07 1:43 
GeneralRe: form logic/timing Pin
Planker8-Feb-07 2:11
Planker8-Feb-07 2:11 
QuestionEncode Url?? Pin
tadhg888-Feb-07 1:27
tadhg888-Feb-07 1:27 
AnswerRe: Encode Url?? Pin
Stefan Troschuetz8-Feb-07 1:41
Stefan Troschuetz8-Feb-07 1:41 
GeneralRe: Encode Url?? Pin
tadhg888-Feb-07 3:21
tadhg888-Feb-07 3:21 
AnswerRe: Encode Url?? Pin
Guffa8-Feb-07 2:51
Guffa8-Feb-07 2:51 
GeneralRe: Encode Url?? Pin
tadhg888-Feb-07 3:20
tadhg888-Feb-07 3:20 
QuestionByte Array question Pin
Planker8-Feb-07 1:22
Planker8-Feb-07 1:22 
AnswerRe: Byte Array question Pin
Antony M Kancidrowski8-Feb-07 2:28
Antony M Kancidrowski8-Feb-07 2:28 
AnswerRe: Byte Array question Pin
Guffa8-Feb-07 3:08
Guffa8-Feb-07 3:08 
GeneralRe: Byte Array question Pin
Planker8-Feb-07 3:50
Planker8-Feb-07 3:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.