0
創建電子郵件asp.net批我有一個存儲過程返回153個的電子郵件地址(這個數字可能會有所不同),我加載到SqlDataReader
(r
)。我的電子郵件中繼服務器一次最多可以發送50個電子郵件地址。我怎樣才能創建X組的數量,所以我沒有超過它的限制,從讀者?從DataReader的
Dim myCommand As New SqlCommand("sproc_Get_Emails", myConnection)
myCommand.CommandType = CommandType.StoredProcedure
myCommand.Parameters.Add(New SqlParameter("@List_Type", SqlDbType.Char))
myCommand.Parameters("@List_Type").Value = priority
Dim r As SqlDataReader
myConnection.Open()
r = myCommand.ExecuteReader()
我在一個空白的如何做到這一點。我的想法是沿着這...
'get count of all email addresses and divide by 50, then send each in 50 record batches???
Dim email_count As Integer = 0
'get count and divide by 50
email_count = r.RecordsAffected
Dim list_size As Double = email_count/50
任何幫助將不勝感激。
http://stackoverflow.com/q/11463734/952310 –
你爲什麼標籤C#當你的示例代碼是在VB? –