Friday, March 9, 2012
mailto: with multiple email addresses = Invalid URI
"mailto:name@.email1.com;name2@.email2.com;name3@.email3.com" and cannot
get it working. any ideas on how to get this working?
Thanksgot it working...as an expression w/in the navigation tab of Advanced
Textbox Properties
=IIf( IsNothing(Fields!EmailGroupList.Value),
Nothing,("javascript:void(window.open('mailto:" &
Fields!EmailGroupList.Value & "','_blank'))"))
this opens up the mail client and populates the To: field with multiple
addresses.
Monday, February 20, 2012
MAC Address attribute
I need to store MAC Addresses. What is the standard way of storing this
type of attribute? Datatype? I can't find any discussions about this
anywhere.
Thx for any pointers.A MAC address is a binary value. You could store these using a binary data
type (binary or varbinary) or store the hex string notation in a character
datatype (char or varchar). One advantage of a binary data type is lower
space requirements and an advantage of a character data type is that it's a
bit easier to display by application programs.
--
Hope this helps.
Dan Guzman
SQL Server MVP
"xAvailx" <bjzamora@.hotmail.com> wrote in message
news:1123625751.632127.142510@.g43g2000cwa.googlegr oups.com...
> Hi:
> I need to store MAC Addresses. What is the standard way of storing this
> type of attribute? Datatype? I can't find any discussions about this
> anywhere.
> Thx for any pointers.