Click here to Skip to main content
15,901,035 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Doubt on searching the site using Indexing Service of Windows Pin
Vasudevan Deepak Kumar7-Aug-07 2:03
Vasudevan Deepak Kumar7-Aug-07 2:03 
QuestionWeb Based Installation Pin
vipin_nvk6-Aug-07 21:03
vipin_nvk6-Aug-07 21:03 
AnswerRe: Web Based Installation Pin
Vasudevan Deepak Kumar6-Aug-07 23:27
Vasudevan Deepak Kumar6-Aug-07 23:27 
Questionhow to display dynamic data in a marquee Pin
San@Coding6-Aug-07 16:45
San@Coding6-Aug-07 16:45 
AnswerRe: how to display dynamic data in a marquee Pin
JimmyRopes6-Aug-07 17:03
professionalJimmyRopes6-Aug-07 17:03 
AnswerRe: how to display dynamic data in a marquee Pin
Vasudevan Deepak Kumar6-Aug-07 23:29
Vasudevan Deepak Kumar6-Aug-07 23:29 
QuestionDisplaying XML string into IE browser Pin
Rafiq Batcha6-Aug-07 13:12
Rafiq Batcha6-Aug-07 13:12 
AnswerRe: Displaying XML string into IE browser Pin
Rafiq Batcha6-Aug-07 13:43
Rafiq Batcha6-Aug-07 13:43 
Hi,

I found the way to do it. Please refer the following code:

protected override void OnLoad(EventArgs e)
{
base.OnLoad (e);

//Load the XML string into browser
if(Session["ExportXML"] != null)
{
Response.Buffer = false;
Response.Clear();
Response.ContentType = "application/xml";
XmlTextWriter xmlWriter = new XmlTextWriter(Response.Output);
xmlWriter.WriteRaw(Session["ExportXML"].ToString());
Response.Close();
xmlWriter.Flush();
xmlWriter.Close();
}
}
AnswerRe: Displaying XML string into IE browser Pin
Vasudevan Deepak Kumar6-Aug-07 23:28
Vasudevan Deepak Kumar6-Aug-07 23:28 
QuestionChecking for updated checkbox value in a gridview Pin
f_coy6-Aug-07 5:14
f_coy6-Aug-07 5:14 
AnswerRe: Checking for updated checkbox value in a gridview Pin
kubben6-Aug-07 6:30
kubben6-Aug-07 6:30 
Questionneed help for javascript MouseDragging Pin
James_Programmer6-Aug-07 3:52
James_Programmer6-Aug-07 3:52 
AnswerRe: need help for javascript MouseDragging Pin
Luay.Essa6-Aug-07 19:02
Luay.Essa6-Aug-07 19:02 
GeneralRe: need help for javascript MouseDragging Pin
James_Programmer6-Aug-07 20:01
James_Programmer6-Aug-07 20:01 
GeneralRe: need help for javascript MouseDragging Pin
Vasudevan Deepak Kumar7-Aug-07 2:04
Vasudevan Deepak Kumar7-Aug-07 2:04 
Questiondifferent beahavior od text property in ascx i cs Pin
kubasa6-Aug-07 3:51
kubasa6-Aug-07 3:51 
AnswerRe: different beahavior od text property in ascx i cs Pin
Vasudevan Deepak Kumar7-Aug-07 2:05
Vasudevan Deepak Kumar7-Aug-07 2:05 
QuestionDisplay the week number after selecting the Date from Date Picker Pin
Oga M5-Aug-07 23:54
Oga M5-Aug-07 23:54 
AnswerRe: Display the week number after selecting the Date from Date Picker Pin
led mike6-Aug-07 4:45
led mike6-Aug-07 4:45 
QuestionSearch Script Pin
UpdateMe5-Aug-07 18:06
UpdateMe5-Aug-07 18:06 
AnswerRe: Search Script Pin
Malcolm Smart5-Aug-07 22:26
Malcolm Smart5-Aug-07 22:26 
GeneralRe: Search Script Pin
Vasudevan Deepak Kumar6-Aug-07 2:10
Vasudevan Deepak Kumar6-Aug-07 2:10 
Questionjava script Pin
Tauseef A5-Aug-07 17:48
Tauseef A5-Aug-07 17:48 
AnswerRe: java script Pin
Michael Sync5-Aug-07 23:52
Michael Sync5-Aug-07 23:52 
AnswerRe: java script Pin
Vasudevan Deepak Kumar7-Aug-07 2:07
Vasudevan Deepak Kumar7-Aug-07 2:07 

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.