473,385 Members | 1,347 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,385 software developers and data experts.

Unhandled Exceptions & Framesets

Hi,
Question:
When using Framesets and Server.Transfer in the
Application_Error event handler is there a mechanism to
get the error page to display in the total view of the
browser not just in the offending frame?

Overview:
I have an application in which I am using framesets. When
an Unhandled exception occurs I try to handle it
gracefully by transfering to an error handling page as
follows:

Global.asax.cs...
protected void Application_Error(Object sender, EventArgs
e)
{
Server.Transfer("ErrorPage.aspx");
}

The problem is that the ErrorPage.aspx is only displayed
in the offending frame not the complete window of the
browser.

Thanks in advance for your help!!!
Terry
Nov 17 '05 #1
5 2248
Hi

You have to return a client script that redirects

<script language="JavaScript">
top.location.href = "errorpage.aspx";
</script>

--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"terry" <te********@msn.com> wrote in message
news:04****************************@phx.gbl...
Hi,
Question:
When using Framesets and Server.Transfer in the
Application_Error event handler is there a mechanism to
get the error page to display in the total view of the
browser not just in the offending frame?

Overview:
I have an application in which I am using framesets. When
an Unhandled exception occurs I try to handle it
gracefully by transfering to an error handling page as
follows:

Global.asax.cs...
protected void Application_Error(Object sender, EventArgs
e)
{
Server.Transfer("ErrorPage.aspx");
}

The problem is that the ErrorPage.aspx is only displayed
in the offending frame not the complete window of the
browser.

Thanks in advance for your help!!!
Terry

Nov 17 '05 #2
Hi,

I tried the following...

web.config files contains the entry:
<customErrors mode="On"></customErrors>

global.asax contains the following:
protected void Application_Error(Object sender, EventArgs
e)
{
System.Web.UI.Page page = (System.Web.UI.Page)
HttpContext.Current.Handler;
string script = "<script>";
script += "top.location.href =
\"ErrorPage.aspx\";";
script += "</script>";
page.RegisterStartupScript("OnStartup", script);

}
The ErrorPage.aspx is not being displayed but I am instead
receving the standard Microsoft error page as below:
Runtime Error
Description: An application error occurred on the server.
The current custom error settings for this application
prevent the details of the application error from being
viewed.

Details: To enable the details of this specific error
message to be viewable on the local server machine, please
create a <customErrors> tag within a "web.config"
configuration file located in the root directory of the
current web application. This <customErrors> tag should
then have its "mode" attribute set to "RemoteOnly". To
enable the details to be viewable on remote machines,
please set "mode" to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be
replaced by a custom error page by modifying
the "defaultRedirect" attribute of the application's
<customErrors> configuration tag to point to a custom
error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="On"
defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>




-----Original Message-----
Hi

You have to return a client script that redirects

<script language="JavaScript">
top.location.href = "errorpage.aspx";
</script>

--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"terry" <te********@msn.com> wrote in message
news:04****************************@phx.gbl...
Hi,
Question:
When using Framesets and Server.Transfer in the
Application_Error event handler is there a mechanism to
get the error page to display in the total view of the
browser not just in the offending frame?

Overview:
I have an application in which I am using framesets. When an Unhandled exception occurs I try to handle it
gracefully by transfering to an error handling page as
follows:

Global.asax.cs...
protected void Application_Error(Object sender, EventArgs e)
{
Server.Transfer("ErrorPage.aspx");
}

The problem is that the ErrorPage.aspx is only displayed
in the offending frame not the complete window of the
browser.

Thanks in advance for your help!!!
Terry

.

Nov 17 '05 #3
Hello Terry,
To open the window you can use the following script on onload Event:

