473,385 Members | 1,622 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.

Web.Config - customErrors

I am trying to implement custom error pages and I get this error message:

************************************************** **************************
********
************************************************** **************************
********
Server Error in '/mfg' Application.
----------------------------------------------------------------------------
----

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>
************************************************** **************************
********
************************************************** **************************
********

My my customErrors tag in the Web.Config file looks like this:

<customErrors defaultRedirect="errors.aspx" mode="On"/>

I am working directly on the server (Win2k). Any ideas?

Thanx.

Nov 18 '05 #1
6 6094
If you change your customErrors to Off with no defaultRedirect, do you still
get an error?

If not, try switching the order of the defaultRedirect and mode attributes.
Its a long shot but it might work. Let me know how it works out.
"John Smith" <no*******@address.com> wrote in message
news:O$**************@TK2MSFTNGP10.phx.gbl...
I am trying to implement custom error pages and I get this error message:

************************************************** ************************** ********
************************************************** ************************** ********
Server Error in '/mfg' Application.
-------------------------------------------------------------------------- -- ----

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>
************************************************** ************************** ********
************************************************** ************************** ********

My my customErrors tag in the Web.Config file looks like this:

<customErrors defaultRedirect="errors.aspx" mode="On"/>

I am working directly on the server (Win2k). Any ideas?

Thanx.

Nov 18 '05 #2
I made a change to my customErrors tag to:

<customErrors defaultRedirect="errors.aspx" mode="RemoteOnly"/>

I tested with just an HTML file and it worked okay. I eliminated the the
web.config as the problem it is now within my code. I found out that I am
actually having a problem with this code:

************************************************** **************************
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'*** UserID Works fine ***
Dim UserID As Integer = Session("UserID")
Response.Write("UserID = " & UserID & "<BR>")

'*** Problem resides in here ***
Dim ErrorMessage As String = Server.GetLastError.ToString
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")

End Sub
************************************************** **************************

Any ideas on what I am doing wrong?

Thanx
"Ben Dewey" <be*******@scientiae.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
If you change your customErrors to Off with no defaultRedirect, do you still get an error?

If not, try switching the order of the defaultRedirect and mode attributes. Its a long shot but it might work. Let me know how it works out.
"John Smith" <no*******@address.com> wrote in message
news:O$**************@TK2MSFTNGP10.phx.gbl...
I am trying to implement custom error pages and I get this error message:

************************************************** **************************
********

************************************************** **************************
********
Server Error in '/mfg' Application.


--------------------------------------------------------------------------
--
----

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>

************************************************** **************************
********

************************************************** **************************
********

My my customErrors tag in the Web.Config file looks like this:

<customErrors defaultRedirect="errors.aspx" mode="On"/>

I am working directly on the server (Win2k). Any ideas?

Thanx.


Nov 18 '05 #3
You need to check the Server.GetLastError before you call ToString on it.

Example:
If Server.GetLastError Is Nothing = False Then
Dim ErrorMessage As String = Server.GetLastError.ToString()
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")
End If
"John Smith" <no*******@address.com> wrote in message
news:e8**************@TK2MSFTNGP11.phx.gbl...
I made a change to my customErrors tag to:

<customErrors defaultRedirect="errors.aspx" mode="RemoteOnly"/>

I tested with just an HTML file and it worked okay. I eliminated the the
web.config as the problem it is now within my code. I found out that I am
actually having a problem with this code:

************************************************** ************************** Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'*** UserID Works fine ***
Dim UserID As Integer = Session("UserID")
Response.Write("UserID = " & UserID & "<BR>")

'*** Problem resides in here ***
Dim ErrorMessage As String = Server.GetLastError.ToString
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")

End Sub
************************************************** **************************
Any ideas on what I am doing wrong?

Thanx
"Ben Dewey" <be*******@scientiae.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
If you change your customErrors to Off with no defaultRedirect, do you

still
get an error?

If not, try switching the order of the defaultRedirect and mode

attributes.
Its a long shot but it might work. Let me know how it works out.
"John Smith" <no*******@address.com> wrote in message
news:O$**************@TK2MSFTNGP10.phx.gbl...
I am trying to implement custom error pages and I get this error message:

************************************************** **************************
********

************************************************** **************************
********
Server Error in '/mfg' Application.


--------------------------------------------------------------------------
--
----

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>

************************************************** **************************
********

************************************************** **************************
********

My my customErrors tag in the Web.Config file looks like this:

<customErrors defaultRedirect="errors.aspx" mode="On"/>

I am working directly on the server (Win2k). Any ideas?

Thanx.



Nov 18 '05 #4
I changed my code to check to see if it is nothing. I manually threw an
applicationexception and it is not returning it. it is returning as
nothing. any ideas?
"Ben Dewey" <be*******@scientiae.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
You need to check the Server.GetLastError before you call ToString on it.

