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

ASP.NET

 
GeneralRe: asp.net files Pin
tamir90111-Nov-09 4:27
tamir90111-Nov-09 4:27 
GeneralRe: asp.net files Pin
Abhishek Sur11-Nov-09 4:56
professionalAbhishek Sur11-Nov-09 4:56 
GeneralRe: asp.net files Pin
tamir90111-Nov-09 19:53
tamir90111-Nov-09 19:53 
GeneralRe: asp.net files Pin
Abhishek Sur11-Nov-09 21:33
professionalAbhishek Sur11-Nov-09 21:33 
AnswerRe: asp.net files Pin
Abhijit Jana11-Nov-09 4:57
professionalAbhijit Jana11-Nov-09 4:57 
Questioncan we send the data of gridview through mail Pin
chandra23411-Nov-09 2:50
chandra23411-Nov-09 2:50 
AnswerRe: can we send the data of gridview through mail Pin
Abhijit Jana11-Nov-09 5:11
professionalAbhijit Jana11-Nov-09 5:11 
AnswerRe: can we send the data of gridview through mail Pin
Aman Bhullar11-Nov-09 18:46
Aman Bhullar11-Nov-09 18:46 
As I understand, you have some data in a datagrid on your page, and you want to send the grid contents via email

you should write the following code in the code behind (in the event handler for the clikc event of the submit button).
private void Button1_Click(object sender, System.EventArgs e)
 {
     DataSet BackDataSet = (DataSet) DataGrid1.DataSource;
     string xml = BackDataSet.GetXml();
 }


Once you get the xml as above, you can transform it the way you want to be put in the mail.

Regards
Aman Bhullar
www.arlivesupport.com[^]

QuestionActive Directory Search is computer in group - help please Pin
sismeya11-Nov-09 2:38
sismeya11-Nov-09 2:38 
QuestionHow we can do for fast execution the page Pin
lrsalunkhe11-Nov-09 2:18
lrsalunkhe11-Nov-09 2:18 
AnswerRe: How we can do for fast execution the page Pin
Kannan Ar11-Nov-09 2:30
professionalKannan Ar11-Nov-09 2:30 
AnswerRe: How we can do for fast execution the page Pin
Abhijit Jana11-Nov-09 5:01
professionalAbhijit Jana11-Nov-09 5:01 
Questionwhere can i get cool css for my Gridview ????? Pin
koolprasad200311-Nov-09 2:03
professionalkoolprasad200311-Nov-09 2:03 
AnswerRe: where can i get cool css for my Gridview ????? Pin
Abhijit Jana11-Nov-09 5:08
professionalAbhijit Jana11-Nov-09 5:08 
Questioncrystal report Pin
vikas shukla11-Nov-09 1:09
vikas shukla11-Nov-09 1:09 
AnswerRe: crystal report Pin
Abhishek Sur11-Nov-09 1:33
professionalAbhishek Sur11-Nov-09 1:33 
QuestionRunning ASP.NET from your flash like apache Pin
Chrispie12311-Nov-09 0:26
Chrispie12311-Nov-09 0:26 
AnswerRe: Running ASP.NET from your flash like apache Pin
Abhishek Sur11-Nov-09 0:31
professionalAbhishek Sur11-Nov-09 0:31 
AnswerRe: Running ASP.NET from your flash like apache Pin
sashidhar11-Nov-09 0:51
sashidhar11-Nov-09 0:51 
GeneralRe: Running ASP.NET from your flash like apache Pin
Chrispie12329-Nov-09 20:39
Chrispie12329-Nov-09 20:39 
GeneralRe: Running ASP.NET from your flash like apache Pin
sashidhar29-Nov-09 21:23
sashidhar29-Nov-09 21:23 
QuestionDB access password Pin
Chrispie12311-Nov-09 0:24
Chrispie12311-Nov-09 0:24 
AnswerRe: DB access password Pin
Abhishek Sur11-Nov-09 0:35
professionalAbhishek Sur11-Nov-09 0:35 
GeneralRe: DB access password Pin
Chrispie12311-Nov-09 4:33
Chrispie12311-Nov-09 4:33 
GeneralRe: DB access password Pin
Abhishek Sur11-Nov-09 6:44
professionalAbhishek Sur11-Nov-09 6:44 

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.