ASP.NET Web Site Administration Tool
ASP.NET Web Site Administration Tool
am 09.01.2008 18:36:03 von ChiWhiteSox
Hi
on the login view control at asp.net 2.0, i just found this cool wizard tool
to setup your roles and users on the web project. My question is, how can you
set the users and roles on an existing SQL database? coz right now its
creating it separately as /~ASPNETDB.MDF file.
thanks!
Re: ASP.NET Web Site Administration Tool
am 09.01.2008 19:21:30 von sloan
Another db besides the aspnetdb.mdf
http://weblogs.asp.net/scottgu/archive/2005/08/25/423703.asp x
How to Transfer the Info:
http://sholliday.spaces.live.com/blog/cns!A68482B9628A842A!1 60.entry
"ChiWhiteSox" wrote in message
news:54154435-14EE-4659-8146-54ADD02179E2@microsoft.com...
> Hi
>
> on the login view control at asp.net 2.0, i just found this cool wizard
> tool
> to setup your roles and users on the web project. My question is, how can
> you
> set the users and roles on an existing SQL database? coz right now its
> creating it separately as /~ASPNETDB.MDF file.
>
> thanks!
Re: ASP.NET Web Site Administration Tool
am 14.01.2008 18:35:00 von ChiWhiteSox
thanks so much for the info sir.
im able to transfer all the data on my existing DB, now how do I create my
own create user / roles webpage? On the website->Config Admin tool, on
VS.NET, you use the default site to create user on the IDE mode, i'd like to
have it on my own web project so users can add and define the users
themselves .
thanks again
"sloan" wrote:
> Another db besides the aspnetdb.mdf
> http://weblogs.asp.net/scottgu/archive/2005/08/25/423703.asp x
>
>
> How to Transfer the Info:
> http://sholliday.spaces.live.com/blog/cns!A68482B9628A842A!1 60.entry
>
>
>
>
>
> "ChiWhiteSox" wrote in message
> news:54154435-14EE-4659-8146-54ADD02179E2@microsoft.com...
> > Hi
> >
> > on the login view control at asp.net 2.0, i just found this cool wizard
> > tool
> > to setup your roles and users on the web project. My question is, how can
> > you
> > set the users and roles on an existing SQL database? coz right now its
> > creating it separately as /~ASPNETDB.MDF file.
> >
> > thanks!
>
>
>
Re: ASP.NET Web Site Administration Tool
am 14.01.2008 22:58:05 von sloan
You can't use the WSAT. Its "local only". Which is why it super-sucks,
among other reasons.
You have to code your own pages. The good news .. is that if you do to
MSDN, the examples for these are pratically done.
Just copy and paste some stuff.
But you have to make your own
AssignUsersToRoles.aspx (<
specific)
type pages.
msdn has the actually aspx code for these.
example:
http://msdn2.microsoft.com/en-us/library/system.web.security .membershipuser(VS.80).aspx
has html/aspx code and also code behind for adding a user.
You just gotta keep looking for the examples.
but something with a listbox of users and a listbox of roles...and a "Add
All" "Apply" type stuff.
"ChiWhiteSox" wrote in message
news:E8B1ADD0-100A-40E2-ABD5-159579E6CED1@microsoft.com...
> thanks so much for the info sir.
>
> im able to transfer all the data on my existing DB, now how do I create
> my
> own create user / roles webpage? On the website->Config Admin tool, on
> VS.NET, you use the default site to create user on the IDE mode, i'd like
> to
> have it on my own web project so users can add and define the users
> themselves .
>
> thanks again
>
> "sloan" wrote:
>
>> Another db besides the aspnetdb.mdf
>> http://weblogs.asp.net/scottgu/archive/2005/08/25/423703.asp x
>>
>>
>> How to Transfer the Info:
>> http://sholliday.spaces.live.com/blog/cns!A68482B9628A842A!1 60.entry
>>
>>
>>
>>
>>
>> "ChiWhiteSox" wrote in message
>> news:54154435-14EE-4659-8146-54ADD02179E2@microsoft.com...
>> > Hi
>> >
>> > on the login view control at asp.net 2.0, i just found this cool wizard
>> > tool
>> > to setup your roles and users on the web project. My question is, how
>> > can
>> > you
>> > set the users and roles on an existing SQL database? coz right now its
>> > creating it separately as /~ASPNETDB.MDF file.
>> >
>> > thanks!
>>
>>
>>
Re: ASP.NET Web Site Administration Tool
am 15.01.2008 01:56:01 von ChiWhiteSox
ic, thanks again.
"sloan" wrote:
>
> You can't use the WSAT. Its "local only". Which is why it super-sucks,
> among other reasons.
>
> You have to code your own pages. The good news .. is that if you do to
> MSDN, the examples for these are pratically done.
>
> Just copy and paste some stuff.
>
> But you have to make your own
>
> AssignUsersToRoles.aspx (<
> specific)
>
> type pages.
>
> msdn has the actually aspx code for these.
>
> example:
> http://msdn2.microsoft.com/en-us/library/system.web.security .membershipuser(VS.80).aspx
>
> has html/aspx code and also code behind for adding a user.
>
> You just gotta keep looking for the examples.
>
> but something with a listbox of users and a listbox of roles...and a "Add
> All" "Apply" type stuff.
>
>
>
>
> "ChiWhiteSox" wrote in message
> news:E8B1ADD0-100A-40E2-ABD5-159579E6CED1@microsoft.com...
> > thanks so much for the info sir.
> >
> > im able to transfer all the data on my existing DB, now how do I create
> > my
> > own create user / roles webpage? On the website->Config Admin tool, on
> > VS.NET, you use the default site to create user on the IDE mode, i'd like
> > to
> > have it on my own web project so users can add and define the users
> > themselves .
> >
> > thanks again
> >
> > "sloan" wrote:
> >
> >> Another db besides the aspnetdb.mdf
> >> http://weblogs.asp.net/scottgu/archive/2005/08/25/423703.asp x
> >>
> >>
> >> How to Transfer the Info:
> >> http://sholliday.spaces.live.com/blog/cns!A68482B9628A842A!1 60.entry
> >>
> >>
> >>
> >>
> >>
> >> "ChiWhiteSox" wrote in message
> >> news:54154435-14EE-4659-8146-54ADD02179E2@microsoft.com...
> >> > Hi
> >> >
> >> > on the login view control at asp.net 2.0, i just found this cool wizard
> >> > tool
> >> > to setup your roles and users on the web project. My question is, how
> >> > can
> >> > you
> >> > set the users and roles on an existing SQL database? coz right now its
> >> > creating it separately as /~ASPNETDB.MDF file.
> >> >
> >> > thanks!
> >>
> >>
> >>
>
>
>
Re: ASP.NET Web Site Administration Tool
am 15.01.2008 23:24:18 von ChiWhiteSox
this darkness for ever; that there will come a Saviour for all;
that they are in the world to announce Him to men; that they are expressly
formed to be forerunners and heralds of this great event and to summon all
nations to join with them in the expectation of this Saviour.
To meet with this people is astonishing to me, and seems to me worthy of
attention. I look at the law which they boast of having obtained from God,
and I find it admirable. It is the first law of all and is of such a kind
that, even before the term law was in currency among the Greeks, it had, for
nearly a thousand years earlier, been uninterruptedly accepted and observed
by the Jews. I likewise think it strange that the first law of the world
happens to be the most perfect; so that the greatest legislators have
borrowed their laws from it, as is apparent from the law of the Twelve
Tables at Athens, afterwards taken by the Romans, and as it would be easy to
prove, if Josephus and others had not sufficiently dealt with this subject.
620. Advantages of the Jewish people.--In this search the Jewish people at
once attracts my attention by the number of wonderful and singular facts
which appear about them.
I first see that they are a people wholly composed of brethren, and whereas
all others are formed by the assemblage of an infinity of families, this,
though so wonderfully fruitful, has all sprung from one man al
Re: ASP.NET Web Site Administration Tool
am 15.01.2008 23:47:53 von ChiWhiteSox
and to have stood
self-condemned as guilty of death, they have been comforted with a
joyful and satisfying view, that the mercy and grace of God is
sufficient for them-that their sins, though never so great, shall be no
hindrance to their being accepted; that there is mercy enough in God for
the whole world, and the like-when they give no account of any
particular or distinct thought of Christ. But yet, when the account they
give is duly weighed, and they are a little interrogated about it, it
appears that the revelation of mercy in the gospel is the ground of
their encouragement and hope; and that it is indeed the mercy of God
through Christ that is discovered in them, and that it is depended on in
Him, and not in any wise moved by any thing in them.
Sometimes disconsolate souls have been revived, and brought to rest in
God, by a sweet sense of His grace and faithfulness, in some special
invitation or promise; in which nevertheless there is no particular
mention of Christ, nor is it accompanied with any distinct thought of
Him in their minds: but yet, it is not received as out of Christ, but as
one of the invitations or promises made of God to poor sinners through
His Son Jesus. And such persons afterwards have had clear and distinct
discoveries of Christ, accompanied with lively and special actings of
faith and love towards Him.
Frequently, when persons have first had the gospel-ground of relief
discovered to them, and have been entertaining their minds with the
sweet prospect, they have thought nothing at that time of their being
converted. To see that there is an all-sufficiency in God, and such
plentiful provision made in Christ, after they have been borne down and
sunk with a sense of their guilt and fears of wrath, exceedingly
refres
Re: ASP.NET Web Site Administration Tool
am 16.01.2008 01:37:59 von sloan
determine
all the rest, as one sentence of Epictetus decides the meaning of all the
rest to be the opposite. So far ambiguity exists, but not afterwards.
691. If one of two persons, who are telling silly stories, uses language
with a double meaning, understood in his own circle, while the other uses it
with only one meaning, any one not in the secret, who hears them both talk
in this manner, will pass upon them the same judgment. But, if, afterwards,
in the rest of their conversation one says angelic things, and the other
always dull commonplaces, he will judge that the one spoke in mysteries, and
not the other; the one having sufficiently shown that he is incapable of
such foolishness and capable of being mysterious; and the other that he is
incapable of mystery and capable of foolishness.
The Old Testament is a cipher.
692. There are some that see clearly that man has no other enemy than lust,
which turns him from God, and not God; and that he has no other good than
God, and not a rich land. Let those who believe that the good of man is in
the flesh, and evil in what turns him away from sensual pleasures, satiate
themselves with them, and die in them. But let those who seek God with all
their heart, who are only troubled at not seeing Him, who desire only to
possess Him and have as enemies only those who turn them away from Him, who
are grieved at seeing themselves surrounded and overwhelmed with such
enemies, take comfort. I proclaim to them happy news. There exists a
Redeemer for them. I shall show Him to them. I shall show that there is a
God for them. I shall not show Him to