Example:
If Server.GetLastError Is Nothing = False Then
Dim ErrorMessage As String = Server.GetLastError.ToString()
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")
End If
"John Smith" <no*******@address.com> wrote in message
news:e8**************@TK2MSFTNGP11.phx.gbl...
I made a change to my customErrors tag to:

<customErrors defaultRedirect="errors.aspx" mode="RemoteOnly"/>

I tested with just an HTML file and it worked okay. I eliminated the the
web.config as the problem it is now within my code. I found out that I am actually having a problem with this code:

************************************************** **************************
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'*** UserID Works fine ***
Dim UserID As Integer = Session("UserID")
Response.Write("UserID = " & UserID & "<BR>")

'*** Problem resides in here ***
Dim ErrorMessage As String = Server.GetLastError.ToString
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")

End Sub

************************************************** **************************

Any ideas on what I am doing wrong?

Thanx
"Ben Dewey" <be*******@scientiae.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
If you change your customErrors to Off with no defaultRedirect, do you

still
get an error?

If not, try switching the order of the defaultRedirect and mode

attributes.
Its a long shot but it might work. Let me know how it works out.
"John Smith" <no*******@address.com> wrote in message
news:O$**************@TK2MSFTNGP10.phx.gbl...
> I am trying to implement custom error pages and I get this error

message:
>
>

************************************************** **************************
> ********
>

************************************************** **************************
> ********
> Server Error in '/mfg' Application.


--------------------------------------------------------------------------
--
> ----
>
> 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>
>

************************************************** **************************
> ********
>

************************************************** **************************
> ********
>
> My my customErrors tag in the Web.Config file looks like this:
>
> <customErrors defaultRedirect="errors.aspx" mode="On"/>
>
> I am working directly on the server (Win2k). Any ideas?
>
> Thanx.
>
>
>



Nov 18 '05 #5
My mistake, you don't need to check if the error is nothing, you do, on the
other hand, need to have the code for the Page Error in the Page_Error event
handler.

Example:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Call throwAnError()
End Sub

Private Sub throwAnError()
Throw New ApplicationException("some error")
End Sub

Private Sub Page_Error(ByVal sender As Object, ByVal e As System.EventArgs)
Handles MyBase.Error
Dim ErrorMessage As String = Server.GetLastError.Message
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")
End Sub
"John Smith" <no*******@address.com> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
I changed my code to check to see if it is nothing. I manually threw an
applicationexception and it is not returning it. it is returning as
nothing. any ideas?
"Ben Dewey" <be*******@scientiae.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
You need to check the Server.GetLastError before you call ToString on it.

Example:
If Server.GetLastError Is Nothing = False Then
Dim ErrorMessage As String = Server.GetLastError.ToString()
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")
End If
"John Smith" <no*******@address.com> wrote in message
news:e8**************@TK2MSFTNGP11.phx.gbl...
I made a change to my customErrors tag to:

<customErrors defaultRedirect="errors.aspx" mode="RemoteOnly"/>

I tested with just an HTML file and it worked okay. I eliminated the
the web.config as the problem it is now within my code. I found out that I am
actually having a problem with this code:

************************************************** ************************** Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'*** UserID Works fine ***
Dim UserID As Integer = Session("UserID")
Response.Write("UserID = " & UserID & "<BR>")

'*** Problem resides in here ***
Dim ErrorMessage As String = Server.GetLastError.ToString
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")

End Sub

************************************************** **************************

Any ideas on what I am doing wrong?

Thanx
"Ben Dewey" <be*******@scientiae.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
> If you change your customErrors to Off with no defaultRedirect, do you still
> get an error?
>
> If not, try switching the order of the defaultRedirect and mode
attributes.
> Its a long shot but it might work. Let me know how it works out.
>
>
> "John Smith" <no*******@address.com> wrote in message
> news:O$**************@TK2MSFTNGP10.phx.gbl...
> > I am trying to implement custom error pages and I get this error
message:
> >
> >
>

************************************************** **************************
> > ********
> >
>

************************************************** **************************
> > ********
> > Server Error in '/mfg' Application.
>


--------------------------------------------------------------------------
> --
> > ----
> >
> > 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>
> >
>

************************************************** **************************
> > ********
> >
>

************************************************** **************************
> > ********
> >
> > My my customErrors tag in the Web.Config file looks like this:
> >
> > <customErrors defaultRedirect="errors.aspx" mode="On"/>
> >
> > I am working directly on the server (Win2k). Any ideas?
> >
> > Thanx.
> >
> >
> >
>
>



Nov 18 '05 #6
Thanx that works good, but I found another solution. I added
Server.Transfer("customerror.aspx") in the Application_Error in the
global.asax file.

Thanx for all of your help.

