Click here to Skip to main content
15,910,234 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to capture the date selected in a pop up Pin
rockyl16-Oct-07 2:40
rockyl16-Oct-07 2:40 
AnswerRe: How to capture the date selected in a pop up [modified] Pin
Sandeep Kumar16-Oct-07 3:00
Sandeep Kumar16-Oct-07 3:00 
AnswerRe: How to capture the date selected in a pop up Pin
kubben16-Oct-07 3:00
kubben16-Oct-07 3:00 
GeneralRe: How to capture the date selected in a pop up Pin
rockyl16-Oct-07 3:08
rockyl16-Oct-07 3:08 
GeneralRe: How to capture the date selected in a pop up Pin
kubben16-Oct-07 3:19
kubben16-Oct-07 3:19 
QuestionCreating a word report like report builder in sql reporting services Pin
pksahoo16-Oct-07 2:15
pksahoo16-Oct-07 2:15 
Questionxml Stream to remote client Pin
hansipet16-Oct-07 2:11
hansipet16-Oct-07 2:11 
AnswerRe: xml Stream to remote client Pin
Ennis Ray Lynch, Jr.16-Oct-07 4:59
Ennis Ray Lynch, Jr.16-Oct-07 4:59 
This will work. Put it as the only code in a page behind file.

protected void Page_Load(object sender, EventArgs e) {
Response.Clear();
Response.ContentType = "text/xml";
XmlSerializer xml = new XmlSerializer(typeof(SomeObject));
xml.Serialize(Response.Output, someObject));
Response.Flush();
Response.Close();
}


Need a C# Consultant? I'm available.


Happiness in intelligent people is the rarest thing I know. -- Ernest Hemingway

QuestionI want to display videos in asp.net Pin
Kurmala16-Oct-07 2:04
Kurmala16-Oct-07 2:04 
AnswerRe: I want to display videos in asp.net Pin
John-ph16-Oct-07 2:08
John-ph16-Oct-07 2:08 
GeneralRe: I want to display videos in asp.net Pin
Kurmala16-Oct-07 2:12
Kurmala16-Oct-07 2:12 
GeneralRe: I want to display videos in asp.net Pin
Kurmala16-Oct-07 2:30
Kurmala16-Oct-07 2:30 
GeneralRe: I want to display videos in asp.net Pin
cst_cfit16-Oct-07 18:50
cst_cfit16-Oct-07 18:50 
Questioni need help to get one layer/pop menu by clicking checkbox Pin
nirmalaakki16-Oct-07 1:55
nirmalaakki16-Oct-07 1:55 
AnswerRe: i need help to get one layer/pop menu by clicking checkbox Pin
Sandeep Kumar16-Oct-07 2:10
Sandeep Kumar16-Oct-07 2:10 
QuestionDisabling the Close button using javascript [modified] Pin
manowj16-Oct-07 1:47
manowj16-Oct-07 1:47 
AnswerRe: Disabling the Close button using javascript Pin
John-ph16-Oct-07 1:56
John-ph16-Oct-07 1:56 
QuestionIts Problem or my mistake Pin
ANKUR2216-Oct-07 1:36
ANKUR2216-Oct-07 1:36 
AnswerRe: Its Problem or my mistake Pin
Christian Graus16-Oct-07 1:54
protectorChristian Graus16-Oct-07 1:54 
AnswerRe: Its Problem or my mistake Pin
Guffa16-Oct-07 2:24
Guffa16-Oct-07 2:24 
QuestionNot getting name from HttpContext.Current.User.Identity.Name Pin
That's Aragon16-Oct-07 1:31
That's Aragon16-Oct-07 1:31 
AnswerRe: Not getting name from HttpContext.Current.User.Identity.Name Pin
Sandeep Kumar16-Oct-07 2:05
Sandeep Kumar16-Oct-07 2:05 
Questionrequest for encryption Pin
SreejithAchutan16-Oct-07 1:30
SreejithAchutan16-Oct-07 1:30 
AnswerRe: request for encryption Pin
John-ph16-Oct-07 1:51
John-ph16-Oct-07 1:51 
QuestionAdvantages of using ObjectDataSource in web application Pin
Vipin.d16-Oct-07 1:26
Vipin.d16-Oct-07 1:26 

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.