Click here to Skip to main content
15,900,110 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: Suggestions required for Organizing a Web Solution Pin
Venkatesh Mookkan25-Sep-07 21:16
Venkatesh Mookkan25-Sep-07 21:16 
AnswerRe: Suggestions required for Organizing a Web Solution Pin
monu nair25-Sep-07 21:27
monu nair25-Sep-07 21:27 
GeneralRe: Suggestions required for Organizing a Web Solution Pin
Venkatesh Mookkan25-Sep-07 21:38
Venkatesh Mookkan25-Sep-07 21:38 
QuestionGridview with Hovermenu Pin
Malayil alex25-Sep-07 19:16
Malayil alex25-Sep-07 19:16 
AnswerRe: Gridview with Hovermenu Pin
Imran Khan Pathan25-Sep-07 20:00
Imran Khan Pathan25-Sep-07 20:00 
GeneralRe: Gridview with Hovermenu Pin
Malayil alex25-Sep-07 21:17
Malayil alex25-Sep-07 21:17 
GeneralRe: Gridview with Hovermenu Pin
Imran Khan Pathan25-Sep-07 21:27
Imran Khan Pathan25-Sep-07 21:27 
GeneralRe: Gridview with Hovermenu Pin
Malayil alex25-Sep-07 21:31
Malayil alex25-Sep-07 21:31 
else if (e.CommandName == "Download")
{

string xml = ParseXML(dr.DamageReportXML.ToString());
if (xml != "")
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xml);
DownloadXML(xmlDoc, dr.Id.ToString());
}

}
}
private string ParseXML(string xml)
{
String xslPath = Server.MapPath(@"..\\xslts\\downloadXSL.xsl");
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
if (doc != null)
{
XslCompiledTransform transform = new XslCompiledTransform();
StringWriter sw = new StringWriter();

//Load the xsl stylesheet
transform.Load(xslPath);
transform.Transform(doc, null, sw);
return sw.ToString();
}
return "";
}
GeneralRe: Gridview with Hovermenu Pin
Imran Khan Pathan25-Sep-07 22:07
Imran Khan Pathan25-Sep-07 22:07 
GeneralRe: Gridview with Hovermenu Pin
Malayil alex25-Sep-07 22:30
Malayil alex25-Sep-07 22:30 
GeneralRe: Gridview with Hovermenu Pin
Imran Khan Pathan25-Sep-07 23:09
Imran Khan Pathan25-Sep-07 23:09 
Questiondiference between 2 local datetime instances(client)in minutes using javascript Pin
Md Arif25-Sep-07 18:52
Md Arif25-Sep-07 18:52 
AnswerRe: diference between 2 local datetime instances(client)in minutes using javascript Pin
VenkataRamana.Gali25-Sep-07 19:10
VenkataRamana.Gali25-Sep-07 19:10 
AnswerRe: diference between 2 local datetime instances(client)in minutes using javascript Pin
monu nair25-Sep-07 19:38
monu nair25-Sep-07 19:38 
QuestionSending Email in ASP.NET Pin
.NET- India 25-Sep-07 18:49
.NET- India 25-Sep-07 18:49 
AnswerRe: Sending Email in ASP.NET [modified] Pin
VenkataRamana.Gali25-Sep-07 19:03
VenkataRamana.Gali25-Sep-07 19:03 
GeneralRe: Sending Email in ASP.NET Pin
.NET- India 25-Sep-07 19:10
.NET- India 25-Sep-07 19:10 
GeneralRe: Sending Email in ASP.NET Pin
VenkataRamana.Gali25-Sep-07 19:15
VenkataRamana.Gali25-Sep-07 19:15 
GeneralRe: Sending Email in ASP.NET Pin
.NET- India 25-Sep-07 22:35
.NET- India 25-Sep-07 22:35 
AnswerRe: Sending Email in ASP.NET Pin
monu nair25-Sep-07 19:03
monu nair25-Sep-07 19:03 
AnswerRe: Sending Email in ASP.NET Pin
monu nair25-Sep-07 19:06
monu nair25-Sep-07 19:06 
AnswerRe: Sending Email in ASP.NET Pin
Jintal Patel26-Sep-07 3:16
Jintal Patel26-Sep-07 3:16 
GeneralRe: Sending Email in ASP.NET Pin
.NET- India 26-Sep-07 20:50
.NET- India 26-Sep-07 20:50 
GeneralRe: Sending Email in ASP.NET Pin
Jintal Patel28-Sep-07 0:01
Jintal Patel28-Sep-07 0:01 
Questionhow to get just one record in gridview [modified] Pin
newbieAl25-Sep-07 15:55
newbieAl25-Sep-07 15:55 

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.