Writing to Favorites (IE) from aspnet
Writing to Favorites (IE) from aspnet
am 31.01.2008 15:58:48 von randy.buchholz
I would like to be able to build a set of folders and links in the browser
(IE 6+) "favorites" to create semi-static lists of links configured to the
users profile and preferences. I haven't worked with controling browsers so
I'm looking for a place to start. BTW - I'd like to keep as much server
side as possible. Thnx
Re: Writing to Favorites (IE) from aspnet
am 31.01.2008 16:02:41 von Eliyahu Goldin
I am pretty sure it is impossible without special security provisions on
client side. Imagine what can happen if any every will modify your favorites
as they wish.
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"randy.buchholz" wrote in message
news:eF4FKnBZIHA.484@TK2MSFTNGP06.phx.gbl...
>I would like to be able to build a set of folders and links in the browser
>(IE 6+) "favorites" to create semi-static lists of links configured to the
>users profile and preferences. I haven't worked with controling browsers
>so I'm looking for a place to start. BTW - I'd like to keep as much server
>side as possible. Thnx
>
Re: Writing to Favorites (IE) from aspnet
am 31.01.2008 16:41:07 von randy.buchholz
Thought it might be an issue. I'm in a semi-closed environment, so limited
permission changes could be allowed. What about the route like the message
you get at the top of your browser pane that says "do you want to allow...".
Could that be used to open a hole to the browser oblects?
"Eliyahu Goldin" wrote in
message news:um1SypBZIHA.4712@TK2MSFTNGP04.phx.gbl...
>I am pretty sure it is impossible without special security provisions on
>client side. Imagine what can happen if any every will modify your
>favorites as they wish.
>
> --
> Eliyahu Goldin,
> Software Developer
> Microsoft MVP [ASP.NET]
> http://msmvps.com/blogs/egoldin
> http://usableasp.net
>
>
> "randy.buchholz" wrote in message
> news:eF4FKnBZIHA.484@TK2MSFTNGP06.phx.gbl...
>>I would like to be able to build a set of folders and links in the browser
>>(IE 6+) "favorites" to create semi-static lists of links configured to the
>>users profile and preferences. I haven't worked with controling browsers
>>so I'm looking for a place to start. BTW - I'd like to keep as much
>>server side as possible. Thnx
>>
>
>
Re: Writing to Favorites (IE) from aspnet
am 31.01.2008 17:58:58 von Eliyahu Goldin
Yes, it can be done with WSH (Windows Sripting Host) SpecialFolders.
Favorites is one of the special folders. Google for something like
"SpecialFolders wsh favorites" for more info.
All this, of course, is on client side. All server side can do is just to
emit the script text to the client. And you can ask the user to setup
security to allow running WSH scripts for your site with no prompt.
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"randy.buchholz" wrote in message
news:uawez%23BZIHA.5784@TK2MSFTNGP03.phx.gbl...
> Thought it might be an issue. I'm in a semi-closed environment, so
> limited permission changes could be allowed. What about the route like
> the message you get at the top of your browser pane that says "do you want
> to allow...". Could that be used to open a hole to the browser oblects?
>
> "Eliyahu Goldin" wrote in
> message news:um1SypBZIHA.4712@TK2MSFTNGP04.phx.gbl...
>>I am pretty sure it is impossible without special security provisions on
>>client side. Imagine what can happen if any every will modify your
>>favorites as they wish.
>>
>> --
>> Eliyahu Goldin,
>> Software Developer
>> Microsoft MVP [ASP.NET]
>> http://msmvps.com/blogs/egoldin
>> http://usableasp.net
>>
>>
>> "randy.buchholz" wrote in message
>> news:eF4FKnBZIHA.484@TK2MSFTNGP06.phx.gbl...
>>>I would like to be able to build a set of folders and links in the
>>>browser (IE 6+) "favorites" to create semi-static lists of links
>>>configured to the users profile and preferences. I haven't worked with
>>>controling browsers so I'm looking for a place to start. BTW - I'd like
>>>to keep as much server side as possible. Thnx
>>>
>>
>>
>
>
Re: Writing to Favorites (IE) from aspnet
am 31.01.2008 18:08:27 von randy.buchholz
Thanks, "Special Folders" brings up a few places to get started. This
should do what I need.
"Eliyahu Goldin" wrote in
message news:eqQ2wqCZIHA.504@TK2MSFTNGP02.phx.gbl...
> Yes, it can be done with WSH (Windows Sripting Host) SpecialFolders.
> Favorites is one of the special folders. Google for something like
> "SpecialFolders wsh favorites" for more info.
>
> All this, of course, is on client side. All server side can do is just to
> emit the script text to the client. And you can ask the user to setup
> security to allow running WSH scripts for your site with no prompt.
>
> --
> Eliyahu Goldin,
> Software Developer
> Microsoft MVP [ASP.NET]
> http://msmvps.com/blogs/egoldin
> http://usableasp.net
>
>
> "randy.buchholz" wrote in message
> news:uawez%23BZIHA.5784@TK2MSFTNGP03.phx.gbl...
>> Thought it might be an issue. I'm in a semi-closed environment, so
>> limited permission changes could be allowed. What about the route like
>> the message you get at the top of your browser pane that says "do you
>> want to allow...". Could that be used to open a hole to the browser
>> oblects?
>>
>> "Eliyahu Goldin" wrote in
>> message news:um1SypBZIHA.4712@TK2MSFTNGP04.phx.gbl...
>>>I am pretty sure it is impossible without special security provisions on
>>>client side. Imagine what can happen if any every will modify your
>>>favorites as they wish.
>>>
>>> --
>>> Eliyahu Goldin,
>>> Software Developer
>>> Microsoft MVP [ASP.NET]
>>> http://msmvps.com/blogs/egoldin
>>> http://usableasp.net
>>>
>>>
>>> "randy.buchholz" wrote in message
>>> news:eF4FKnBZIHA.484@TK2MSFTNGP06.phx.gbl...
>>>>I would like to be able to build a set of folders and links in the
>>>>browser (IE 6+) "favorites" to create semi-static lists of links
>>>>configured to the users profile and preferences. I haven't worked with
>>>>controling browsers so I'm looking for a place to start. BTW - I'd like
>>>>to keep as much server side as possible. Thnx
>>>>
>>>
>>>
>>
>>
>
>