473,324 Members | 2,002 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,324 software developers and data experts.

vs2005 clobbers converted project

(my original post was inaccurate but this post accurately describes what I
think is a very bad vs2005 bug)

short description...
Deleting a dataset and recreating it from the dataadapter causes VS.Net 2005
to render the associated .resx and .vb file inoperative.

detail...
I converted an asp 1.1 vb.net app using the vs2005 conversion wizard and
then retested the app after conversion.
The app retested successfully - all code was intact.
In the Component Designer, I then deleted a dataset from the designer, then
deleted the .xsd file from the project. Without changing anything in the
associated DataAdapter, I recreated the dataset choosing to include the
dataset in the designer.

After the above change, vs.net 2005 had removed the handles clauses from
both my Page_Load and Page_Init subs ( a seemingly random action). It had
also made major changes to the associated .resx file rendering it useless.
The page would no longer run.

Unless this can be fixed it means that vs2005 can't be used to maintain
projects that contain DataAdapters and Datasets from 1.1./2003.

Please help!

--
Regards,
Gary Blakely
Dec 26 '05 #1
5 1967
Hi Gary,

I've just done some further test according to the scenario you mentioned, I
did reproduce the problem you encountered. Also, it seems the problem is
somewhat caused by the Data Adapter component used in the VS2005 ide, as we
know, in vs 2005 , the new ADO.NET 2.0 model provide the
DataSet/TableAdapter pair to help retrieve datatable from backend database
which much ease the orginal work through Data Adapter/connection +
DataSet..... And seems the problem you encountered (event handler
registering code being removed...) occurs when you edit a page converted
from vs2003 , and that page contains some DataAdpater and Data Command
component objects.... Also, the page.aspx.resx file is another thing
caused by the DataAdapter and Command object, I found that when we editing
the DataAdapter will store some of the info (such as UpdateCommand Text
into the resx file), however, vs 2005 /asp.net 2.0 doesn't support such
resx file which may cause additional error....

So currently I think the recommended means is if we convert such a page
from vs2003/asp.net 1.1, it can still work without change. However, we
should not modify them through the VS 2005 editor(component designer) since
vs 2005 dosn't include them as default components in the toolbox. Instead,
we'll suggest you use the TableAdapter/DataSet pair instead.... And We can
create TAbleAdapter/DataSet separately from page in App_Code dir and use
them in page with much less code than using DataAdapter/Connection +
DataSet.....

In addition, we also recommend you change those "handles mybase.XXX" to
"handles me.XXX" since the latter is the recommended code style according
to the new asp.net page compilation model....

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: "GaryDean" <Ga******@newsgroups.nospam>
| Subject: vs2005 clobbers converted project
| Date: Mon, 26 Dec 2005 10:46:56 -0800
| Lines: 31
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <#q**************@TK2MSFTNGP09.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: user-vcaui3t.dsl.mindspring.com 216.175.72.125
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP09.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:367081
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| (my original post was inaccurate but this post accurately describes what
I
| think is a very bad vs2005 bug)
|
| short description...
| Deleting a dataset and recreating it from the dataadapter causes VS.Net
2005
| to render the associated .resx and .vb file inoperative.
|
| detail...
| I converted an asp 1.1 vb.net app using the vs2005 conversion wizard and
| then retested the app after conversion.
| The app retested successfully - all code was intact.
| In the Component Designer, I then deleted a dataset from the designer,
then
| deleted the .xsd file from the project. Without changing anything in the
| associated DataAdapter, I recreated the dataset choosing to include the
| dataset in the designer.
|
| After the above change, vs.net 2005 had removed the handles clauses from
| both my Page_Load and Page_Init subs ( a seemingly random action). It
had
| also made major changes to the associated .resx file rendering it
useless.
| The page would no longer run.
|
| Unless this can be fixed it means that vs2005 can't be used to maintain
| projects that contain DataAdapters and Datasets from 1.1./2003.
|
| Please help!
|
| --
| Regards,
| Gary Blakely
|
|
|

Dec 27 '05 #2
Steven,
I personally have six asp.net applications having a total of about 300
complex aspx pages and the page average is about 2.5 DataAdapters. So these
1.1 applications have about 750 DataAdapter/Dataset pairs.

