Click here to Skip to main content
15,897,518 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRelation with CMS & KMS Pin
nkmkrishna26-Feb-09 0:00
nkmkrishna26-Feb-09 0:00 
AnswerRe: Relation with CMS & KMS Pin
J4amieC26-Feb-09 0:12
J4amieC26-Feb-09 0:12 
QuestionHow can I send image tage in Response.Write Pin
Naveed72725-Feb-09 23:56
Naveed72725-Feb-09 23:56 
AnswerRe: How can I send image tage in Response.Write Pin
Anurag Gandhi26-Feb-09 1:29
professionalAnurag Gandhi26-Feb-09 1:29 
QuestionOpinion about ajax Pin
Shyam K Pananghat25-Feb-09 23:33
Shyam K Pananghat25-Feb-09 23:33 
AnswerRe: Opinion about ajax Pin
Christian Graus26-Feb-09 8:53
protectorChristian Graus26-Feb-09 8:53 
Questionexport dataset to excel file Pin
bhavna432125-Feb-09 23:03
bhavna432125-Feb-09 23:03 
AnswerRe: export dataset to excel file Pin
Tarini Singh26-Feb-09 2:10
Tarini Singh26-Feb-09 2:10 
Hi Bhavna,
The requirement is fissible via Gridview control or XmlDocument
but I think your requirement is without gridview,
We need to do the requirement as below

DataSet DS = somevalueDataSet();
XmlDataDocument xdd = new XmlDataDocument(DS);
XslTransform xt = new XslTransform();
string workingdir = AppDomain.CurrentDomain.BaseDirectory + "/" + "xslSheet.xsl";
xt.Load(workingdir);
string dirPath = AppDomain.CurrentDomain.BaseDirectory + "/" + "GeneratedFR";
string filePath = AppDomain.CurrentDomain.BaseDirectory + "/" + "GeneratedFR" + "/" + "Test1.xls";
if (!Directory.Exists(dirPath))
{
Directory.CreateDirectory(dirPath);
}
File.Delete(filePath);
FileStream fs = new FileStream(filePath, FileMode.Create);
using(fs)
{
xt.Transform(xdd,null,fs);
fs.Close();
}

Questionconnect to the database? Pin
che_kar25-Feb-09 22:47
che_kar25-Feb-09 22:47 
AnswerRe: connect to the database? Pin
N a v a n e e t h25-Feb-09 23:11
N a v a n e e t h25-Feb-09 23:11 
QuestionLive Broadcast Pin
ashutosh kumar jha25-Feb-09 22:27
ashutosh kumar jha25-Feb-09 22:27 
QuestionCalendar? Pin
Karthick_gc25-Feb-09 19:58
Karthick_gc25-Feb-09 19:58 
AnswerRe: Calendar? Pin
Christian Graus25-Feb-09 20:21
protectorChristian Graus25-Feb-09 20:21 
GeneralRe: Calendar? Pin
Karthick_gc25-Feb-09 20:29
Karthick_gc25-Feb-09 20:29 
GeneralRe: Calendar? Pin
N a v a n e e t h25-Feb-09 21:03
N a v a n e e t h25-Feb-09 21:03 
Questioncopying rows from one gridview to another.. Pin
scar_face25-Feb-09 19:54
scar_face25-Feb-09 19:54 
AnswerRe: copying rows from one gridview to another.. Pin
Christian Graus25-Feb-09 20:28
protectorChristian Graus25-Feb-09 20:28 
QuestionRe: copying rows from one gridview to another.. Pin
scar_face25-Feb-09 20:59
scar_face25-Feb-09 20:59 
AnswerRe: copying rows from one gridview to another.. Pin
Expert Coming25-Feb-09 21:13
Expert Coming25-Feb-09 21:13 
QuestionRe: copying rows from one gridview to another.. Pin
scar_face25-Feb-09 23:29
scar_face25-Feb-09 23:29 
Questiongetting error while taking output parameter in sybase procedure Pin
Praneeth Babu K25-Feb-09 19:43
Praneeth Babu K25-Feb-09 19:43 
AnswerRe: getting error while taking output parameter in sybase procedure Pin
Christian Graus25-Feb-09 19:49
protectorChristian Graus25-Feb-09 19:49 
Questionhow to create a link in data grid view Pin
susanta patra25-Feb-09 19:34
susanta patra25-Feb-09 19:34 
AnswerRe: how to create a link in data grid view Pin
Christian Graus25-Feb-09 19:50
protectorChristian Graus25-Feb-09 19:50 
QuestionHow to pass values from javascript to server-side Pin
ratnakar_ravi25-Feb-09 19:20
ratnakar_ravi25-Feb-09 19:20 

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.