Click here to Skip to main content
15,902,904 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Autometic software updation process Pin
Pete O'Hanlon13-Jun-07 2:29
mvePete O'Hanlon13-Jun-07 2:29 
AnswerRe: Autometic software updation process Pin
Vasudevan Deepak Kumar15-Jun-07 3:45
Vasudevan Deepak Kumar15-Jun-07 3:45 
QuestionHow can I created a row clickabe GridView? Pin
kidus1212-Jun-07 16:04
kidus1212-Jun-07 16:04 
AnswerRe: How can I created a row clickabe GridView? Pin
szukuro12-Jun-07 22:09
szukuro12-Jun-07 22:09 
GeneralRe: How can I created a row clickabe GridView? Pin
kidus113-Jun-07 2:45
kidus113-Jun-07 2:45 
GeneralRe: How can I created a row clickabe GridView? Pin
szukuro13-Jun-07 3:57
szukuro13-Jun-07 3:57 
GeneralRe: How can I created a row clickabe GridView? Pin
kidus113-Jun-07 8:06
kidus113-Jun-07 8:06 
QuestionWEBCHARTVIEWER Pin
hifiger200412-Jun-07 4:58
hifiger200412-Jun-07 4:58 
QuestionMS Sharepoint Folders Pin
progman11-Jun-07 22:58
progman11-Jun-07 22:58 
QuestionJavaScript Higtlight Pin
Socheat.Net11-Jun-07 22:19
Socheat.Net11-Jun-07 22:19 
QuestionAudio streaming using AJAX? Pin
jadeqy11-Jun-07 20:08
jadeqy11-Jun-07 20:08 
AnswerRe: Audio streaming using AJAX? Pin
Johnny ²11-Jun-07 22:26
Johnny ²11-Jun-07 22:26 
QuestionAjax Pin
jadeqy11-Jun-07 19:07
jadeqy11-Jun-07 19:07 
AnswerRe: Ajax Pin
Christian Graus12-Jun-07 17:04
protectorChristian Graus12-Jun-07 17:04 
QuestionAccordion Control Pin
devil8511-Jun-07 13:47
devil8511-Jun-07 13:47 
QuestionAsp Website asynchronous calling of other IP device Pin
Reanalyse11-Jun-07 12:37
Reanalyse11-Jun-07 12:37 
AnswerRe: Asp Website asynchronous calling of other IP device Pin
Reanalyse11-Jun-07 15:28
Reanalyse11-Jun-07 15:28 
Question407 proxy authentication requiredd Pin
sujithapril11-Jun-07 5:12
sujithapril11-Jun-07 5:12 
i use a proxy server. so to access the web content i set the proxy property
of request object.while running tha above code i get a error the request was
aborted/cancelled-(invalid length for base 64 array).
if i comment this line p.Credentials = CredentialCache.DefaultCredentials;then i get a error proxy authentication
required 407.else the error is the request was aborted/cancelled (invalid length for base64 array) any help will be appreciated.


try
{
WebRequest req = WebRequest.Create(@"http://www.google.com");
req.Method = "GET";
WebProxy p = new WebProxy(@"http://proxyserver:proxyport", false);
p.Credentials = CredentialCache.DefaultCredentials;
req.PreAuthenticate = true;
req.Proxy = p;
req.Credentials = CredentialCache.DefaultCredentials;
WebResponse res=req.GetResponse();
StreamReader sr = new StreamReader(res.GetResponseStream());
while (sr.ReadLine() != null)
{
Console.Write(sr.ReadLine());
}
}

catch (Exception e)
{
Console.WriteLine(e.Message);
Console.Read();
}
Console.Read();
}




QuestionASP Database grid control error Pin
mon_Dip11-Jun-07 1:11
mon_Dip11-Jun-07 1:11 
QuestionPrint settings on the web page... Pin
pradeep kumarappagari10-Jun-07 22:23
pradeep kumarappagari10-Jun-07 22:23 
AnswerRe: Print settings on the web page... Pin
Guffa11-Jun-07 8:50
Guffa11-Jun-07 8:50 
GeneralRe: Print settings on the web page... Pin
pradeep kumarappagari14-Jun-07 20:53
pradeep kumarappagari14-Jun-07 20:53 
AnswerRe: Print settings on the web page... Pin
Guffa15-Jun-07 8:24
Guffa15-Jun-07 8:24 
Question[Message Deleted] Pin
shantiom10-Jun-07 6:45
shantiom10-Jun-07 6:45 
AnswerRe: ASP / ASP.NET Web Site creation method question Pin
Christian Graus10-Jun-07 13:38
protectorChristian Graus10-Jun-07 13:38 

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.