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

compiling problem

Ok everyone i have dealing with this problem for a week and its starting to
get on my nerve. I am pretty new to the asp.net world. I am not new to .Net
only asp.net. So i hate a snag. right now im just doing some pretty simple
pages. I just started getting into master pages when i keep getting this
VERY irritating error:
Error 1 Metadata file
'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Tem porary ASP.NET
Files\chapter2\17279c24\2b539fbd\App_Web_testmaste rpage.master.cdcab7d2.74em-zze.dll'
could not be found

Ok of course i have searched google for solutions first with no resolve. I
have rebooted, reopened visual studio, cleared the contents of my temporary
asp.net folder. My web.config is as simple as you could get:
<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

<appSettings/>

<connectionStrings/>

<system.web>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->
<compilation debug="true">

<assemblies>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089"/>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation>

<!--

The <authenticationsection enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows"/>

<!--

The <customErrorssection enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>

If i keep rebuilding the site over and over again usually it will rebuilt
from the 3 to 10 try. When i make a simple change again though and try to
rebuild i get the same dang thing. I have 2 simple pages a very simple
master page. I did try some of infragistics controls (2006 V3) but i have
removed all references (as you can see above from my web.conf) and removed
all the files they added to the project. I am running the web site just in
the web server packaged with vs 2005. Oh yes, i have SP1 for VS installed. I
have seen lots of people have this problem but no one seems to really have a
solution. Does anyone know whats going on?
Feb 13 '07 #1
5 1403
Howdy,

Is there a chance someone has added a reference to any of the project dlls?
Sometimes it happens when you vs automatically registers your custom controls.

See this topic:
http://www.thescripts.com/forum/thread328655.html
--
Milosz
"Brent" wrote:
Ok everyone i have dealing with this problem for a week and its starting to
get on my nerve. I am pretty new to the asp.net world. I am not new to .Net
only asp.net. So i hate a snag. right now im just doing some pretty simple
pages. I just started getting into master pages when i keep getting this
VERY irritating error:
Error 1 Metadata file
'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Tem porary ASP.NET
Files\chapter2\17279c24\2b539fbd\App_Web_testmaste rpage.master.cdcab7d2.74em-zze.dll'
could not be found

Ok of course i have searched google for solutions first with no resolve. I
have rebooted, reopened visual studio, cleared the contents of my temporary
asp.net folder. My web.config is as simple as you could get:
<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

<appSettings/>

<connectionStrings/>

<system.web>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->
<compilation debug="true">

<assemblies>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089"/>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation>

<!--

The <authenticationsection enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows"/>

<!--

The <customErrorssection enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>

If i keep rebuilding the site over and over again usually it will rebuilt
from the 3 to 10 try. When i make a simple change again though and try to
rebuild i get the same dang thing. I have 2 simple pages a very simple
master page. I did try some of infragistics controls (2006 V3) but i have
removed all references (as you can see above from my web.conf) and removed
all the files they added to the project. I am running the web site just in
the web server packaged with vs 2005. Oh yes, i have SP1 for VS installed. I
have seen lots of people have this problem but no one seems to really have a
solution. Does anyone know whats going on?
Feb 13 '07 #2
Nope. I have been the only one who had worked on this. I have never
referenced a project dll in this probject. It has been a single project the
whole time. The only thing i have referenced outside of the standard
microsoft runtime is infragistics stuff but like i said all that has been
removed including references, liscence dll added to the project, and some
images it added.

Ncage
"Milosz Skalecki [MCAD]" <mi*****@DONTLIKESPAMwp.plwrote in message
news:4A**********************************@microsof t.com...
Howdy,

Is there a chance someone has added a reference to any of the project
dlls?
Sometimes it happens when you vs automatically registers your custom
controls.

See this topic:
http://www.thescripts.com/forum/thread328655.html
--
Milosz
"Brent" wrote:
>Ok everyone i have dealing with this problem for a week and its starting
to
get on my nerve. I am pretty new to the asp.net world. I am not new to
.Net
only asp.net. So i hate a snag. right now im just doing some pretty
simple
pages. I just started getting into master pages when i keep getting this
VERY irritating error:
Error 1 Metadata file
'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Te mporary ASP.NET
Files\chapter2\17279c24\2b539fbd\App_Web_testmast erpage.master.cdcab7d2.74em-zze.dll'
could not be found

Ok of course i have searched google for solutions first with no resolve.
I
have rebooted, reopened visual studio, cleared the contents of my
temporary
asp.net folder. My web.config is as simple as you could get:
<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration
xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

<appSettings/>

<connectionStrings/>

<system.web>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->
<compilation debug="true">

<assemblies>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089"/>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation>

<!--

The <authenticationsection enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows"/>

<!--

The <customErrorssection enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>

If i keep rebuilding the site over and over again usually it will rebuilt
from the 3 to 10 try. When i make a simple change again though and try to
rebuild i get the same dang thing. I have 2 simple pages a very simple
master page. I did try some of infragistics controls (2006 V3) but i have
removed all references (as you can see above from my web.conf) and
removed
all the files they added to the project. I am running the web site just
in
the web server packaged with vs 2005. Oh yes, i have SP1 for VS
installed. I
have seen lots of people have this problem but no one seems to really
have a
solution. Does anyone know whats going on?

Feb 13 '07 #3
Good afternoon

it must be something you had installed before (what's chapter2? - is it
current application or an old tutorial demo app?) Make sure your Toolbox does
not contain any old components.
--
Milosz
"Brent" wrote:
Nope. I have been the only one who had worked on this. I have never
referenced a project dll in this probject. It has been a single project the
whole time. The only thing i have referenced outside of the standard
microsoft runtime is infragistics stuff but like i said all that has been
removed including references, liscence dll added to the project, and some
images it added.

Ncage
"Milosz Skalecki [MCAD]" <mi*****@DONTLIKESPAMwp.plwrote in message
news:4A**********************************@microsof t.com...
Howdy,

Is there a chance someone has added a reference to any of the project
dlls?
Sometimes it happens when you vs automatically registers your custom
controls.

See this topic:
http://www.thescripts.com/forum/thread328655.html
--
Milosz
"Brent" wrote:
Ok everyone i have dealing with this problem for a week and its starting
to
get on my nerve. I am pretty new to the asp.net world. I am not new to
.Net
only asp.net. So i hate a snag. right now im just doing some pretty
simple
pages. I just started getting into master pages when i keep getting this
VERY irritating error:
Error 1 Metadata file
'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Tem porary ASP.NET
Files\chapter2\17279c24\2b539fbd\App_Web_testmaste rpage.master.cdcab7d2.74em-zze.dll'
could not be found

Ok of course i have searched google for solutions first with no resolve.
I
have rebooted, reopened visual studio, cleared the contents of my
temporary
asp.net folder. My web.config is as simple as you could get:
<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration
xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

<appSettings/>

<connectionStrings/>

<system.web>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->
<compilation debug="true">

<assemblies>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089"/>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation>

<!--

The <authenticationsection enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows"/>

<!--

The <customErrorssection enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>

If i keep rebuilding the site over and over again usually it will rebuilt
from the 3 to 10 try. When i make a simple change again though and try to
rebuild i get the same dang thing. I have 2 simple pages a very simple
master page. I did try some of infragistics controls (2006 V3) but i have
removed all references (as you can see above from my web.conf) and
removed
all the files they added to the project. I am running the web site just
in
the web server packaged with vs 2005. Oh yes, i have SP1 for VS
installed. I
have seen lots of people have this problem but no one seems to really
have a
solution. Does anyone know whats going on?


Feb 13 '07 #4
Wow thanks Milosz. I removed all references to infragistics stuff in the
project and all but i still had them in the toolbox. I removed the
infragistics stuff from the toolbox and problem is solved. Why would items
in the toolbox cause this problem? Is it an infragistics problem or is there
something I did wrong? Its the latest version of their controls (2006 v3).

