Showing posts with label create. Show all posts
Showing posts with label create. 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!

Wednesday, March 28, 2012

The best way to construct a page

Hi,

I'm looking for the best way to construct a web page. I have to create a ResourceManager for HMC 4.0.

First I have to list all my mailstore (Name, Mailstore, Free Space), each mailstore can be edited with a button, and I have a button to each mailstore that permit to list all the organizations.

When I Edit the mailstore, I need to have the name and the Mailstore. After I submit my new info, I have to list the mailstore.

If I click on organization I need to list the organizations on the same page. Each organization can be edited or the user can be listed like the organization.

The users can be edited too.

I think that I can do It with an DataGrid and an arrayList(the date isn't in a DB), I can list my mailstore but after that I can't do nothing. I can't get the mailstore name of the line of the button, I can't list the organizations.

I looked on google since 2days and I don't find anything that can help me to do that.

Thank you for your help

Eventhough you can use one grid to view/edit different datasources, it would be difficult if you want customization(appearance, validation etc). What I would suggest is having 3 grids (each one for mailstore, organization and user). Depending upon the user's choice you show the relevant grid and hide all the others.

snakpak:

I can't get the mailstore name of the line of the button, I can't list the organizations.

I couldn't understand the question. Please provide more info.


Where are you storing the data if not in a DB? I prefer to use Datalists to list anything. I make the name / description a link to view the details and include a LinkButton / HyperLink to Edit... Is this what you're looking for?


I used 3 datagrid, it works now! thanks your help

The best way to create graphics files for import

Hello!
I want to use a graphics editor and create some luxurious images with a
graphics package that integrates with Visual Studio. I looked at Macromedia
MX, and Fireworks. Any suggestions?
SpencerI seem to recall that Adobe makes such a product for integration with .Net
apps. Can't remember the name offhand.
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
Ambiguity has a certain quality to it.
"Spencer H. Prue" <SpencerHPrue@dotnet.itags.org.discussions.microsoft.com> wrote in message
news:311189CE-3D02-4DCB-AC7F-9AB2C098FFB0@dotnet.itags.org.microsoft.com...
> Hello!
> I want to use a graphics editor and create some luxurious images with a
> graphics package that integrates with Visual Studio. I looked at
> Macromedia
> MX, and Fireworks. Any suggestions?
>
>
>
> --
> Spencer

The best way to create graphics files for import

Hello!

I want to use a graphics editor and create some luxurious images with a
graphics package that integrates with Visual Studio. I looked at Macromedia
MX, and Fireworks. Any suggestions?

--
SpencerI seem to recall that Adobe makes such a product for integration with .Net
apps. Can't remember the name offhand.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.

"Spencer H. Prue" <SpencerHPrue@dotnet.itags.org.discussions.microsoft.com> wrote in message
news:311189CE-3D02-4DCB-AC7F-9AB2C098FFB0@dotnet.itags.org.microsoft.com...
> Hello!
> I want to use a graphics editor and create some luxurious images with a
> graphics package that integrates with Visual Studio. I looked at
> Macromedia
> MX, and Fireworks. Any suggestions?
>
>
>
> --
> Spencer

The best way to uniquely identify anonymous visitors

What is the best way in which to uniquely identify anonymous visitors
to an asp.net website? I'd like to create on online poll, but I want
to guard against people hitting the refresh button, scripting posts to
the web form, deleting cookies, ect
Does anyone have any ideas or know where I might find any good online
resources?
TIA,
SeanThe best you can do is approximate the number of users by sending a
persistent cookie to each client. Even this approach isn't perfect,
because people can disable cookies, and delete cookies, and multiple
users could share the same computer.
Scott
http://www.OdeToCode.com
On 26 Jul 2004 14:37:55 -0700, muser8@dotnet.itags.org.hotmail.com (muser8@dotnet.itags.org.hotmail.com)
wrote:

>What is the best way in which to uniquely identify anonymous visitors
>to an asp.net website? I'd like to create on online poll, but I want
>to guard against people hitting the refresh button, scripting posts to
>the web form, deleting cookies, ect
>Does anyone have any ideas or know where I might find any good online
>resources?
>TIA,
>Sean
If you are allowing anonymous access then there will always be a away around
what you are requesting. You will have to have a unique identifier and you
can help limit this but it will never be 100%.
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
<muser8@dotnet.itags.org.hotmail.com> wrote in message
news:9cc29557.0407261337.370bba85@dotnet.itags.org.posting.google.com...
> What is the best way in which to uniquely identify anonymous visitors
> to an asp.net website? I'd like to create on online poll, but I want
> to guard against people hitting the refresh button, scripting posts to
> the web form, deleting cookies, ect.
> Does anyone have any ideas or know where I might find any good online
> resources?
> TIA,
> Sean

The best way to uniquely identify anonymous visitors

What is the best way in which to uniquely identify anonymous visitors
to an asp.net website? I'd like to create on online poll, but I want
to guard against people hitting the refresh button, scripting posts to
the web form, deleting cookies, ect

Does anyone have any ideas or know where I might find any good online
resources?

TIA,
SeanThe best you can do is approximate the number of users by sending a
persistent cookie to each client. Even this approach isn't perfect,
because people can disable cookies, and delete cookies, and multiple
users could share the same computer.

--
Scott
http://www.OdeToCode.com

On 26 Jul 2004 14:37:55 -0700, muser8@dotnet.itags.org.hotmail.com (muser8@dotnet.itags.org.hotmail.com)
wrote:

>What is the best way in which to uniquely identify anonymous visitors
>to an asp.net website? I'd like to create on online poll, but I want
>to guard against people hitting the refresh button, scripting posts to
>the web form, deleting cookies, ect
>Does anyone have any ideas or know where I might find any good online
>resources?
>TIA,
>Sean
If you are allowing anonymous access then there will always be a away around
what you are requesting. You will have to have a unique identifier and you
can help limit this but it will never be 100%.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com

<muser8@dotnet.itags.org.hotmail.com> wrote in message
news:9cc29557.0407261337.370bba85@dotnet.itags.org.posting.google.c om...
> What is the best way in which to uniquely identify anonymous visitors
> to an asp.net website? I'd like to create on online poll, but I want
> to guard against people hitting the refresh button, scripting posts to
> the web form, deleting cookies, ect.
> Does anyone have any ideas or know where I might find any good online
> resources?
> TIA,
> Sean

Thursday, March 22, 2012

The grid as a reportwriter

Hi Kenneth,
You can apply crystal reports to create and show
complicated report.
Elton Wang
elton_wang@dotnet.itags.org.hotmail.com

>--Original Message--
>Hi,
>I've planned an app where there's a lot of columns in a
table and because of
>that I'd like to split up the columns when presenting
them in a datagrid.
>I'll give you an example. It's always one year between
every row
>row _type descr amount remAmount rate interest
accruedInterest
> 1 1 Claim1 100000 100000 10 10000
10000
> 2 1 Claim2 100000 200000 10 20000
30000
>row _type descr amount remAmount myRemPart
taxRemPart accrInt myAccPart
> 3 2 Paym1 -200000 30000 119000
51000 0
> 21000
>row _type descr amount remAmount rate interest
accruedInt
> 4 1 Claim3 100000 130000 10
13000 .....
>As you can see both claims and payments are in the same
table (grid) with
>different headers. And in row 3 you can see that total
amount is first taken
>from accruedinterest and then from remainderamount
columns.
>I'd like to have both claims( demands ) and payments to
show up in the same
>grid, so to speak.
>Any ideas?
>TIA
>Kenneth P
>.
>Hi Elton,
I know about reports and CR.
They don't apply here in the first place. I need a report to the screen,
most preferable in a grid, perhaps as a drill down gridreport. When that's
ok, I'll go for the report on paper.
Any ideas?
Kenneth P
"Elton Wang" wrote:

> Hi Kenneth,
> You can apply crystal reports to create and show
> complicated report.
> Elton Wang
> elton_wang@.hotmail.com
>
> table and because of
> them in a datagrid.
> every row
> accruedInterest
> 10000
> 30000
> taxRemPart accrInt myAccPart
> 51000 0
> accruedInt
> 13000 .....
> table (grid) with
> amount is first taken
> columns.
> show up in the same
>
I'm not really clear on exactly what you want to do but here's a couple of
ideas...
First, look at how an ASP.NET DataGrid is actually rendered. It's nothing
more than an HTML table where each <TR> contains data from one row in the
DataGrid's data source and each individual item in that row is rendered as a
<TD> within a given <TR>. You can dress that up quite a bit by using item
templates but that rendering scheme still locks you into a set of <TR> tags,
one for each row of data.
DataLists and DataRepeaters both provide more flexibility. Yet, things work
very
similarly in the sense that they are multiple-value databound controls...so
whatever is rendered is rendered n times, depending on how many row of data
are present in the data source.
The example you gave suggests a Data List. In a DataList, you can put item
values into separate <TR>s, even when they are in the same row of data. Thi
s
is because the <TR> and <TD> tags are explicitly coded in the .aspx file;
they are not impied as in the case of a DataGrid. Things are, by default,
still rendered in a <TABLE>.
A DataRepeater is even more chaotic. No tabluar form is implied, it just
pretty much just spits out the .aspx code as is, except that repitition
is still impled and data binding still occurs. Your mention of a drilldown
grid
makes me think you might need a repeater that has one or more of user
controls embedded in it. As the user clicks various options within the user
controls, the display is changed - possibly by client-side scripts that open
new windows, make things visible or not visible...or whatever you need it to
do.
MSDN has more information but honestly, you may want to look elsewhere. I
never found the MSDN info. on DataGrids, DataLiasts, and DataRepeaters to be
especially helpful.
Good Luck.
"Kenneth P" wrote:
> Hi Elton,
> I know about reports and CR.
> They don't apply here in the first place. I need a report to the screen,
> most preferable in a grid, perhaps as a drill down gridreport. When that's
> ok, I'll go for the report on paper.
> Any ideas?
> Kenneth P
> "Elton Wang" wrote:
>

Tuesday, March 13, 2012

The located assemblys manifest definition with name System.Drawing does not match the asse

I downloaded a control called ASP popup from Eeeksoft.
I then used this on my machine to create a web project. It worked fine.
The project was then literally copied to the server. The problem is that I get the following error now

The located assembly's manifest definition with name 'System.Drawing' does not match the assembly reference.

and it highlights the code for the control.
Please tell me what I am doing wrong.

JagdipSolve it. I think the problem was with version numbers.

The dll I was using was made in Framework 1.1, when I only had Framework 1.0. Luckly, I could get a copy of the dll in Framework 1.0, and the control worked fine after that.