Click here to Skip to main content
15,908,674 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Enhanced Dropdownlist Pin
Vsree31-Jan-07 19:39
Vsree31-Jan-07 19:39 
AnswerRe: Enhanced Dropdownlist Pin
Vsree31-Jan-07 20:16
Vsree31-Jan-07 20:16 
QuestionAdd elements from one ListBox to another ListBox Using JavaScript Pin
varshavmane31-Jan-07 18:10
varshavmane31-Jan-07 18:10 
AnswerRe: Add elements from one ListBox to another ListBox Using JavaScript Pin
Venkatesh Mookkan31-Jan-07 18:23
Venkatesh Mookkan31-Jan-07 18:23 
GeneralRe: Add elements from one ListBox to another ListBox Using JavaScript Pin
varshavmane31-Jan-07 18:56
varshavmane31-Jan-07 18:56 
GeneralRe: Add elements from one ListBox to another ListBox Using JavaScript Pin
Venkatesh Mookkan1-Feb-07 0:15
Venkatesh Mookkan1-Feb-07 0:15 
Questiontext highlight in pdf files Pin
amrtita31-Jan-07 18:05
amrtita31-Jan-07 18:05 
QuestionWriting the contents of response object into an ExcelSheet Pin
crazy_mads31-Jan-07 16:39
crazy_mads31-Jan-07 16:39 
Following is the code that i have written to write contents of response object into an ExcelSheet.
<br />
                Response.Clear();<br />
                Response.Buffer = true;<br />
                Response.ContentType = "application/vnd.ms-excel";<br />
                Response.Charset = "";<br />
                string sep = "";<br />
                foreach (DataColumn dc in dt.Columns)<br />
                {<br />
                    Response.Write(sep + dc.ColumnName);<br />
                    sep = "\t";<br />
                }<br />
                Response.Write("\n");<br />
<br />
                int count;<br />
                foreach (DataRow drow in dt.Rows)<br />
                {<br />
                    sep = "";<br />
                    for (count = 0; count < dt.Columns.Count; count++)<br />
                    {<br />
                        Response.Write(sep + drow[count].ToString());<br />
                        sep = "\t";<br />
                    }<br />
                    Response.Write("\n");<br />
                }<br />

If less than 30 records are there in the response , its not writting in the excel sheet.


Plzzzz help meFrown | :(

Mads
Questionlogin form Pin
saravanan0531-Jan-07 12:27
saravanan0531-Jan-07 12:27 
AnswerRe: login form Pin
minhpc_bk31-Jan-07 14:15
minhpc_bk31-Jan-07 14:15 
AnswerRe: login form Pin
ednrgc1-Feb-07 3:53
ednrgc1-Feb-07 3:53 
QuestionASP.net/SQL newbie Question Pin
Planker31-Jan-07 11:02
Planker31-Jan-07 11:02 
AnswerRe: ASP.net/SQL newbie Question Pin
minhpc_bk31-Jan-07 14:10
minhpc_bk31-Jan-07 14:10 
GeneralRe: ASP.net/SQL newbie Question Pin
Planker31-Jan-07 16:47
Planker31-Jan-07 16:47 
GeneralRe: ASP.net/SQL newbie Question Pin
minhpc_bk1-Feb-07 0:08
minhpc_bk1-Feb-07 0:08 
QuestionClicking on data in a GridView Pin
dptalt31-Jan-07 10:22
dptalt31-Jan-07 10:22 
AnswerRe: Clicking on data in a GridView Pin
minhpc_bk31-Jan-07 14:09
minhpc_bk31-Jan-07 14:09 
GeneralRe: Clicking on data in a GridView Pin
badgrs31-Jan-07 22:23
badgrs31-Jan-07 22:23 
Questioncurrentdate Pin
saravanan0531-Jan-07 10:20
saravanan0531-Jan-07 10:20 
AnswerRe: currentdate Pin
Guffa31-Jan-07 10:49
Guffa31-Jan-07 10:49 
GeneralRe: hi guffa Pin
saravanan0531-Jan-07 11:14
saravanan0531-Jan-07 11:14 
AnswerRe: hi guffa Pin
Guffa31-Jan-07 13:52
Guffa31-Jan-07 13:52 
AnswerRe: hi guffa Pin
Venkatesh Mookkan31-Jan-07 15:38
Venkatesh Mookkan31-Jan-07 15:38 
GeneralRe: hi guffa Pin
Christian Graus31-Jan-07 16:04
protectorChristian Graus31-Jan-07 16:04 
QuestionAccessing events from outside Pin
Jazeee31-Jan-07 9:52
Jazeee31-Jan-07 9:52 

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.