You can use MS Word to create a mail merge document and set the datasource to the outlook address book. Then you can send all the personalized documents with one "Go".
Tools-> Letters and Mailings -> Mail Merge
Hope it helps
User Profile
Collapse
-
change the procedure
from
CREATE PROCEDURE GetVideoCount ( @VideoCount int OUTPUT )
AS
SELECT @VideoCount = Count(Video_ID) FROM Videos
GO
to
CREATE PROCEDURE GetVideoCount ( )
AS
SELECT Count(Video_ID) FROM Videos
GO
and remove the following lines from your code
Dim paramResult As New SqlParameter
paramResult.Par ameterName...Leave a comment:
-
'Declare a property on a viewstate variable
Public Property Counter() As Integer
Get
Return ViewState("Coun ter")
End Get
Set(ByVal Value As Integer)
ViewState("Coun ter") = Value
End Set
End Property
'then use it as a normal variable
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArg s)...Leave a comment:
-
Are these files Text Files or files of diffirent types?
if the files are text files then the convertion is very easy in .NET
If not then is is a solution for every file type must be found!Leave a comment:
-
It seems to be a directory permission issue to me.
Line
ExportToFile(Re portDocument MyReport, String FileName)[
Possible cause
The ASPNET account (Windows XP , 2K) or NETWORK SERVICE account (Windows 2003 server) do not have write permission to the directory that the pdf file is to be generated.
To be more precise i need the piece of code in which you call the ViewReport.Expo rtToFile(....Leave a comment:
No activity results to display
Show More
Leave a comment: