|
 |
aspx_beginners thread: Unhandled Exception
Message #1 by "Nalini Balasubramanyam" <nalini@t...> on Wed, 12 Apr 2000 17:02:38 +0530
|
|
Hello
I designed a form in VB.NET by connecting to database, using ADODB, when i
run the application i get the following error,
An unhandled exception of type 'System.Data.OleDb.OleDbException' occurred
in system.data.dll
Nalini Balasubramanyam
-----Original Message-----
From: Rob Taylor [mailto:rob@t...]
Sent: Friday, April 12, 2002 4:19 AM
To: aspx_beginners
Subject: [aspx_beginners] RE: .NET Support in Front Page?
You can add the .aspx extension in Front Page which I was unaware of.
Tools >> Options >> Configure editors
I still don't know what this does to the drag and drop world of Front Page
however.
A lot of the menu options are disabled when opening .aspx file insiode Front
Page.
The problem is staying away from it is fine for you and me but I have
clients who
update their own sites. Add pages etc... And for various reasons these
pages
still need to be named.asp or now .aspx. For example I have light login
monitoring
on some of my asp apps which enable them to add new pages and just pop an
include file in. Which leads me to my next question. Does login monitoring
in
the web.config file require all monitored files top have . aspx extension?
I think Front Page will work fine for them.
Thanks,
Rob
----- Original Message -----
From: "McCloy, Russell" <Russell.McCloy@B...>
To: "aspx_beginners" <aspx_beginners@p...>
Sent: Thursday, April 11, 2002 6:37 PM
Subject: [aspx_beginners] RE: .NET Support in Front Page?
> Dreamweaver plans to support .NET but I dont know about FrontPage.
> I would stay away from it if you can!
>
> RuSs
>
> -----Original Message-----
> From: Rob Taylor [mailto:taylo@g...]
> Sent: Friday, 12 April 2002 5:34 AM
> To: aspx_beginners
> Subject: [aspx_beginners] .NET Support in Front Page?
>
>
> Does Front Page 2002 support the .aspx extension and does anybody know
when
> or if Microsoft will have .NET support in Front Page? I have several
> clients who manage their own web sites and it is really getting in the way
> of implementing new .NET development. I have looked all over and found
> nothing on it.
>
> Thanks,
>
> Rob
>
>
>
>
>
>
>
Message #2 by "Minh T. Nguyen" <nguyentriminh@y...> on Fri, 12 Apr 2002 09:47:55 -0700
|
|
Nalini,
Tell us more about this. Do you know which part of the code
throws this exception? You can also try to catch the exception and then
print out the exception's message to know more about the actual problem:
try {
// your code
} catch (OleDbException ex) {
Response.Write(ex.Message);
}
Minh.
-----Original Message-----
From: Nalini Balasubramanyam [mailto:nalini@t...]
Sent: Wednesday, April 12, 2000 4:33 AM
To: aspx_beginners
Subject: [aspx_beginners] Unhandled Exception
Hello
I designed a form in VB.NET by connecting to database, using ADODB, when
i
run the application i get the following error,
An unhandled exception of type 'System.Data.OleDb.OleDbException'
occurred
in system.data.dll
Nalini Balasubramanyam
|
|
 |