Thanks,
Brent

"Milosz Skalecki [MCAD]" <mi*****@DONTLIKESPAMwp.plwrote in message
news:5B**********************************@microsof t.com...
Good afternoon

it must be something you had installed before (what's chapter2? - is it
current application or an old tutorial demo app?) Make sure your Toolbox
does
not contain any old components.
--
Milosz
"Brent" wrote:
>Nope. I have been the only one who had worked on this. I have never
referenced a project dll in this probject. It has been a single project
the
whole time. The only thing i have referenced outside of the standard
microsoft runtime is infragistics stuff but like i said all that has been
removed including references, liscence dll added to the project, and some
images it added.

Ncage
"Milosz Skalecki [MCAD]" <mi*****@DONTLIKESPAMwp.plwrote in message
news:4A**********************************@microso ft.com...
Howdy,

Is there a chance someone has added a reference to any of the project
dlls?
Sometimes it happens when you vs automatically registers your custom
controls.

See this topic:
http://www.thescripts.com/forum/thread328655.html
--
Milosz
"Brent" wrote:

Ok everyone i have dealing with this problem for a week and its
starting
to
get on my nerve. I am pretty new to the asp.net world. I am not new to
.Net
only asp.net. So i hate a snag. right now im just doing some pretty
simple
pages. I just started getting into master pages when i keep getting
this
VERY irritating error:
Error 1 Metadata file
'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Te mporary ASP.NET
Files\chapter2\17279c24\2b539fbd\App_Web_testmast erpage.master.cdcab7d2.74em-zze.dll'
could not be found

Ok of course i have searched google for solutions first with no
resolve.
I
have rebooted, reopened visual studio, cleared the contents of my
temporary
asp.net folder. My web.config is as simple as you could get:
<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration
xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

<appSettings/>

<connectionStrings/>

<system.web>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->
<compilation debug="true">

<assemblies>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089"/>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation>

<!--

The <authenticationsection enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows"/>

<!--

The <customErrorssection enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly"
defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>

If i keep rebuilding the site over and over again usually it will
rebuilt
from the 3 to 10 try. When i make a simple change again though and try
to
rebuild i get the same dang thing. I have 2 simple pages a very simple
master page. I did try some of infragistics controls (2006 V3) but i
have
removed all references (as you can see above from my web.conf) and
removed
all the files they added to the project. I am running the web site
just
in
the web server packaged with vs 2005. Oh yes, i have SP1 for VS
installed. I
have seen lots of people have this problem but no one seems to really
have a
solution. Does anyone know whats going on?



Feb 13 '07 #5
Hi Brent,

I don't think it was your fault. It sometimes happens, especially when
controls are built into web application project instead of separate control
library.

Have a nice day

--
Milosz
"Brent" wrote:
Wow thanks Milosz. I removed all references to infragistics stuff in the
project and all but i still had them in the toolbox. I removed the
infragistics stuff from the toolbox and problem is solved. Why would items
in the toolbox cause this problem? Is it an infragistics problem or is there
something I did wrong? Its the latest version of their controls (2006 v3).

Thanks,
Brent

"Milosz Skalecki [MCAD]" <mi*****@DONTLIKESPAMwp.plwrote in message
news:5B**********************************@microsof t.com...
Good afternoon

it must be something you had installed before (what's chapter2? - is it
current application or an old tutorial demo app?) Make sure your Toolbox
does
not contain any old components.
--
Milosz
"Brent" wrote:
Nope. I have been the only one who had worked on this. I have never
referenced a project dll in this probject. It has been a single project
the
whole time. The only thing i have referenced outside of the standard
microsoft runtime is infragistics stuff but like i said all that has been
removed including references, liscence dll added to the project, and some
images it added.

Ncage
"Milosz Skalecki [MCAD]" <mi*****@DONTLIKESPAMwp.plwrote in message
news:4A**********************************@microsof t.com...
Howdy,