When you say that vs2005 is unable to maintain DataAdapters and their
associated Datasets, this is a very big surprise to me and a major
disappointment. Although I haven't evaluated the TableAdapter/Dataset
maintenance alternative yet I am worried that this will make future
maintenance of 1.1 apps much more labor intensive than if we were to stay on
1.1.

Has it been previously known, or announced that vs2005 is unable to maintain
dataadapters and datasets created in vs2003? Are there any other major
surprises in store for me?

Gary
--
Regards,
Gary Blakely
"Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
news:LX**************@TK2MSFTNGXA02.phx.gbl...
Hi Gary,

I've just done some further test according to the scenario you mentioned,
I
did reproduce the problem you encountered. Also, it seems the problem is
somewhat caused by the Data Adapter component used in the VS2005 ide, as
we
know, in vs 2005 , the new ADO.NET 2.0 model provide the
DataSet/TableAdapter pair to help retrieve datatable from backend
database
which much ease the orginal work through Data Adapter/connection +
DataSet..... And seems the problem you encountered (event handler
registering code being removed...) occurs when you edit a page converted
from vs2003 , and that page contains some DataAdpater and Data Command
component objects.... Also, the page.aspx.resx file is another thing
caused by the DataAdapter and Command object, I found that when we editing
the DataAdapter will store some of the info (such as UpdateCommand Text
into the resx file), however, vs 2005 /asp.net 2.0 doesn't support such
resx file which may cause additional error....

So currently I think the recommended means is if we convert such a page
from vs2003/asp.net 1.1, it can still work without change. However, we
should not modify them through the VS 2005 editor(component designer)
since
vs 2005 dosn't include them as default components in the toolbox. Instead,
we'll suggest you use the TableAdapter/DataSet pair instead.... And We
can
create TAbleAdapter/DataSet separately from page in App_Code dir and use
them in page with much less code than using DataAdapter/Connection +
DataSet.....

In addition, we also recommend you change those "handles mybase.XXX" to
"handles me.XXX" since the latter is the recommended code style according
to the new asp.net page compilation model....

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: "GaryDean" <Ga******@newsgroups.nospam>
| Subject: vs2005 clobbers converted project
| Date: Mon, 26 Dec 2005 10:46:56 -0800
| Lines: 31
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <#q**************@TK2MSFTNGP09.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: user-vcaui3t.dsl.mindspring.com 216.175.72.125
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP09.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:367081
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| (my original post was inaccurate but this post accurately describes what
I
| think is a very bad vs2005 bug)
|
| short description...
| Deleting a dataset and recreating it from the dataadapter causes VS.Net
2005
| to render the associated .resx and .vb file inoperative.
|
| detail...
| I converted an asp 1.1 vb.net app using the vs2005 conversion wizard and
| then retested the app after conversion.
| The app retested successfully - all code was intact.
| In the Component Designer, I then deleted a dataset from the designer,
then
| deleted the .xsd file from the project. Without changing anything in
the
| associated DataAdapter, I recreated the dataset choosing to include the
| dataset in the designer.
|
| After the above change, vs.net 2005 had removed the handles clauses from
| both my Page_Load and Page_Init subs ( a seemingly random action). It
had
| also made major changes to the associated .resx file rendering it
useless.
| The page would no longer run.
|
| Unless this can be fixed it means that vs2005 can't be used to maintain
| projects that contain DataAdapters and Datasets from 1.1./2003.
|
| Please help!
|
| --
| Regards,
| Gary Blakely
|
|
|

Dec 27 '05 #3
Thanks for your response Gary,

