Showing posts with label process. Show all posts
Showing posts with label process. Show all posts

Saturday, March 31, 2012

the authentication process of personalization-profile configuration

hi, recently, i came to study asp.net 2.0, and met a problem like this.

the proflie property can let user briefly and conveniently to create personalization properties in actual use, which change the traditional

approach.but because of the personalization, profile property should set authorization and authentication configuration first. and when the

visitor do not login, asp.net has supplied a solution to resovle the situation, after simply setting the configuration <anonymousIdentification

enabled ="true"> , asp.net can record the personalization information for the anonymous visitor automatically. but what, i wonder to konw,

asp.net had done for us? how it can get the indentification of the visitor and make distinction between visitors,and what had

happened to make it possible?

Anonymous user is the one who is not logged in (so it wont bother for asp.net either its you or me, both are anonymous). When a user is not logged in and if the anonymousIdentification is set to true, the AnonymousUserTemplates will be shown as well as AnonymousProfile information. Profile will track individually only of those whose membership was created.

Thanks


thank you for your reply! best wish to you from the east!


Good Luck!

Thanks

-- mark the thread as resolved, if this post answers you!

Thursday, March 22, 2012

The file is being used by some other process

hi ,

Am trying to read from and write to a same xml file.i have no prob when
reading the xml file.but when i write to the same file i get the following
error even after closing the reader object(which is open).

The file is being used by some other process.

regards
JagadeeshJagadeesh:

It'd help if you posted the code, but how are you reading the XML file?
DataSet.ReadXML or XMLReader? I'm guessing from your post it's the latter,
but if that's the case, why are you leaving the reader open? (I may be
misunderstanding your post, but if the reader is closed, how is it still
open?).

Let me see the code and hopefully I can be of more help.

Bill
"Jagadeesh" <jagamsc@.rediffmail.com> wrote in message
news:u$Omqfl2DHA.3196@.TK2MSFTNGP11.phx.gbl...
> hi ,
> Am trying to read from and write to a same xml file.i have no prob when
> reading the xml file.but when i write to the same file i get the following
> error even after closing the reader object(which is open).
> The file is being used by some other process.
> regards
> Jagadeesh