Click here to Skip to main content
16,020,188 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to retrive a set of photos stored in a single folder and display it in the webpage using C#.net Pin
_AK_31-Oct-06 23:54
_AK_31-Oct-06 23:54 
Newsplease visit this site also. Pin
Haridas.R31-Oct-06 23:17
Haridas.R31-Oct-06 23:17 
GeneralRe: please visit this site also. Pin
_AK_31-Oct-06 23:54
_AK_31-Oct-06 23:54 
GeneralRe: please visit this site also. Pin
Paddy Boyd1-Nov-06 0:08
Paddy Boyd1-Nov-06 0:08 
GeneralRe: please visit this site also. Pin
_AK_1-Nov-06 0:10
_AK_1-Nov-06 0:10 
Questionhow to call javascript from C# application [modified] Pin
Sandeep Akhare31-Oct-06 23:15
Sandeep Akhare31-Oct-06 23:15 
AnswerRe: how to call javascript from C# application Pin
_AK_1-Nov-06 0:07
_AK_1-Nov-06 0:07 
GeneralRe: how to call javascript from C# application Pin
Sandeep Akhare1-Nov-06 0:39
Sandeep Akhare1-Nov-06 0:39 
No Apurva
i am parsing a html page as i have to check the data present on that page
but the thing is that html page is writing that using javascript so i am not getting values return by javascript function


HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(URL);

WebProxy myProxy = new WebProxy("10.4.10.66", 80);

myHttpWebRequest.Proxy = myProxy;
Uri siteUri = new Uri(URL);
// set the cookie
c = new Cookie("chasezip", "zipcode=53701&state=OH&county=Franklin", "/", ".chase.com");
c2 = new Cookie("marketlist", "12|12|12|54|43|324|431|38", "/", ".chase.com");

myHttpWebRequest.CookieContainer = new CookieContainer();

myHttpWebRequest.CookieContainer.Add(siteUri, c);

myHttpWebRequest.CookieContainer.Add(siteUri, c2);

HttpWebResponse response = (HttpWebResponse)myHttpWebRequest.GetResponse();

resStream = response.GetResponseStream();


re = new StreamReader(resStream);

while (!re.EndOfStream)

{

if (line != "")

{


// i am witing the logic to get the data from that html page
// but the problem is that Html page is writing the data by calling javascript
// Now tell me how to get that data
}

D'Oh! | :doh:
Question.NET file system Pin
Exelioindia31-Oct-06 22:18
Exelioindia31-Oct-06 22:18 
AnswerRe: .NET file system Pin
P A N K A J31-Oct-06 22:32
P A N K A J31-Oct-06 22:32 
QuestionShipping CarrierFedEx,Ups,DHL--integrating them with our web applications Pin
Thakur Vikas31-Oct-06 22:11
Thakur Vikas31-Oct-06 22:11 
AnswerRe: Shipping CarrierFedEx,Ups,DHL--integrating them with our web applications Pin
just3ala231-Oct-06 22:17
just3ala231-Oct-06 22:17 
GeneralRe: Shipping CarrierFedEx,Ups,DHL--integrating them with our web applications Pin
Thakur Vikas31-Oct-06 22:23
Thakur Vikas31-Oct-06 22:23 
GeneralRe: Shipping CarrierFedEx,Ups,DHL--integrating them with our web applications Pin
just3ala231-Oct-06 22:42
just3ala231-Oct-06 22:42 
GeneralRe: Shipping CarrierFedEx,Ups,DHL--integrating them with our web applications Pin
Thakur Vikas31-Oct-06 22:51
Thakur Vikas31-Oct-06 22:51 
GeneralRe: Shipping CarrierFedEx,Ups,DHL--integrating them with our web applications Pin
just3ala231-Oct-06 22:56
just3ala231-Oct-06 22:56 
GeneralRe: Shipping CarrierFedEx,Ups,DHL--integrating them with our web applications Pin
Paddy Boyd1-Nov-06 0:26
Paddy Boyd1-Nov-06 0:26 
GeneralRe: Shipping CarrierFedEx,Ups,DHL--integrating them with our web applications Pin
Thakur Vikas1-Nov-06 0:29
Thakur Vikas1-Nov-06 0:29 
GeneralRe: Shipping CarrierFedEx,Ups,DHL--integrating them with our web applications Pin
just3ala21-Nov-06 0:32
just3ala21-Nov-06 0:32 
QuestionCombo box is populating more than once Pin
dev dhoundiyal31-Oct-06 21:52
dev dhoundiyal31-Oct-06 21:52 
AnswerRe: Combo box is populating more than once Pin
P A N K A J31-Oct-06 21:54
P A N K A J31-Oct-06 21:54 
AnswerRe: Combo box is populating more than once Pin
_AK_31-Oct-06 21:57
_AK_31-Oct-06 21:57 
AnswerRe: Combo box is populating more than once Pin
just3ala231-Oct-06 22:15
just3ala231-Oct-06 22:15 
QuestionProblem about debug Pin
taoquandecor31-Oct-06 19:50
taoquandecor31-Oct-06 19:50 
AnswerRe: Problem about debug Pin
Parwej Ahamad31-Oct-06 20:04
professionalParwej Ahamad31-Oct-06 20:04 

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.