Hi,

I'm trying to pass some parameters from my accountbase
table in a new URL (in isv.config). What is the syntax?

Thanks

Sylvie

Re: how to pass param in URL (isv.config) by Stephen

Stephen
Mon Aug 02 15:13:35 CDT 2004

Sylvie,

When you set your button to pass parameters, it will only pass 2 - oId and
oType. oId is the entity of the record (accountid, contactid, etc.) and the
oType is the type of record (there is an enum for these - otAccount,
otActivity, etc.)

When your asp/aspx page recieves the id, you can query the account table for
the fields that you need.


Stephen

"Sylvie" <sylvie.mondoux@proximi-t.com> wrote in message
news:9bc001c478c5$f14c81f0$a501280a@phx.gbl...
> Hi,
>
> I'm trying to pass some parameters from my accountbase
> table in a new URL (in isv.config). What is the syntax?
>
> Thanks
>
> Sylvie



Re: how to pass param in URL (isv.config) by John

John
Wed Aug 04 14:23:01 CDT 2004

Steve

I seem to remember that in fact many parameters are passed. For instance if
I have a line of code like this

string id=Request.Params["oId"]; then i just get the object id.
however if i do this
string id=Request.Params[""];
and then do a Response.Write(id); you will see a lot of parameters

of course this was a long time ago so I may have imagined it :-)

--
John O'Donnell
Microsoft CRM MVP
http://www.microsoft.com/BusinessSolutions/Community/CRMFaqLanding.aspx


"Stephen Redmond" <noreply__stephen@crm.ie> wrote in message
news:eIBfy0MeEHA.3392@TK2MSFTNGP12.phx.gbl...
> Sylvie,
>
> When you set your button to pass parameters, it will only pass 2 - oId and
> oType. oId is the entity of the record (accountid, contactid, etc.) and
the
> oType is the type of record (there is an enum for these - otAccount,
> otActivity, etc.)
>
> When your asp/aspx page recieves the id, you can query the account table
for
> the fields that you need.
>
>
> Stephen
>
> "Sylvie" <sylvie.mondoux@proximi-t.com> wrote in message
> news:9bc001c478c5$f14c81f0$a501280a@phx.gbl...
> > Hi,
> >
> > I'm trying to pass some parameters from my accountbase
> > table in a new URL (in isv.config). What is the syntax?
> >
> > Thanks
> >
> > Sylvie
>
>



Re: how to pass param in URL (isv.config) by Stephen

Stephen
Thu Aug 05 10:43:50 CDT 2004

Hi John,

I tested this with a simple piece of ASP to itterate through the QueryString
collection. This is what returns off Account:

oType - 1
oId - {1E5816A4-EF92-4446-BE6E-A2ABF231A88D}

Only the two.


Stephen


"John O'Donnell" <csharpconsulting@nospam-hotmail.com-nospam> wrote in
message news:OuBK2hleEHA.708@TK2MSFTNGP09.phx.gbl...
> Steve
>
> I seem to remember that in fact many parameters are passed. For instance
if
> I have a line of code like this
>
> string id=Request.Params["oId"]; then i just get the object id.
> however if i do this
> string id=Request.Params[""];
> and then do a Response.Write(id); you will see a lot of parameters
>
> of course this was a long time ago so I may have imagined it :-)
>
> --
> John O'Donnell
> Microsoft CRM MVP
> http://www.microsoft.com/BusinessSolutions/Community/CRMFaqLanding.aspx
>
>
> "Stephen Redmond" <noreply__stephen@crm.ie> wrote in message
> news:eIBfy0MeEHA.3392@TK2MSFTNGP12.phx.gbl...
> > Sylvie,
> >
> > When you set your button to pass parameters, it will only pass 2 - oId
and
> > oType. oId is the entity of the record (accountid, contactid, etc.) and
> the
> > oType is the type of record (there is an enum for these - otAccount,
> > otActivity, etc.)
> >
> > When your asp/aspx page recieves the id, you can query the account table
> for
> > the fields that you need.
> >
> >
> > Stephen
> >
> > "Sylvie" <sylvie.mondoux@proximi-t.com> wrote in message
> > news:9bc001c478c5$f14c81f0$a501280a@phx.gbl...
> > > Hi,
> > >
> > > I'm trying to pass some parameters from my accountbase
> > > table in a new URL (in isv.config). What is the syntax?
> > >
> > > Thanks
> > >
> > > Sylvie
> >
> >
>
>



Re: how to pass param in URL (isv.config) by John

John
Thu Aug 05 15:08:39 CDT 2004

weird.....

i'll make a point of trying some code :-) and follow up here

--
John O'Donnell
Microsoft CRM MVP
http://www.microsoft.com/BusinessSolutions/Community/CRMFaqLanding.aspx


"Stephen Redmond" <noreply__stephen@crm.ie> wrote in message
news:ecI5%23LweEHA.396@TK2MSFTNGP12.phx.gbl...
> Hi John,
>
> I tested this with a simple piece of ASP to itterate through the
QueryString
> collection. This is what returns off Account:
>
> oType - 1
> oId - {1E5816A4-EF92-4446-BE6E-A2ABF231A88D}
>
> Only the two.
>
>
> Stephen
>
>
> "John O'Donnell" <csharpconsulting@nospam-hotmail.com-nospam> wrote in
> message news:OuBK2hleEHA.708@TK2MSFTNGP09.phx.gbl...
> > Steve
> >
> > I seem to remember that in fact many parameters are passed. For instance
> if
> > I have a line of code like this
> >
> > string id=Request.Params["oId"]; then i just get the object id.
> > however if i do this
> > string id=Request.Params[""];
> > and then do a Response.Write(id); you will see a lot of parameters
> >
> > of course this was a long time ago so I may have imagined it :-)
> >
> > --
> > John O'Donnell
> > Microsoft CRM MVP
> > http://www.microsoft.com/BusinessSolutions/Community/CRMFaqLanding.aspx
> >
> >
> > "Stephen Redmond" <noreply__stephen@crm.ie> wrote in message
> > news:eIBfy0MeEHA.3392@TK2MSFTNGP12.phx.gbl...
> > > Sylvie,
> > >
> > > When you set your button to pass parameters, it will only pass 2 - oId
> and
> > > oType. oId is the entity of the record (accountid, contactid, etc.)
and
> > the
> > > oType is the type of record (there is an enum for these - otAccount,
> > > otActivity, etc.)
> > >
> > > When your asp/aspx page recieves the id, you can query the account
table
> > for
> > > the fields that you need.
> > >
> > >
> > > Stephen
> > >
> > > "Sylvie" <sylvie.mondoux@proximi-t.com> wrote in message
> > > news:9bc001c478c5$f14c81f0$a501280a@phx.gbl...
> > > > Hi,
> > > >
> > > > I'm trying to pass some parameters from my accountbase
> > > > table in a new URL (in isv.config). What is the syntax?
> > > >
> > > > Thanks
> > > >
> > > > Sylvie
> > >
> > >
> >
> >
>
>