我正在使用带有 VB.net 的 ASP.NET 3.5 我有一个这样的 DataTable。
RpID LocationServed
---- --------------
1 St. Louis
1 Baltimore
1 Columbus
2 Chicago
2 St. Charles
2 Peoria
2 Nashville
3 Dallas
3 Miami
3 Indianapolis
对于每个代表,我需要发送一封电子邮件,其中包含他们所有的位置服务。
我不太确定如何做到这一点。我正在使用 ASP.NET 4
我的计划是有 2 个循环
<loop1 that has the group by of RepID>
<loop2 can go through the list of items for a given RepID >
strCity = do processing here that will compile a list of the cities for a given rep
</loop2 end>
<send out email a given RepID and then reset strCity >
<loop1 end>
但不太确定解决此问题的最佳方法是什么。