Click here to Skip to main content
15,887,135 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionInstead of http://localhost:3112/ I need to use the Current servername Pin
getaccessyr23-Sep-09 3:09
getaccessyr23-Sep-09 3:09 
AnswerRe: Instead of http://localhost:3112/ I need to use the Current servername Pin
Nisha Agrawal23-Sep-09 3:18
Nisha Agrawal23-Sep-09 3:18 
AnswerRe: Instead of http://localhost:3112/ I need to use the Current servername Pin
Abhijit Jana23-Sep-09 3:19
professionalAbhijit Jana23-Sep-09 3:19 
GeneralRe: Instead of http://localhost:3112/ I need to use the Current servername Pin
getaccessyr23-Sep-09 3:41
getaccessyr23-Sep-09 3:41 
GeneralRe: Instead of http://localhost:3112/ I need to use the Current servername Pin
Abhishek Sur23-Sep-09 10:06
professionalAbhishek Sur23-Sep-09 10:06 
QuestionHow to display xml string on asp.net page [modified] Pin
Calla23-Sep-09 3:08
Calla23-Sep-09 3:08 
AnswerRe: How to display xml string on asp.net page Pin
Abhishek Sur23-Sep-09 10:17
professionalAbhishek Sur23-Sep-09 10:17 
GeneralRe: How to display xml string on asp.net page Pin
Calla24-Sep-09 20:30
Calla24-Sep-09 20:30 
Yes, this was exactly what I was looking for. Thank you!
Though I had to add one more line of code to get the string to show as XML. The code snippet I use is this:

Response.Clear();
XmlDocument doc = new XmlDocument();
doc.LoadXml(xmlString);
doc.Save(Response.OutputStream);
Response.ContentType = "text/xml"; // -> Added this line to show the XML properly.
Response.Flush();
Response.Close();

GeneralRe: How to display xml string on asp.net page Pin
Abhishek Sur25-Sep-09 10:41
professionalAbhishek Sur25-Sep-09 10:41 
Questionspgridview groping Pin
ptvce23-Sep-09 3:02
ptvce23-Sep-09 3:02 
AnswerRe: spgridview groping Pin
Abhijit Jana23-Sep-09 6:49
professionalAbhijit Jana23-Sep-09 6:49 
GeneralRe: spgridview groping Pin
Member 339523123-Sep-09 19:20
Member 339523123-Sep-09 19:20 
Questionunable to retrieve folder information from the server vs 2003 Pin
myms.net23-Sep-09 3:01
myms.net23-Sep-09 3:01 
AnswerRe: unable to retrieve folder information from the server vs 2003 Pin
Abhijit Jana23-Sep-09 3:03
professionalAbhijit Jana23-Sep-09 3:03 
GeneralRe: unable to retrieve folder information from the server vs 2003 Pin
myms.net23-Sep-09 3:23
myms.net23-Sep-09 3:23 
QuestionApp_Data folder Pin
rinku soni 2323-Sep-09 2:50
rinku soni 2323-Sep-09 2:50 
AnswerRe: App_Data folder Pin
Abhijit Jana23-Sep-09 3:02
professionalAbhijit Jana23-Sep-09 3:02 
QuestionUploading a file Pin
dptalt23-Sep-09 2:34
dptalt23-Sep-09 2:34 
AnswerRe: Uploading a file Pin
Manas Bhardwaj23-Sep-09 2:37
professionalManas Bhardwaj23-Sep-09 2:37 
JokeRe: Uploading a file Pin
Abhijit Jana23-Sep-09 2:46
professionalAbhijit Jana23-Sep-09 2:46 
GeneralRe: Uploading a file Pin
Manas Bhardwaj23-Sep-09 3:05
professionalManas Bhardwaj23-Sep-09 3:05 
GeneralRe: Uploading a file Pin
Abhijit Jana23-Sep-09 3:35
professionalAbhijit Jana23-Sep-09 3:35 
GeneralRe: Uploading a file Pin
sashidhar23-Sep-09 6:16
sashidhar23-Sep-09 6:16 
GeneralRe: Uploading a file Pin
Abhijit Jana23-Sep-09 6:50
professionalAbhijit Jana23-Sep-09 6:50 
GeneralRe: Uploading a file Pin
dptalt23-Sep-09 3:10
dptalt23-Sep-09 3:10 

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.