Is there a chance someone has added a reference to any of the project
dlls?
Sometimes it happens when you vs automatically registers your custom
controls.

See this topic:
http://www.thescripts.com/forum/thread328655.html
--
Milosz
"Brent" wrote:

Ok everyone i have dealing with this problem for a week and its
starting
to
get on my nerve. I am pretty new to the asp.net world. I am not new to
.Net
only asp.net. So i hate a snag. right now im just doing some pretty
simple
pages. I just started getting into master pages when i keep getting
this
VERY irritating error:
Error 1 Metadata file
'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Tem porary ASP.NET
Files\chapter2\17279c24\2b539fbd\App_Web_testmaste rpage.master.cdcab7d2.74em-zze.dll'
could not be found

Ok of course i have searched google for solutions first with no
resolve.
I
have rebooted, reopened visual studio, cleared the contents of my
temporary
asp.net folder. My web.config is as simple as you could get:
<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration
xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

<appSettings/>

<connectionStrings/>

<system.web>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->
<compilation debug="true">

<assemblies>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089"/>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation>

<!--

The <authenticationsection enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows"/>

<!--

The <customErrorssection enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly"
defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>

If i keep rebuilding the site over and over again usually it will
rebuilt
from the 3 to 10 try. When i make a simple change again though and try
to
rebuild i get the same dang thing. I have 2 simple pages a very simple
master page. I did try some of infragistics controls (2006 V3) but i
have
removed all references (as you can see above from my web.conf) and
removed
all the files they added to the project. I am running the web site
just
in
the web server packaged with vs 2005. Oh yes, i have SP1 for VS
installed. I
have seen lots of people have this problem but no one seems to really
have a
solution. Does anyone know whats going on?



Feb 13 '07 #6

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

Similar topics

0
by: Nikola Milutinovic | last post by:
Hi all. I'm not subscribed to the list, so all replies to me mail directly. I ran into a small problem, for which we have found a workaround. I was compiling PostgreSQL v7.4.1 and it's...
0
by: Martin Bless | last post by:
I need to access a MSSQL database (MS-Sql, not MySQL!)and would very much like to use mssql-0.09.tar.gz which is available from http://www.object-craft.com.au/projects/mssql/download.html ...
11
by: Arturo DiDonna | last post by:
Hello everyone. I am trying to compile someone else code and I am stuck with compilation problems using the g++ 3.3 compiler. Basically, when compiling the following code, I get this error...
3
by: modemer | last post by:
Hello, I got weird compiling message similar like following when I compiled my simple code on Sun 5.8 with CC WorkShop 6 update 2 C++ 5.3. CC -g -o myclass.o -c myclass.cpp CC -g -o main.o...
0
by: David W. Fenton | last post by:
Today I was working on a hideous old app that I created a long time ago that does a lot of showing/hiding/resizing of fields on one of the forms. I had used constants to store reference values for...
3
by: Dmitri Shvetsov | last post by:
Hi All, Did somebody have a problem compiling some solution in VS2003? I get the error every time that some files are locked and are using by another process. I repeat compiling again and again...
4
by: Aaron Queenan | last post by:
When I build a C++ library to .NET using the managed C++ compiler, I get the following error message: Linking... LINK : error LNK2020: unresolved token (0A000005) _CrtDbgReport LINK : error...
2
by: Rudy Ray Moore | last post by:
Hi guys, I just upgraded to "Visual Studio .net 2003 7.1 c++" from VS6. Some things I like (proper for loop variable scoping, for example), but some other things are troubling me. One...
0
by: erkidevries | last post by:
Problem compiling Tkinter program with bmp images (using py2exe) I have a Tkinter gui program that uses bmp as backgrounds. The program itself works when I run from the source. I placed the...
8
by: WebSnozz | last post by:
I have an application written in C that does a lot of low level stuff. It does a lot of things like casting from void*'s. I want to create a new GUI for it in either C# or MC++, but reuse the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: 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: 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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.