"Ben Dewey" <be*******@scientiae.com> wrote in message
news:uU**************@TK2MSFTNGP10.phx.gbl...
My mistake, you don't need to check if the error is nothing, you do, on the other hand, need to have the code for the Page Error in the Page_Error event handler.

Example:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Call throwAnError()
End Sub

Private Sub throwAnError()
Throw New ApplicationException("some error")
End Sub

Private Sub Page_Error(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Error
Dim ErrorMessage As String = Server.GetLastError.Message
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")
End Sub
"John Smith" <no*******@address.com> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
I changed my code to check to see if it is nothing. I manually threw an
applicationexception and it is not returning it. it is returning as
nothing. any ideas?
"Ben Dewey" <be*******@scientiae.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
You need to check the Server.GetLastError before you call ToString on it.
Example:
If Server.GetLastError Is Nothing = False Then
Dim ErrorMessage As String = Server.GetLastError.ToString()
Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")
End If
"John Smith" <no*******@address.com> wrote in message
news:e8**************@TK2MSFTNGP11.phx.gbl...
> I made a change to my customErrors tag to:
>
> <customErrors defaultRedirect="errors.aspx" mode="RemoteOnly"/>
>
> I tested with just an HTML file and it worked okay. I eliminated the
the
> web.config as the problem it is now within my code. I found out
that
I
am
> actually having a problem with this code:
>
>

************************************************** ************************** > Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles MyBase.Load
> '*** UserID Works fine ***
> Dim UserID As Integer = Session("UserID")
> Response.Write("UserID = " & UserID & "<BR>")
>
> '*** Problem resides in here ***
> Dim ErrorMessage As String = Server.GetLastError.ToString
> Response.Write("ErrorMessage = " & ErrorMessage & "<BR>")
>
> End Sub
>

************************************************** **************************
>
> Any ideas on what I am doing wrong?
>
> Thanx
>
>
> "Ben Dewey" <be*******@scientiae.com> wrote in message
> news:%2****************@TK2MSFTNGP10.phx.gbl...
> > If you change your customErrors to Off with no defaultRedirect, do you > still
> > get an error?
> >
> > If not, try switching the order of the defaultRedirect and mode
> attributes.
> > Its a long shot but it might work. Let me know how it works out.
> >
> >
> > "John Smith" <no*******@address.com> wrote in message
> > news:O$**************@TK2MSFTNGP10.phx.gbl...
> > > I am trying to implement custom error pages and I get this error
> message:
> > >
> > >
> >
>

************************************************** **************************
> > > ********
> > >
> >
>

************************************************** **************************
> > > ********
> > > Server Error in '/mfg' Application.
> >
>


--------------------------------------------------------------------------
> > --
> > > ----
> > >
> > > 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>
> > >
> >
>

************************************************** **************************
> > > ********
> > >
> >
>

************************************************** **************************
> > > ********
> > >
> > > My my customErrors tag in the Web.Config file looks like this:
> > >
> > > <customErrors defaultRedirect="errors.aspx" mode="On"/>
> > >
> > > I am working directly on the server (Win2k). Any ideas?
> > >
> > > Thanx.
> > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #7

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

Similar topics

4
by: tommy | last post by:
hello everbody, i write a little asp-application with forms-authentication. i copy my aspx-files with web.config to my webspace and i get the error above... i tried to set the...
25
by: n3crius | last post by:
hi, i just got a web host with asp.net , seemed really cool. aspx with the c# or vb IN the actual main page run fine, but when i use codebehind and make another source file ( a .cs) to go with...
0
by: Adam Getchell | last post by:
I'm attempting to write a custom Authentication module using http://www.15seconds.com/Issue/020417.htm I looked at http://support.microsoft.com/default.aspx?scid=kb;EN-US;307996, but it doesn't...
2
by: Sam | last post by:
Inquiry? -------- I would like to authenticate all subdirectory via asp.net at Windows Server 2003 and IIS 6.0 but it prompt an error message as shown as below: Runtime Error? --------------...
10
by: Ron Weldy | last post by:
I am working on a website that someone else has set up. They have a web.config file with a customerrors element that points the error handling to a special aspx page. <customErrors...
1
by: Chumley Walrus | last post by:
I'm having trouble seeing my page when I publish it on my live server. I created a project in VS.net (with MMIT integrated), created a simple index.aspx mobilewebform page , I can see it in my...
2
by: Max Metral | last post by:
I'm trying to set the default behavior of customErrors in the machine.config. The documentation seems to suggest this should work, but it doesn't seem to work for me. On my development machine, I...
1
by: moondaddy | last post by:
running vs2005 I have a small test website called TestPublish which has default.aspx, ErrorPage.aspx and testpage.htm. The default page just says hello world and no other code and the errorpage...
14
by: Peter | last post by:
..NET 3.5 I have a Windows Service application and it does remoting, but when a client incounters an error the client get the following error message "Server encountered an internal error....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
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...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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
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...

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.