Friday, March 9, 2012

mailto: protocol

i am using mailto: protocol in jump to URL. if i hard code the value
(xyz@.microsoft.com), it works fine. But if i try to use
mailto:Fields!email.Value, it throws out an error to me saying "Invalid URI"
Has anyone faced such kind of problem or has a solution for it?
--
Thanks!
AshishDid you try this expression:
="mailto:" & Fields!email.Value
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Ashish" <Ashish@.discussions.microsoft.com> wrote in message
news:9D7D36EE-784E-424C-81CF-BFA53B4173AB@.microsoft.com...
> i am using mailto: protocol in jump to URL. if i hard code the value
> (xyz@.microsoft.com), it works fine. But if i try to use
> mailto:Fields!email.Value, it throws out an error to me saying "Invalid
URI"
> Has anyone faced such kind of problem or has a solution for it?
> --
> Thanks!
> Ashish|||Hi Robert,
Thanks for the reply.
I tried the expression ="mailto:" & Fields!email.Value but everytime it
gives me an error saying "Invalid URI: Hostname could not be parsed"
Thanks
"Robert Bruckner [MSFT]" wrote:
> Did you try this expression:
> ="mailto:" & Fields!email.Value
> --
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
> "Ashish" <Ashish@.discussions.microsoft.com> wrote in message
> news:9D7D36EE-784E-424C-81CF-BFA53B4173AB@.microsoft.com...
> > i am using mailto: protocol in jump to URL. if i hard code the value
> > (xyz@.microsoft.com), it works fine. But if i try to use
> > mailto:Fields!email.Value, it throws out an error to me saying "Invalid
> URI"
> >
> > Has anyone faced such kind of problem or has a solution for it?
> > --
> > Thanks!
> > Ashish
>
>|||Do you have RS 2000 SP1 installed?
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Ashish" <Ashish@.discussions.microsoft.com> wrote in message
news:0A5C0D9C-B4F2-4947-81B5-0854CB00395D@.microsoft.com...
> Hi Robert,
> Thanks for the reply.
> I tried the expression ="mailto:" & Fields!email.Value but everytime it
> gives me an error saying "Invalid URI: Hostname could not be parsed"
> Thanks
> "Robert Bruckner [MSFT]" wrote:
> > Did you try this expression:
> > ="mailto:" & Fields!email.Value
> >
> > --
> > This posting is provided "AS IS" with no warranties, and confers no
rights.
> >
> >
> > "Ashish" <Ashish@.discussions.microsoft.com> wrote in message
> > news:9D7D36EE-784E-424C-81CF-BFA53B4173AB@.microsoft.com...
> > > i am using mailto: protocol in jump to URL. if i hard code the value
> > > (xyz@.microsoft.com), it works fine. But if i try to use
> > > mailto:Fields!email.Value, it throws out an error to me saying
"Invalid
> > URI"
> > >
> > > Has anyone faced such kind of problem or has a solution for it?
> > > --
> > > Thanks!
> > > Ashish
> >
> >
> >|||I had the same problem. If any record in your data set does not return an
email address in the form of name@.abc.com, you will receive that message. I
got around it by setting a default email address to any record that did not
have an email specified.
Hope that helps.
Stan
"Ashish" <Ashish@.discussions.microsoft.com> wrote in message
news:0A5C0D9C-B4F2-4947-81B5-0854CB00395D@.microsoft.com...
> Hi Robert,
> Thanks for the reply.
> I tried the expression ="mailto:" & Fields!email.Value but everytime it
> gives me an error saying "Invalid URI: Hostname could not be parsed"
> Thanks
> "Robert Bruckner [MSFT]" wrote:
> > Did you try this expression:
> > ="mailto:" & Fields!email.Value
> >
> > --
> > This posting is provided "AS IS" with no warranties, and confers no
rights.
> >
> >
> > "Ashish" <Ashish@.discussions.microsoft.com> wrote in message
> > news:9D7D36EE-784E-424C-81CF-BFA53B4173AB@.microsoft.com...
> > > i am using mailto: protocol in jump to URL. if i hard code the value
> > > (xyz@.microsoft.com), it works fine. But if i try to use
> > > mailto:Fields!email.Value, it throws out an error to me saying
"Invalid
> > URI"
> > >
> > > Has anyone faced such kind of problem or has a solution for it?
> > > --
> > > Thanks!
> > > Ashish
> >
> >
> >|||I do have RS 2000 SP 1 installed
One more thing was that how can we add custom subject and body with the
mailto: protocol
Thanks for the help
Ashish
"Robert Bruckner [MSFT]" wrote:
> Do you have RS 2000 SP1 installed?
> --
> This posting is provided "AS IS" with no warranties, and confers no rights.
> "Ashish" <Ashish@.discussions.microsoft.com> wrote in message
> news:0A5C0D9C-B4F2-4947-81B5-0854CB00395D@.microsoft.com...
> > Hi Robert,
> >
> > Thanks for the reply.
> > I tried the expression ="mailto:" & Fields!email.Value but everytime it
> > gives me an error saying "Invalid URI: Hostname could not be parsed"
> >
> > Thanks
> >
> > "Robert Bruckner [MSFT]" wrote:
> >
> > > Did you try this expression:
> > > ="mailto:" & Fields!email.Value
> > >
> > > --
> > > This posting is provided "AS IS" with no warranties, and confers no
> rights.
> > >
> > >
> > > "Ashish" <Ashish@.discussions.microsoft.com> wrote in message
> > > news:9D7D36EE-784E-424C-81CF-BFA53B4173AB@.microsoft.com...
> > > > i am using mailto: protocol in jump to URL. if i hard code the value
> > > > (xyz@.microsoft.com), it works fine. But if i try to use
> > > > mailto:Fields!email.Value, it throws out an error to me saying
> "Invalid
> > > URI"
> > > >
> > > > Has anyone faced such kind of problem or has a solution for it?
> > > > --
> > > > Thanks!
> > > > Ashish
> > >
> > >
> > >
>
>|||Yes, you were right. If any record in the dataset doesn't return any email
then it throws out that error.
Do you know how we can write the custom mail subject and mail body in that
expression.
Thanks for the help
Ashish
"SSVette@.Hotmail.com" wrote:
> I had the same problem. If any record in your data set does not return an
> email address in the form of name@.abc.com, you will receive that message. I
> got around it by setting a default email address to any record that did not
> have an email specified.
> Hope that helps.
> Stan
> "Ashish" <Ashish@.discussions.microsoft.com> wrote in message
> news:0A5C0D9C-B4F2-4947-81B5-0854CB00395D@.microsoft.com...
> > Hi Robert,
> >
> > Thanks for the reply.
> > I tried the expression ="mailto:" & Fields!email.Value but everytime it
> > gives me an error saying "Invalid URI: Hostname could not be parsed"
> >
> > Thanks
> >
> > "Robert Bruckner [MSFT]" wrote:
> >
> > > Did you try this expression:
> > > ="mailto:" & Fields!email.Value
> > >
> > > --
> > > This posting is provided "AS IS" with no warranties, and confers no
> rights.
> > >
> > >
> > > "Ashish" <Ashish@.discussions.microsoft.com> wrote in message
> > > news:9D7D36EE-784E-424C-81CF-BFA53B4173AB@.microsoft.com...
> > > > i am using mailto: protocol in jump to URL. if i hard code the value
> > > > (xyz@.microsoft.com), it works fine. But if i try to use
> > > > mailto:Fields!email.Value, it throws out an error to me saying
> "Invalid
> > > URI"
> > > >
> > > > Has anyone faced such kind of problem or has a solution for it?
> > > > --
> > > > Thanks!
> > > > Ashish
> > >
> > >
> > >
>
>

No comments:

Post a Comment