<script>
window.open (" ErrorPage.aspx", "newwin", "fullscreen="yes");
window.opener = self;
self.close();
</script>

You will use the same method by registering the Script using the
page.RegisterStartupScript.
The script will be in the ErrorPage.aspx that you are opening. This code
will open a new window for the error message
and close the one that has frame.

For reference:

onload Event
http://msdn.microsoft.com/library/de...thor/dhtml/ref
erence/events/onload.asp

window Object
http://msdn.microsoft.com/library/de...thor/dhtml/ref
erence/objects/obj_window.asp

open Method
http://msdn.microsoft.com/library/de...thor/dhtml/ref
erence/methods/open_0.asp

Please let me know if this answers your question.

Thanks,
Bassel Tabbara
Microsoft, ASP.NET

This posting is provided "AS IS", with no warranties, and confers no rights.

--------------------
| Content-Class: urn:content-classes:message
| From: "terry" <te********@msn.com>
| Sender: "terry" <te********@msn.com>
| References: <04****************************@phx.gbl>
<OZ**************@TK2MSFTNGP11.phx.gbl>
| Subject: Re: Unhandled Exceptions & Framesets
| Date: Wed, 2 Jul 2003 10:53:42 -0700
| Lines: 128
| Message-ID: <00****************************@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcNAwt/3YeorCd18Roa9DzMnVw3LRQ==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa09.phx.gbl
| Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.framework.aspnet:31800
| NNTP-Posting-Host: TK2MSFTNGXA13 10.40.1.165
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Hi,
|
| I tried the following...
|
| web.config files contains the entry:
| <customErrors mode="On"></customErrors>
|
| global.asax contains the following:
| protected void Application_Error(Object sender, EventArgs
| e)
| {
| System.Web.UI.Page page = (System.Web.UI.Page)
| HttpContext.Current.Handler;
| string script = "<script>";
| script += "top.location.href =
| \"ErrorPage.aspx\";";
| script += "</script>";
| page.RegisterStartupScript("OnStartup", script);
|
| }
|
|
| The ErrorPage.aspx is not being displayed but I am instead
| receving the standard Microsoft error page as below:
|
|
| Runtime Error
| Description: An application error occurred on the server.
| The current custom error settings for this application
| prevent the details of the application error from being
| viewed.
|
| Details: To enable the details of this specific error
| message to be viewable on the local server machine, please
| create a <customErrors> tag within a "web.config"
| configuration file located in the root directory of the
| current web application. This <customErrors> tag should
| then have its "mode" attribute set to "RemoteOnly". To
| enable the details to be viewable on remote machines,
| please set "mode" to "Off".
|
|
| <!-- Web.Config Configuration File -->
|
| <configuration>
| <system.web>
| <customErrors mode="RemoteOnly"/>
| </system.web>
| </configuration>
|
|
| Notes: The current error page you are seeing can be
| replaced by a custom error page by modifying
| the "defaultRedirect" attribute of the application's
| <customErrors> configuration tag to point to a custom
| error page URL.
|
|
| <!-- Web.Config Configuration File -->
|
| <configuration>
| <system.web>
| <customErrors mode="On"
| defaultRedirect="mycustompage.htm"/>
| </system.web>
| </configuration>
|
|
|
|
|
|
|
|
|
|
|
|
|
| >-----Original Message-----
| >Hi
| >
| >You have to return a client script that redirects
| >
| ><script language="JavaScript">
| >top.location.href = "errorpage.aspx";
| ></script>
| >
| >--
| >Best Regards
| > Vidar Petursson
| > ==============================
| >Microsoft Internet Client & Controls MVP
| > ==============================
| >"terry" <te********@msn.com> wrote in message
| >news:04****************************@phx.gbl...
| >> Hi,
| >> Question:
| >> When using Framesets and Server.Transfer in the
| >> Application_Error event handler is there a mechanism to
| >> get the error page to display in the total view of the
| >> browser not just in the offending frame?
| >>
| >> Overview:
| >> I have an application in which I am using framesets.
| When
| >> an Unhandled exception occurs I try to handle it
| >> gracefully by transfering to an error handling page as
| >> follows:
| >>
| >> Global.asax.cs...
| >> protected void Application_Error(Object sender,
| EventArgs
| >> e)
| >> {
| >> Server.Transfer("ErrorPage.aspx");
| >> }
| >>
| >> The problem is that the ErrorPage.aspx is only displayed
| >> in the offending frame not the complete window of the
| >> browser.
| >>
| >> Thanks in advance for your help!!!
| >> Terry
| >
| >
| >.
| >
|

Nov 17 '05 #4
Hi Bassel,

Thanks for your reply. I have not tried this yet but I
want to make sure that we are both on the same page.

My goal is that I have an application making use of
Framesets. When an Unhandled exception occurs I would
like to display a custom error page (a page I create) in
the same browser as the original application but display
in the full view of the browser not just in the offending
frame (which appears to be the default). Will this
accomplish this?

Thanks again, I really appreciate your help.
Terry
-----Original Message-----
Hello Terry,
To open the window you can use the following script on onload Event:
<script>
window.open (" ErrorPage.aspx", "newwin", "fullscreen="yes"); window.opener = self;
self.close();
</script>

You will use the same method by registering the Script using thepage.RegisterStartupScript.
The script will be in the ErrorPage.aspx that you are opening. This codewill open a new window for the error message
and close the one that has frame.

For reference:

onload Event
http://msdn.microsoft.com/library/default.asp? url=/workshop/author/dhtml/reference/events/onload.asp

window Object
http://msdn.microsoft.com/library/default.asp? url=/workshop/author/dhtml/reference/objects/obj_window.asp

open Method
http://msdn.microsoft.com/library/default.asp? url=/workshop/author/dhtml/reference/methods/open_0.asp

Please let me know if this answers your question.

Thanks,
Bassel Tabbara
Microsoft, ASP.NET

This posting is provided "AS IS", with no warranties, and confers no rights.
--------------------
| Content-Class: urn:content-classes:message
| From: "terry" <te********@msn.com>
| Sender: "terry" <te********@msn.com>
| References: <04****************************@phx.gbl>
<OZ**************@TK2MSFTNGP11.phx.gbl>
| Subject: Re: Unhandled Exceptions & Framesets
| Date: Wed, 2 Jul 2003 10:53:42 -0700
| Lines: 128
| Message-ID: <00****************************@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcNAwt/3YeorCd18Roa9DzMnVw3LRQ==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa09.phx.gbl
| Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.framework.aspnet:31800| NNTP-Posting-Host: TK2MSFTNGXA13 10.40.1.165
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Hi,
|
| I tried the following...
|
| web.config files contains the entry:
| <customErrors mode="On"></customErrors>
|
| global.asax contains the following:
| protected void Application_Error(Object sender, EventArgs| e)
| {
| System.Web.UI.Page page = (System.Web.UI.Page)
| HttpContext.Current.Handler;
| string script = "<script>";
| script += "top.location.href =
| \"ErrorPage.aspx\";";
| script += "</script>";
| page.RegisterStartupScript("OnStartup", script);
|
| }
|
|
| The ErrorPage.aspx is not being displayed but I am instead| receving the standard Microsoft error page as below:
|
|
| Runtime Error
| Description: An application error occurred on the server.| The current custom error settings for this application
| prevent the details of the application error from being
| viewed.
|
| Details: To enable the details of this specific error
| message to be viewable on the local server machine, please| create a <customErrors> tag within a "web.config"
| configuration file located in the root directory of the
| current web application. This <customErrors> tag should
| then have its "mode" attribute set to "RemoteOnly". To
| enable the details to be viewable on remote machines,
| please set "mode" to "Off".
|
|
| <!-- Web.Config Configuration File -->
|
| <configuration>
| <system.web>
| <customErrors mode="RemoteOnly"/>
| </system.web>
| </configuration>
|
|
| Notes: The current error page you are seeing can be
| replaced by a custom error page by modifying
| the "defaultRedirect" attribute of the application's
| <customErrors> configuration tag to point to a custom
| error page URL.
|
|
| <!-- Web.Config Configuration File -->
|
| <configuration>
| <system.web>
| <customErrors mode="On"
| defaultRedirect="mycustompage.htm"/>
| </system.web>
| </configuration>
|
|
|
|
|
|
|
|
|
|
|
|
|
| >-----Original Message-----
| >Hi
| >
| >You have to return a client script that redirects
| >
| ><script language="JavaScript">
| >top.location.href = "errorpage.aspx";
| ></script>
| >
| >--
| >Best Regards
| > Vidar Petursson
| > ==============================
| >Microsoft Internet Client & Controls MVP
| > ==============================
| >"terry" <te********@msn.com> wrote in message
| >news:04****************************@phx.gbl...
| >> Hi,
| >> Question:
| >> When using Framesets and Server.Transfer in the
| >> Application_Error event handler is there a mechanism to| >> get the error page to display in the total view of the| >> browser not just in the offending frame?
| >>
| >> Overview:
| >> I have an application in which I am using framesets.| When
| >> an Unhandled exception occurs I try to handle it
| >> gracefully by transfering to an error handling page as| >> follows:
| >>
| >> Global.asax.cs...
| >> protected void Application_Error(Object sender,
| EventArgs
| >> e)
| >> {
| >> Server.Transfer("ErrorPage.aspx");
| >> }
| >>
| >> The problem is that the ErrorPage.aspx is only displayed| >> in the offending frame not the complete window of the
| >> browser.
| >>
| >> Thanks in advance for your help!!!
| >> Terry
| >
| >
| >.
| >
|

.

Nov 17 '05 #5
Hello Terry,
Well you can put a link which specify to open the page in the same window
as full opened in the same window.
The method that I described earlier is that you need to open a new window
since you have to use Window.Open.

Please let me know if you are not satisfied with this solution.

Thanks,
Bassel Tabbara
Microsoft, ASP.NET

This posting is provided "AS IS", with no warranties, and confers no rights.
--------------------
| Content-Class: urn:content-classes:message
| From: "terry" <te********@msn.com>
| Sender: "terry" <te********@msn.com>
| References: <04****************************@phx.gbl>
<OZ**************@TK2MSFTNGP11.phx.gbl>
<00****************************@phx.gbl>
<TQ**************@cpmsftngxa09.phx.gbl>
| Subject: Re: Unhandled Exceptions & Framesets
| Date: Wed, 2 Jul 2003 14:05:51 -0700
| Lines: 231
| Message-ID: <48****************************@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcNA3bgsaQw2Y1BJSVyw5Ci5Cc/+yQ==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa09.phx.gbl
| Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.framework.aspnet:31851
| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Hi Bassel,
|
| Thanks for your reply. I have not tried this yet but I
| want to make sure that we are both on the same page.
|
| My goal is that I have an application making use of
| Framesets. When an Unhandled exception occurs I would
| like to display a custom error page (a page I create) in
| the same browser as the original application but display
| in the full view of the browser not just in the offending
| frame (which appears to be the default). Will this
| accomplish this?
|
| Thanks again, I really appreciate your help.
| Terry
|
| >-----Original Message-----
| >Hello Terry,
| >To open the window you can use the following script on
| onload Event:
| >
| > <script>
| > window.open ("
| ErrorPage.aspx", "newwin", "fullscreen="yes");
| > window.opener = self;
| > self.close();
| > </script>
| >
| >You will use the same method by registering the Script
| using the
| >page.RegisterStartupScript.
| >The script will be in the ErrorPage.aspx that you are
| opening. This code
| >will open a new window for the error message
| >and close the one that has frame.
| >
| >For reference:
| >
| >onload Event
| >http://msdn.microsoft.com/library/default.asp?
| url=/workshop/author/dhtml/ref
| >erence/events/onload.asp
| >
| >window Object
| >http://msdn.microsoft.com/library/default.asp?
| url=/workshop/author/dhtml/ref
| >erence/objects/obj_window.asp
| >
| >open Method
| >http://msdn.microsoft.com/library/default.asp?
| url=/workshop/author/dhtml/ref
| >erence/methods/open_0.asp
| >
| >Please let me know if this answers your question.
| >
| >Thanks,
| >Bassel Tabbara
| >Microsoft, ASP.NET
| >
| >This posting is provided "AS IS", with no warranties, and
| confers no rights.
| >
| >
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "terry" <te********@msn.com>
| >| Sender: "terry" <te********@msn.com>
| >| References: <04****************************@phx.gbl>
| ><OZ**************@TK2MSFTNGP11.phx.gbl>
| >| Subject: Re: Unhandled Exceptions & Framesets
| >| Date: Wed, 2 Jul 2003 10:53:42 -0700
| >| Lines: 128
| >| Message-ID: <00****************************@phx.gbl>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| Thread-Index: AcNAwt/3YeorCd18Roa9DzMnVw3LRQ==
| >| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| Path: cpmsftngxa09.phx.gbl
| >| Xref: cpmsftngxa09.phx.gbl
| microsoft.public.dotnet.framework.aspnet:31800
| >| NNTP-Posting-Host: TK2MSFTNGXA13 10.40.1.165
| >| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| >|
| >| Hi,
| >|
| >| I tried the following...
| >|
| >| web.config files contains the entry:
| >| <customErrors mode="On"></customErrors>
| >|
| >| global.asax contains the following:
| >| protected void Application_Error(Object sender,
| EventArgs
| >| e)
| >| {
| >| System.Web.UI.Page page = (System.Web.UI.Page)
| >| HttpContext.Current.Handler;
| >| string script = "<script>";
| >| script += "top.location.href =
| >| \"ErrorPage.aspx\";";
| >| script += "</script>";
| >| page.RegisterStartupScript("OnStartup", script);
| >|
| >| }
| >|
| >|
| >| The ErrorPage.aspx is not being displayed but I am
| instead
| >| receving the standard Microsoft error page as below:
| >|
| >|
| >| Runtime Error
| >| Description: An application error occurred on the
| server.
| >| The current custom error settings for this application
| >| prevent the details of the application error from being
| >| viewed.
| >|
| >| Details: To enable the details of this specific error
| >| message to be viewable on the local server machine,
| please
| >| create a <customErrors> tag within a "web.config"
| >| configuration file located in the root directory of the
| >| current web application. This <customErrors> tag should
| >| then have its "mode" attribute set to "RemoteOnly". To
| >| enable the details to be viewable on remote machines,
| >| please set "mode" to "Off".
| >|
| >|
| >| <!-- Web.Config Configuration File -->
| >|
| >| <configuration>
| >| <system.web>
| >| <customErrors mode="RemoteOnly"/>
| >| </system.web>
| >| </configuration>
| >|
| >|
| >| Notes: The current error page you are seeing can be
| >| replaced by a custom error page by modifying
| >| the "defaultRedirect" attribute of the application's
| >| <customErrors> configuration tag to point to a custom
| >| error page URL.
| >|
| >|
| >| <!-- Web.Config Configuration File -->
| >|
| >| <configuration>
| >| <system.web>
| >| <customErrors mode="On"
| >| defaultRedirect="mycustompage.htm"/>
| >| </system.web>
| >| </configuration>
| >|
| >|
| >|
| >|
| >|
| >|
| >|
| >|
| >|
| >|
| >|
| >|
| >|
| >| >-----Original Message-----
| >| >Hi
| >| >
| >| >You have to return a client script that redirects
| >| >
| >| ><script language="JavaScript">
| >| >top.location.href = "errorpage.aspx";
| >| ></script>
| >| >
| >| >--
| >| >Best Regards
| >| > Vidar Petursson
| >| > ==============================
| >| >Microsoft Internet Client & Controls MVP
| >| > ==============================
| >| >"terry" <te********@msn.com> wrote in message
| >| >news:04****************************@phx.gbl...
| >| >> Hi,
| >| >> Question:
| >| >> When using Framesets and Server.Transfer in the
| >| >> Application_Error event handler is there a mechanism
| to
| >| >> get the error page to display in the total view of
| the
| >| >> browser not just in the offending frame?
| >| >>
| >| >> Overview:
| >| >> I have an application in which I am using
| framesets.
| >| When
| >| >> an Unhandled exception occurs I try to handle it
| >| >> gracefully by transfering to an error handling page
| as
| >| >> follows:
| >| >>
| >| >> Global.asax.cs...
| >| >> protected void Application_Error(Object sender,
| >| EventArgs
| >| >> e)
| >| >> {
| >| >> Server.Transfer("ErrorPage.aspx");
| >| >> }
| >| >>
| >| >> The problem is that the ErrorPage.aspx is only
| displayed
| >| >> in the offending frame not the complete window of the
| >| >> browser.
| >| >>
| >| >> Thanks in advance for your help!!!
| >| >> Terry
| >| >
| >| >
| >| >.
| >| >
| >|
| >
| >
| >
| >.
| >
|
Nov 17 '05 #6

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

Similar topics

2
by: Frances Del Rio | last post by:
where I work they support Netscape 4.7, we use frames a lot, but framesets that look fine in IE look awful in N 4.7, can someone shed some light on what the deal is w/frames in N 4.7? in N 4.7...
4
by: Frank | last post by:
Hi, I made a handler for unhandled errors. But before that is executed, VB.NET gives me the standard error window. In VB6 there was a setting (errortrapping) about handling errors in the design...
5
by: Lucvdv | last post by:
Can someone explain why this code pops up a messagebox saying the ThreadAbortException wasn't handled? The first exception is reported only in the debug pane, as expected. The second (caused by...
5
by: Samuel R. Neff | last post by:
When you have an unhandled exception in vb.net how do you view the exception information in the debugger? In C# the debugger creates a local variable that points to the exception and you can...
5
by: Sam Loveridge | last post by:
Hi All. I'm hoping someone can point me in the direction of a solution to unhandled exceptions in MDI child forms causing the application to crash. I've found various articles describing a...
0
by: Colmeister | last post by:
I recently read Jason Clark's excellent article on Unhandled Exceptions (http://msdn.microsoft.com/msdnmag/issues/04/06/NET/default.aspx) and have attempted to incorporate the features he talks...
2
by: Bob | last post by:
I MUST be able to trap unhandled exceptions, bring the thread to a routine that then closes the thread on which the execption occurred without closing or affecting the other threads. Think of an...
3
by: Andreas van de Sand | last post by:
Hi everyone, I've got an application which uses a custom exception handler and to avoid unhandled exceptions I've got a try{}catch (Exception){} block around the main Application.Run(...). ...
20
by: joseph_gallagher | last post by:
Hi, I've recently ported a .Net 1.1 application to .Net 2.0 and the one new feature that is getting on my nerves is that when there is an unhandled exception the application completely crashes,...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.