|
Eugene 5/8/2007 |
You can try to use the following code. |
T
|
tim.hidalgo author 5/8/2007 |
You can try to use the following code. System.IO.StringWriter tw = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw); dbGrid_SHORTTABLENAME.RenderControl(hw); string body = tw.ToString(); lib.SendMail(to, subj, body); That's only my guess - I suppose it should help you.
|
|
Eugene 5/8/2007 |
As far you wanted to create input e-mail textbox, you should edit generated code manually. |
T
|
tim.hidalgo author 5/8/2007 |
As far you wanted to create input e-mail textbox, you should edit generated code manually.
|
T
|
tim.hidalgo author 5/9/2007 |
Ok, on this subject I am having some problems with a few things. |
|
Eugene 5/10/2007 |
You are not able to create e-mail and attach file to it on user's pc. |