As for the DataAdapter, their design-time feature mostly target the vs 2003
IDE(design-time implement dosn't change specific to 2005), so when changing
to the VS2005 environment, some of the IDE autogenerating behavior will
cause unexpected behavior in vs 2005 (ans some are conflict with new
asp.net 2.0 compilation model, such as using the page.aspx.resx to store
info....).

However, as for the event handling removing issue, it is not previously
reported, so I'll help you forward this to our dev team. Also, you can
submit problem request through the MSDN product feedback center:

http://lab.msdn.microsoft.com/produc...k/default.aspx

Sorry for the inconvenience it brings you and thanks for your understanding.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: "GaryDean" <Ga******@newsgroups.nospam>
| References: <#q**************@TK2MSFTNGP09.phx.gbl>
<LX**************@TK2MSFTNGXA02.phx.gbl>
| Subject: Re: vs2005 clobbers converted project
| Date: Tue, 27 Dec 2005 09:10:21 -0800
| Lines: 128
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <eV**************@TK2MSFTNGP14.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: user-vcaur7q.dsl.mindspring.com 216.175.108.250
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP14.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:367164
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Steven,
| I personally have six asp.net applications having a total of about 300
| complex aspx pages and the page average is about 2.5 DataAdapters. So
these
| 1.1 applications have about 750 DataAdapter/Dataset pairs.
|
| When you say that vs2005 is unable to maintain DataAdapters and their
| associated Datasets, this is a very big surprise to me and a major
| disappointment. Although I haven't evaluated the TableAdapter/Dataset
| maintenance alternative yet I am worried that this will make future
| maintenance of 1.1 apps much more labor intensive than if we were to stay
on
| 1.1.
|
| Has it been previously known, or announced that vs2005 is unable to
maintain
| dataadapters and datasets created in vs2003? Are there any other major
| surprises in store for me?
|
| Gary
|
|
| --
| Regards,
| Gary Blakely
| "Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
| news:LX**************@TK2MSFTNGXA02.phx.gbl...
| > Hi Gary,
| >
| > I've just done some further test according to the scenario you
mentioned,
| > I
| > did reproduce the problem you encountered. Also, it seems the problem is
| > somewhat caused by the Data Adapter component used in the VS2005 ide,
as
| > we
| > know, in vs 2005 , the new ADO.NET 2.0 model provide the
| > DataSet/TableAdapter pair to help retrieve datatable from backend
| > database
| > which much ease the orginal work through Data Adapter/connection +
| > DataSet..... And seems the problem you encountered (event handler
| > registering code being removed...) occurs when you edit a page converted
| > from vs2003 , and that page contains some DataAdpater and Data Command
| > component objects.... Also, the page.aspx.resx file is another thing
| > caused by the DataAdapter and Command object, I found that when we
editing
| > the DataAdapter will store some of the info (such as UpdateCommand Text
| > into the resx file), however, vs 2005 /asp.net 2.0 doesn't support such
| > resx file which may cause additional error....
| >
| > So currently I think the recommended means is if we convert such a page
| > from vs2003/asp.net 1.1, it can still work without change. However, we
| > should not modify them through the VS 2005 editor(component designer)
| > since
| > vs 2005 dosn't include them as default components in the toolbox.
Instead,
| > we'll suggest you use the TableAdapter/DataSet pair instead.... And We
| > can
| > create TAbleAdapter/DataSet separately from page in App_Code dir and use
| > them in page with much less code than using DataAdapter/Connection +
| > DataSet.....
| >
| > In addition, we also recommend you change those "handles mybase.XXX"
to
| > "handles me.XXX" since the latter is the recommended code style
according
| > to the new asp.net page compilation model....
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| > --------------------
| > | From: "GaryDean" <Ga******@newsgroups.nospam>
| > | Subject: vs2005 clobbers converted project
| > | Date: Mon, 26 Dec 2005 10:46:56 -0800
| > | Lines: 31
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| > | X-RFC2646: Format=Flowed; Original
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| > | Message-ID: <#q**************@TK2MSFTNGP09.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | NNTP-Posting-Host: user-vcaui3t.dsl.mindspring.com 216.175.72.125
| > | Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP09.phx.gbl
| > | Xref: TK2MSFTNGXA02.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:367081
| > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > |
| > | (my original post was inaccurate but this post accurately describes
what
| > I
| > | think is a very bad vs2005 bug)
| > |
| > | short description...
| > | Deleting a dataset and recreating it from the dataadapter causes
VS.Net
| > 2005
| > | to render the associated .resx and .vb file inoperative.
| > |
| > | detail...
| > | I converted an asp 1.1 vb.net app using the vs2005 conversion wizard
and
| > | then retested the app after conversion.
| > | The app retested successfully - all code was intact.
| > | In the Component Designer, I then deleted a dataset from the designer,
| > then
| > | deleted the .xsd file from the project. Without changing anything in
| > the
| > | associated DataAdapter, I recreated the dataset choosing to include
the
| > | dataset in the designer.
| > |
| > | After the above change, vs.net 2005 had removed the handles clauses
from
| > | both my Page_Load and Page_Init subs ( a seemingly random action). It
| > had
| > | also made major changes to the associated .resx file rendering it
| > useless.
| > | The page would no longer run.
| > |
| > | Unless this can be fixed it means that vs2005 can't be used to
maintain
| > | projects that contain DataAdapters and Datasets from 1.1./2003.
| > |
| > | Please help!
| > |
| > | --
| > | Regards,
| > | Gary Blakely
| > |
| > |
| > |
| >
|
|
|

Dec 28 '05 #4
Steven:
Unfortunately there is a bug in your MSDN Profile center page that prevents
me, or anyone else I suspect, from reporting a bug.

It shows my profile and all of the required fields are complete however upon
hitting Continue it simply shows me the page again indicating that required
fields are not filled out - but they are. I tried filling out all fields
but that did not help.

So, because of this apparent bug I can't report the problem. can you help?

(If you need a good ASP developer to help with that site, my services are
available! :)

--
Regards,
Gary Blakely
Dean Blakely & Associates
www.deanblakely.com
"Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
news:z3**************@TK2MSFTNGXA02.phx.gbl...
Thanks for your response Gary,

As for the DataAdapter, their design-time feature mostly target the vs
2003
IDE(design-time implement dosn't change specific to 2005), so when
changing
to the VS2005 environment, some of the IDE autogenerating behavior will
cause unexpected behavior in vs 2005 (ans some are conflict with new
asp.net 2.0 compilation model, such as using the page.aspx.resx to store
info....).

However, as for the event handling removing issue, it is not previously
reported, so I'll help you forward this to our dev team. Also, you can
submit problem request through the MSDN product feedback center:

http://lab.msdn.microsoft.com/produc...k/default.aspx

Sorry for the inconvenience it brings you and thanks for your
understanding.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: "GaryDean" <Ga******@newsgroups.nospam>
| References: <#q**************@TK2MSFTNGP09.phx.gbl>
<LX**************@TK2MSFTNGXA02.phx.gbl>
| Subject: Re: vs2005 clobbers converted project
| Date: Tue, 27 Dec 2005 09:10:21 -0800
| Lines: 128
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <eV**************@TK2MSFTNGP14.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: user-vcaur7q.dsl.mindspring.com 216.175.108.250
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP14.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:367164
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Steven,
| I personally have six asp.net applications having a total of about 300
| complex aspx pages and the page average is about 2.5 DataAdapters. So
these
| 1.1 applications have about 750 DataAdapter/Dataset pairs.
|
| When you say that vs2005 is unable to maintain DataAdapters and their
| associated Datasets, this is a very big surprise to me and a major
| disappointment. Although I haven't evaluated the TableAdapter/Dataset
| maintenance alternative yet I am worried that this will make future
| maintenance of 1.1 apps much more labor intensive than if we were to
stay
on
| 1.1.
|
| Has it been previously known, or announced that vs2005 is unable to
maintain
| dataadapters and datasets created in vs2003? Are there any other major
| surprises in store for me?
|
| Gary
|
|
| --
| Regards,
| Gary Blakely
| "Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
| news:LX**************@TK2MSFTNGXA02.phx.gbl...
| > Hi Gary,
| >
| > I've just done some further test according to the scenario you
mentioned,
| > I
| > did reproduce the problem you encountered. Also, it seems the problem
is
| > somewhat caused by the Data Adapter component used in the VS2005 ide,
as
| > we
| > know, in vs 2005 , the new ADO.NET 2.0 model provide the
| > DataSet/TableAdapter pair to help retrieve datatable from backend
| > database
| > which much ease the orginal work through Data Adapter/connection +
| > DataSet..... And seems the problem you encountered (event handler
| > registering code being removed...) occurs when you edit a page
converted
| > from vs2003 , and that page contains some DataAdpater and Data Command
| > component objects.... Also, the page.aspx.resx file is another
thing
| > caused by the DataAdapter and Command object, I found that when we
editing
| > the DataAdapter will store some of the info (such as UpdateCommand
Text
| > into the resx file), however, vs 2005 /asp.net 2.0 doesn't support
such
| > resx file which may cause additional error....
| >
| > So currently I think the recommended means is if we convert such a
page
| > from vs2003/asp.net 1.1, it can still work without change. However, we
| > should not modify them through the VS 2005 editor(component designer)
| > since
| > vs 2005 dosn't include them as default components in the toolbox.
Instead,
| > we'll suggest you use the TableAdapter/DataSet pair instead.... And
We
| > can
| > create TAbleAdapter/DataSet separately from page in App_Code dir and
use
| > them in page with much less code than using DataAdapter/Connection +
| > DataSet.....
| >
| > In addition, we also recommend you change those "handles mybase.XXX"
to
| > "handles me.XXX" since the latter is the recommended code style
according
| > to the new asp.net page compilation model....
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| > --------------------
| > | From: "GaryDean" <Ga******@newsgroups.nospam>
| > | Subject: vs2005 clobbers converted project
| > | Date: Mon, 26 Dec 2005 10:46:56 -0800
| > | Lines: 31
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| > | X-RFC2646: Format=Flowed; Original
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| > | Message-ID: <#q**************@TK2MSFTNGP09.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | NNTP-Posting-Host: user-vcaui3t.dsl.mindspring.com 216.175.72.125
| > | Path:
TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP09.phx.gbl
| > | Xref: TK2MSFTNGXA02.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:367081
| > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > |
| > | (my original post was inaccurate but this post accurately describes
what
| > I
| > | think is a very bad vs2005 bug)
| > |
| > | short description...
| > | Deleting a dataset and recreating it from the dataadapter causes
VS.Net
| > 2005
| > | to render the associated .resx and .vb file inoperative.
| > |
| > | detail...
| > | I converted an asp 1.1 vb.net app using the vs2005 conversion wizard
and
| > | then retested the app after conversion.
| > | The app retested successfully - all code was intact.
| > | In the Component Designer, I then deleted a dataset from the
designer,
| > then
| > | deleted the .xsd file from the project. Without changing anything
in
| > the
| > | associated DataAdapter, I recreated the dataset choosing to include
the
| > | dataset in the designer.
| > |
| > | After the above change, vs.net 2005 had removed the handles clauses
from
| > | both my Page_Load and Page_Init subs ( a seemingly random action).
It
| > had
| > | also made major changes to the associated .resx file rendering it
| > useless.
| > | The page would no longer run.
| > |
| > | Unless this can be fixed it means that vs2005 can't be used to
maintain
| > | projects that contain DataAdapters and Datasets from 1.1./2003.
| > |
| > | Please help!
| > |
| > | --
| > | Regards,
| > | Gary Blakely
| > |
| > |
| > |
| >
|
|
|

Dec 28 '05 #5
Hi Gary,

So you get the error when try associating your passport with the profile,
as for those fills, you can check the one with red flag which indicate it
need fill or select a value different from the default one..... Based on
my local test, seem the page works well, I can successfully go to the bug
search page.....

Also, if you still encountering problem, you can ask for help through the
"Contact Us" link in the footer of the page....

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


--------------------
| From: "GaryDean" <Ga******@newsgroups.nospam>
| References: <#q**************@TK2MSFTNGP09.phx.gbl>
<LX**************@TK2MSFTNGXA02.phx.gbl>
<eV**************@TK2MSFTNGP14.phx.gbl>
<z3**************@TK2MSFTNGXA02.phx.gbl>
| Subject: Re: vs2005 clobbers converted project
| Date: Wed, 28 Dec 2005 10:38:09 -0800
| Lines: 233
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| Message-ID: <#4**************@TK2MSFTNGP09.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: user-vcaur7q.dsl.mindspring.com 216.175.108.250
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP09.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:367365
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Steven:
| Unfortunately there is a bug in your MSDN Profile center page that
prevents
| me, or anyone else I suspect, from reporting a bug.
|
| It shows my profile and all of the required fields are complete however
upon
| hitting Continue it simply shows me the page again indicating that
required
| fields are not filled out - but they are. I tried filling out all fields
| but that did not help.
|
| So, because of this apparent bug I can't report the problem. can you
help?
|
| (If you need a good ASP developer to help with that site, my services are
| available! :)
|
| --
| Regards,
| Gary Blakely
| Dean Blakely & Associates
| www.deanblakely.com
|
|
| "Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
| news:z3**************@TK2MSFTNGXA02.phx.gbl...
| > Thanks for your response Gary,
| >
| > As for the DataAdapter, their design-time feature mostly target the vs
| > 2003
| > IDE(design-time implement dosn't change specific to 2005), so when
| > changing
| > to the VS2005 environment, some of the IDE autogenerating behavior will
| > cause unexpected behavior in vs 2005 (ans some are conflict with new
| > asp.net 2.0 compilation model, such as using the page.aspx.resx to store
| > info....).
| >
| > However, as for the event handling removing issue, it is not previously
| > reported, so I'll help you forward this to our dev team. Also, you can
| > submit problem request through the MSDN product feedback center:
| >
| > http://lab.msdn.microsoft.com/produc...k/default.aspx
| >
| > Sorry for the inconvenience it brings you and thanks for your
| > understanding.
| >
| > Regards,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| > --------------------
| > | From: "GaryDean" <Ga******@newsgroups.nospam>
| > | References: <#q**************@TK2MSFTNGP09.phx.gbl>
| > <LX**************@TK2MSFTNGXA02.phx.gbl>
| > | Subject: Re: vs2005 clobbers converted project
| > | Date: Tue, 27 Dec 2005 09:10:21 -0800
| > | Lines: 128
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| > | X-RFC2646: Format=Flowed; Original
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| > | Message-ID: <eV**************@TK2MSFTNGP14.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | NNTP-Posting-Host: user-vcaur7q.dsl.mindspring.com 216.175.108.250
| > | Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP14.phx.gbl
| > | Xref: TK2MSFTNGXA02.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:367164
| > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > |
| > | Steven,
| > | I personally have six asp.net applications having a total of about 300
| > | complex aspx pages and the page average is about 2.5 DataAdapters. So
| > these
| > | 1.1 applications have about 750 DataAdapter/Dataset pairs.
| > |
| > | When you say that vs2005 is unable to maintain DataAdapters and their
| > | associated Datasets, this is a very big surprise to me and a major
| > | disappointment. Although I haven't evaluated the TableAdapter/Dataset
| > | maintenance alternative yet I am worried that this will make future
| > | maintenance of 1.1 apps much more labor intensive than if we were to
| > stay
| > on
| > | 1.1.
| > |
| > | Has it been previously known, or announced that vs2005 is unable to
| > maintain
| > | dataadapters and datasets created in vs2003? Are there any other
major
| > | surprises in store for me?
| > |
| > | Gary
| > |
| > |
| > | --
| > | Regards,
| > | Gary Blakely
| > | "Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
| > | news:LX**************@TK2MSFTNGXA02.phx.gbl...
| > | > Hi Gary,
| > | >
| > | > I've just done some further test according to the scenario you
| > mentioned,
| > | > I
| > | > did reproduce the problem you encountered. Also, it seems the
problem
| > is
| > | > somewhat caused by the Data Adapter component used in the VS2005
ide,
| > as
| > | > we
| > | > know, in vs 2005 , the new ADO.NET 2.0 model provide the
| > | > DataSet/TableAdapter pair to help retrieve datatable from backend
| > | > database
| > | > which much ease the orginal work through Data Adapter/connection +
| > | > DataSet..... And seems the problem you encountered (event
handler
| > | > registering code being removed...) occurs when you edit a page
| > converted
| > | > from vs2003 , and that page contains some DataAdpater and Data
Command
| > | > component objects.... Also, the page.aspx.resx file is another
| > thing
| > | > caused by the DataAdapter and Command object, I found that when we
| > editing
| > | > the DataAdapter will store some of the info (such as UpdateCommand
| > Text
| > | > into the resx file), however, vs 2005 /asp.net 2.0 doesn't support
| > such
| > | > resx file which may cause additional error....
| > | >
| > | > So currently I think the recommended means is if we convert such a
| > page
| > | > from vs2003/asp.net 1.1, it can still work without change. However,
we
| > | > should not modify them through the VS 2005 editor(component
designer)
| > | > since
| > | > vs 2005 dosn't include them as default components in the toolbox.
| > Instead,
| > | > we'll suggest you use the TableAdapter/DataSet pair instead....
And
| > We
| > | > can
| > | > create TAbleAdapter/DataSet separately from page in App_Code dir
and
| > use
| > | > them in page with much less code than using DataAdapter/Connection +
| > | > DataSet.....
| > | >
| > | > In addition, we also recommend you change those "handles
mybase.XXX"
| > to
| > | > "handles me.XXX" since the latter is the recommended code style
| > according
| > | > to the new asp.net page compilation model....
| > | >
| > | > Thanks,
| > | >
| > | > Steven Cheng
| > | > Microsoft Online Support
| > | >
| > | > Get Secure! www.microsoft.com/security
| > | > (This posting is provided "AS IS", with no warranties, and confers
no
| > | > rights.)
| > | >
| > | >
| > | > --------------------
| > | > | From: "GaryDean" <Ga******@newsgroups.nospam>
| > | > | Subject: vs2005 clobbers converted project
| > | > | Date: Mon, 26 Dec 2005 10:46:56 -0800
| > | > | Lines: 31
| > | > | X-Priority: 3
| > | > | X-MSMail-Priority: Normal
| > | > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| > | > | X-RFC2646: Format=Flowed; Original
| > | > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| > | > | Message-ID: <#q**************@TK2MSFTNGP09.phx.gbl>
| > | > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | > | NNTP-Posting-Host: user-vcaui3t.dsl.mindspring.com 216.175.72.125
| > | > | Path:
| > TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP09.phx.gbl
| > | > | Xref: TK2MSFTNGXA02.phx.gbl
| > | > microsoft.public.dotnet.framework.aspnet:367081
| > | > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > | > |
| > | > | (my original post was inaccurate but this post accurately
describes
| > what
| > | > I
| > | > | think is a very bad vs2005 bug)
| > | > |
| > | > | short description...
| > | > | Deleting a dataset and recreating it from the dataadapter causes
| > VS.Net
| > | > 2005
| > | > | to render the associated .resx and .vb file inoperative.
| > | > |
| > | > | detail...
| > | > | I converted an asp 1.1 vb.net app using the vs2005 conversion
wizard
| > and
| > | > | then retested the app after conversion.
| > | > | The app retested successfully - all code was intact.
| > | > | In the Component Designer, I then deleted a dataset from the
| > designer,
| > | > then
| > | > | deleted the .xsd file from the project. Without changing
anything
| > in
| > | > the
| > | > | associated DataAdapter, I recreated the dataset choosing to
include
| > the
| > | > | dataset in the designer.
| > | > |
| > | > | After the above change, vs.net 2005 had removed the handles
clauses
| > from
| > | > | both my Page_Load and Page_Init subs ( a seemingly random
action).
| > It
| > | > had
| > | > | also made major changes to the associated .resx file rendering it
| > | > useless.
| > | > | The page would no longer run.
| > | > |
| > | > | Unless this can be fixed it means that vs2005 can't be used to
| > maintain
| > | > | projects that contain DataAdapters and Datasets from 1.1./2003.
| > | > |
| > | > | Please help!
| > | > |
| > | > | --
| > | > | Regards,
| > | > | Gary Blakely
| > | > |
| > | > |
| > | > |
| > | >
| > |
| > |
| > |
| >
|
|
|

Dec 29 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Brad | last post by:
I'm not one to rant or flame....so please excuse me while I do so for this once. I've now spent a bit of time working with VS2005 beta 2 to see how it functions for web development, especially how...
56
by: Rob Dob | last post by:
VS2005 is a PIECE of Garbage and is bug Ridden, I wonder how many others feel the same, I am so sorry that I have moved away from VS2003, VS2005 is unstable, and half the stuff doesn't work, ...
10
by: GaryDean | last post by:
A couple of weeks ago I reported a bug in vs2005 where it corrupted projects converted from vs2003 if a 2003 dataset were modified or recreated. Steven Cheng was able to recreate the bug. I ...
12
by: docschnipp | last post by:
I have moved a project from VS2003 to VS2005 and now all references point to ..NET2.0 libs. How can I change this back to 1.1, but still use VS2005? I need this for compatibility reasons. ...
0
by: intrader | last post by:
There are two solution files: one with the ValidationLibrary and another one with a NUnit test project ValidatorTests. When I click on the .sln files wizard pops up that results in a Conversion...
8
by: =?Utf-8?B?UGV0ZXJX?= | last post by:
I install Visual Studio 2005 Pro on Vista. I open and migrate a 2003 web project to 2005. I attempt to browse an aspx file from the Solution Exploer. It displays a blank html page. I create a...
2
by: Chris Paxton | last post by:
I have a fairly basic VB.NET application that I converted from VS2003 to VS2005 and now it crashed the VS2005 IDE pretty regularly while trying to use the form designer. I've removed any 3rd...
3
by: Academia | last post by:
I have a vs2003 project (actually 44 of them) that I want to convert to VS2005 format. To fix a usercontrol file I created the Designer.vb file and moved the Inherited and Class ( change to...
0
by: Academia | last post by:
I have a vs2003 solution that I want to convert to VS2005 format. These projects have been converted and now compile in VS2005. But they had the older format - they is the UI code was in .vb...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.