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

Way to close the UA after forced file download?

I am pushing a file download to the client. The ASP used to generate and
push the file is triggered by an <a target="_blank" href="something">. The
VBScript uses

Response.Clear
Response.ContentType = [some mime type]
Response.AddHeader "Content-Disposition", "attachment; filename=myfile.txt"
Response.Write [stuff]
Response.Flush
Response.End

All is working fine. The user is prompted for the disposition of the
download, the file is transferred. Life is wonderful ... except for one
minor annoyance ...

The user is left with a blank page (containing minimal skeletal HTML) in
front of them after the download.

Is there a way to eliminate the blank page without having to redirect back
to the calling page?
Jul 22 '05 #1
22 1825
Gazing into my crystal ball I observed "MyndPhlyp" <no****@homeright.now>
writing in news:Ob**************@tk2msftngp13.phx.gbl:
I am pushing a file download to the client. The ASP used to generate
and push the file is triggered by an <a target="_blank"
href="something">. The VBScript uses

Response.Clear
Response.ContentType = [some mime type]
Response.AddHeader "Content-Disposition", "attachment;
filename=myfile.txt" Response.Write [stuff]
Response.Flush
Response.End

All is working fine. The user is prompted for the disposition of the
download, the file is transferred. Life is wonderful ... except for one
minor annoyance ...

The user is left with a blank page (containing minimal skeletal HTML)
in front of them after the download.

Is there a way to eliminate the blank page without having to redirect
back to the calling page?


Yes, stop using the target attribute. The target attribute is deprecated
except for the Frameset element.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 22 '05 #2

"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...

Yes, stop using the target attribute. The target attribute is deprecated
except for the Frameset element.


I have found nothing indicating that the target attribute in anchors is
depreciated. The HTML 4.01 specifications do not show it depreciated plus
the W3 HTML Validator for DOCTYPES XHTML 1.0 Transitional and HTML 4.01
Transitional does not flag it as depreciated.

Cite your source.

(But yes, removing the target attribute does cure the symptom. Thanx.)
Jul 22 '05 #3
MyndPhlyp wrote:
"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...

Yes, stop using the target attribute. The target attribute is
deprecated except for the Frameset element.


I have found nothing indicating that the target attribute in anchors
is depreciated. The HTML 4.01 specifications do not show it
depreciated plus the W3 HTML Validator for DOCTYPES XHTML 1.0
Transitional and HTML 4.01 Transitional does not flag it as
depreciated.

Cite your source.


Ummm, just do a google for deprecated target attribute.

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 22 '05 #4
You're right. It's not depreciated. Attributes retain their value throught
their lifetime.

It is, however, deprecated.
http://www.google.com/search?hl=en&s...ecated&spell=1

Bob Lehmann

"MyndPhlyp" <no****@homeright.now> wrote in message
news:ur**************@TK2MSFTNGP14.phx.gbl...

"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...

Yes, stop using the target attribute. The target attribute is deprecated except for the Frameset element.


I have found nothing indicating that the target attribute in anchors is
depreciated. The HTML 4.01 specifications do not show it depreciated plus
the W3 HTML Validator for DOCTYPES XHTML 1.0 Transitional and HTML 4.01
Transitional does not flag it as depreciated.

Cite your source.

(But yes, removing the target attribute does cure the symptom. Thanx.)

Jul 22 '05 #5

"Bob Lehmann" <no****@dontbotherme.zzz> wrote in message
news:Oj***************@TK2MSFTNGP09.phx.gbl...
You're right. It's not depreciated. Attributes retain their value throught
their lifetime.

It is, however, deprecated.

http://www.google.com/search?hl=en&s...ecated&spell=1

ROFL - and every time I have read "deprecated" my fogged brain plugged in
"depreciated." 'Bout time I was shown the error of my ways. Thanx.

I did do a little more digging. While the HTML 4.01 Specifications did not
list anything there were some other pages over at W3 that suggest one should
refrain from using it, seemingly primarily because of all the pop-up
blockers popping up (at the risk of sounding redundant). Maybe some day W3
will get around to adding that check in their HTML Validator. (Hey, it's
free so don't complain.)

One thing I don't understand is that W3 is still in favor of frames - an
element (structure?) not held in the highest respect among some circles
(and, to some, found to be akin to the blink tag that thankfully was never
fully embraced). I would have expected them to phase out frames before the
ability to spawn another browser instance. Ah well ... onwards.
Jul 22 '05 #6
It is deprecated, but I wouldnt worry about it too much. Target attributes
are going to keep working for a long time and you are going to see then used
all over the place.
"MyndPhlyp" <no****@homeright.now> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...

"Bob Lehmann" <no****@dontbotherme.zzz> wrote in message
news:Oj***************@TK2MSFTNGP09.phx.gbl...
You're right. It's not depreciated. Attributes retain their value
throught
their lifetime.

It is, however, deprecated.

http://www.google.com/search?hl=en&s...ecated&spell=1

ROFL - and every time I have read "deprecated" my fogged brain plugged in
"depreciated." 'Bout time I was shown the error of my ways. Thanx.

I did do a little more digging. While the HTML 4.01 Specifications did not
list anything there were some other pages over at W3 that suggest one
should
refrain from using it, seemingly primarily because of all the pop-up
blockers popping up (at the risk of sounding redundant). Maybe some day W3
will get around to adding that check in their HTML Validator. (Hey, it's
free so don't complain.)

One thing I don't understand is that W3 is still in favor of frames - an
element (structure?) not held in the highest respect among some circles
(and, to some, found to be akin to the blink tag that thankfully was never
fully embraced). I would have expected them to phase out frames before the
ability to spawn another browser instance. Ah well ... onwards.

Jul 22 '05 #7

"Kyle Peterson" <kp*****@hotmail.com> wrote in message
news:%2*****************@TK2MSFTNGP15.phx.gbl...
It is deprecated, but I wouldnt worry about it too much. Target attributes
are going to keep working for a long time and you are going to see then used all over the place.


Yep. I use them quite a bit myself when a link goes out of the site. Thanx
again.
Jul 22 '05 #8
Gazing into my crystal ball I observed "MyndPhlyp" <no****@homeright.now>
writing in news:uI**************@TK2MSFTNGP14.phx.gbl:

"Kyle Peterson" <kp*****@hotmail.com> wrote in message
news:%2*****************@TK2MSFTNGP15.phx.gbl...
It is deprecated, but I wouldnt worry about it too much. Target
attributes are going to keep working for a long time and you are going
to see then used all over the place.


Yep. I use them quite a bit myself when a link goes out of the site.
Thanx again.


The reason the target attribute is deprecated for documents not in a
frameset is because it breaks that back button.

I use mouse gestures and am happily gesturing back when I realize nothing
is happening, then I look up and see the back button is disabled.

For some users this can be disorienting or confusing. Further, on some
systems with little resources, spawning a new window can be slow and eats
up even more resources.

Most people know how to use the back button, or back space, or gesture
back. Please don't break the browser's fuctionality. If the person
wants to go back to your site, they will.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 22 '05 #9
I am sorry but that is just plain stupid.
About as stupid as replaying to posts at the bottom of the message instead
of the top.
"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...
Gazing into my crystal ball I observed "MyndPhlyp" <no****@homeright.now>
writing in news:uI**************@TK2MSFTNGP14.phx.gbl:

"Kyle Peterson" <kp*****@hotmail.com> wrote in message
news:%2*****************@TK2MSFTNGP15.phx.gbl...
It is deprecated, but I wouldnt worry about it too much. Target
attributes are going to keep working for a long time and you are going
to see then used all over the place.


Yep. I use them quite a bit myself when a link goes out of the site.
Thanx again.


The reason the target attribute is deprecated for documents not in a
frameset is because it breaks that back button.

I use mouse gestures and am happily gesturing back when I realize nothing
is happening, then I look up and see the back button is disabled.

For some users this can be disorienting or confusing. Further, on some
systems with little resources, spawning a new window can be slow and eats
up even more resources.

Most people know how to use the back button, or back space, or gesture
back. Please don't break the browser's fuctionality. If the person
wants to go back to your site, they will.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Jul 22 '05 #10
"Kyle Peterson" wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
:I am sorry but that is just plain stupid.
: About as stupid as replaying to posts at the bottom of the message instead
: of the top.

to rebut your "stupid" comments...

Do you read a book from back to front?
Is the first paragraph of the book at the back and each subsequent paragraph
immediately preceding the prior?
Perhaps the table of contents reads from the bottom up?
How about page numbers?
Is this how you see the alphabet? zyxwvutsrqponmlkjihgfedcba
When you get a receipt, for any purchase, does it read up or down?
Do you answer questions before they are asked of you?

There are probably many reasons people top post so this may not be a
complete list...

....because the text cursor is at the top.
....because they got this ridiculous habit from email.
....because they're lazy.
....because they're selfish.
....because they just don't care.
....because they don't realize how difficult it is for someone to follow
along who hasn't read each subsequent post.
....because nobody ever showed them a different way and explained it to them.
....because they're an idiot. (You may fall into this category, among others)

But, I have a better question that I doubt you can answer.
If you feel it is stupid to bottom post vs. top post why would you include
the previous text? This is a newsgroup so the prior text is already posted.
Why repeat it?

It makes sense to repeat it if you bottom post so only the last post in any
thread need be read.
It makes sense to repeat relevant parts when *replying* inline as you would
with any conversation.
It makes no sense to include it when you top post because nobody goes to the
bottom of a message, scrolls up to find the last post, reads down, scrolls
up, reads down, scrolls up, reads down, etc. because that's stupid. Rather
(not Dan) they would then go to the first post and then read each one which
would negate the reason you probably top post.

So, either it's stupid to top post and include the prior text because it's
useless or because you think that's the way a message should read (scroll
down, scroll up, read down, scroll up, read down...).

You're in a newsgroup where each post in a thread is located below the
previous post. How can you then justify your method of posting which
conflicts with the way the newsgroup and your newsreader function, not to
mention the proper way to read/write the English language, left to right and
top to bottom?

Why didn't you respond with:
..pot eht fo daetsni egassem eht fo mottob eht ta stsop ot gniyalper sa
diputs sa tuobA
..diputs nialp tsuj si taht tub yrros ma I

or:

top. the of
instead message the of bottom the at posts to replaying as stupid as About
stupid. plain just is that but sorry am I

It would enforce your argument but yet it would still have the same effect
as you posted. It would be stupid.

Adrienne said, "Please..." be considerate of others and your response was
"that's stupid. Now let me talk about how stupid you post."

While I may not fully agree with Adrienne's comments, I don't think they're
stupid. I do however disagree with yours AND I think they're stupid, but
that's just my opinion.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #11

"Kyle Peterson" <kp*****@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
About as stupid as replaying to posts at the bottom of the message instead
of the top.


The accepted practice (at least by the majority participating in more
technically oriented NGs) is to bottom post as it places the text in
chronological order and allows for natural reading. Consider a single
posting that covers multiple points one wishes to comment on individually.
The respondent would normally find the section of interest, insert a couple
of blank lines, and respond in line beneath the section - again, top to
bottom. Another accepted practice is to trim signature lines. While it may
be desirable to retain all the text from the thread in the reply to place
things in context, it is common practice to limit the old text to no more
than 25% of the full posting preferably leaving only the bits needed to
illustrate the subject of the reply.

But all that is a matter for the 'Net police.
Jul 22 '05 #12
Gazing into my crystal ball I observed "Kyle Peterson"
<kp*****@hotmail.com> writing in
news:#o**************@TK2MSFTNGP15.phx.gbl:
I am sorry but that is just plain stupid.
About as stupid as replaying to posts at the bottom of the message
instead of the top.


Plonk!

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 22 '05 #13
"Adrienne" wrote in message
news:Xn****************************@207.115.63.158 ...
: Gazing into my crystal ball I observed "Kyle Peterson"
: <kp*****@hotmail.com> writing in
: news:#o**************@TK2MSFTNGP15.phx.gbl:
:
: > I am sorry but that is just plain stupid.
: > About as stupid as replaying to posts at the bottom of the message
: > instead of the top.
: >
:
: Plonk!

Aww.. po' lil Adrienne can insult people for no reason but doesn't like to
be called on it but felt it was warranted to let me know they were ignoring
me, well, at least after the notice. So dramatic... ~sigh~
Some days are more fun than others. (O:=


Jul 22 '05 #14
Roland Hall wrote:
"Adrienne" wrote in message
news:Xn****************************@207.115.63.158 ...
Gazing into my crystal ball I observed "Kyle Peterson"
<kp*****@hotmail.com> writing in
news:#o**************@TK2MSFTNGP15.phx.gbl:
I am sorry but that is just plain stupid.
About as stupid as replaying to posts at the bottom of the message
instead of the top.


Plonk!


Aww.. po' lil Adrienne can insult people for no reason


Huh? When did she insult someone? Did I miss something?

Bob
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 22 '05 #15
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:%2******************@tk2msftngp13.phx.gbl...
Roland Hall wrote:
"Adrienne" wrote in message
news:Xn****************************@207.115.63.158 ...
Gazing into my crystal ball I observed "Kyle Peterson"
<kp*****@hotmail.com> writing in
news:#o**************@TK2MSFTNGP15.phx.gbl:

I am sorry but that is just plain stupid.
About as stupid as replaying to posts at the bottom of the message
instead of the top.
Plonk!


Aww.. po' lil Adrienne can insult people for no reason


Huh? When did she insult someone? Did I miss something?


I think Roland went into postal mode but forgot to aim. :-) Roland, Kyle is
the one your after. The rest of us are innocent bystanders.
Jul 22 '05 #16

"Chris Hohmann" <no****@thankyou.com> wrote in message
news:u3****************@TK2MSFTNGP15.phx.gbl...
I think Roland went into postal mode but forgot to aim. :-) Roland, Kyle
is the one your after. The rest of us are innocent bystanders.


your = you're
Jul 22 '05 #17
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:%2******************@tk2msftngp13.phx.gbl...
: Roland Hall wrote:
: > "Adrienne" wrote in message
: > news:Xn****************************@207.115.63.158 ...
: >> Gazing into my crystal ball I observed "Kyle Peterson"
: >> <kp*****@hotmail.com> writing in
: >> news:#o**************@TK2MSFTNGP15.phx.gbl:
: >>
: >>> I am sorry but that is just plain stupid.
: >>> About as stupid as replaying to posts at the bottom of the message
: >>> instead of the top.
: >>>
: >>
: >> Plonk!
: >
: > Aww.. po' lil Adrienne can insult people for no reason
:
: Huh? When did she insult someone? Did I miss something?

No, I did. It's called a brain. I don't know why I thought Adrienne was
plonking me.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp

Jul 22 '05 #18
"Chris Hohmann" <no****@thankyou.com> wrote in message
news:u3****************@TK2MSFTNGP15.phx.gbl...
: "Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
: news:%2******************@tk2msftngp13.phx.gbl...
: > Roland Hall wrote:
: >> "Adrienne" wrote in message
: >> news:Xn****************************@207.115.63.158 ...
: >>> Gazing into my crystal ball I observed "Kyle Peterson"
: >>> <kp*****@hotmail.com> writing in
: >>> news:#o**************@TK2MSFTNGP15.phx.gbl:
: >>>
: >>>> I am sorry but that is just plain stupid.
: >>>> About as stupid as replaying to posts at the bottom of the message
: >>>> instead of the top.
: >>>>
: >>>
: >>> Plonk!
: >>
: >> Aww.. po' lil Adrienne can insult people for no reason
: >
: > Huh? When did she insult someone? Did I miss something?
:
: I think Roland went into postal mode but forgot to aim. :-) Roland, Kyle
is
: the one your after. The rest of us are innocent bystanders.

I was actually taking up for her because I thought it was unwarranted and
then I made a stupid mistake. I guess I deserve to be plonked now.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #19
"Chris Hohmann" <no****@thankyou.com> wrote in message
news:ui**************@TK2MSFTNGP14.phx.gbl...
:
: "Chris Hohmann" <no****@thankyou.com> wrote in message
: news:u3****************@TK2MSFTNGP15.phx.gbl...
: > I think Roland went into postal mode but forgot to aim. :-) Roland, Kyle
: > is the one your after. The rest of us are innocent bystanders.
:
: your = you're
:

Aw crap! You're right. I'm such an idiot and I thought I'd get wiser with
age. My apologies to Adrienne for my stupidity.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp

Jul 22 '05 #20
Gazing into my crystal ball I observed "Roland Hall" <nobody@nowhere>
writing in news:#b**************@TK2MSFTNGP14.phx.gbl:
"Chris Hohmann" <no****@thankyou.com> wrote in message
news:ui**************@TK2MSFTNGP14.phx.gbl...
:
: "Chris Hohmann" <no****@thankyou.com> wrote in message
: news:u3****************@TK2MSFTNGP15.phx.gbl...
: > I think Roland went into postal mode but forgot to aim. :-) Roland,
: > Kyle is the one your after. The rest of us are innocent bystanders.
:
: your = you're
:

Aw crap! You're right. I'm such an idiot and I thought I'd get wiser
with age. My apologies to Adrienne for my stupidity.


Apology accepted - we all have those kind of days.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 22 '05 #21
"Adrienne" <ar********@sbcglobal.net> wrote in message
news:Xn****************************@207.115.63.158 ...
: Gazing into my crystal ball I observed "Roland Hall" <nobody@nowhere>
: writing in news:#b**************@TK2MSFTNGP14.phx.gbl:
:
: > "Chris Hohmann" <no****@thankyou.com> wrote in message
: > news:ui**************@TK2MSFTNGP14.phx.gbl...
: >:
: >: "Chris Hohmann" <no****@thankyou.com> wrote in message
: >: news:u3****************@TK2MSFTNGP15.phx.gbl...
: >: > I think Roland went into postal mode but forgot to aim. :-) Roland,
: >: > Kyle is the one your after. The rest of us are innocent bystanders.
: >:
: >: your = you're
: >:
: >
: > Aw crap! You're right. I'm such an idiot and I thought I'd get wiser
: > with age. My apologies to Adrienne for my stupidity.
: >
:
: Apology accepted - we all have those kind of days.

You're too kind. I don't deserve it but thank you.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #22

I think this is more of a chat room with discussions more personal than
the actual thread issue. Good.
But can anyone reply with an appropriate answer as to what will happen
if "window.open" method is used instead? e.g.
window.open("myaspx.aspx", "" ""); something like this! then I dont
think there is any control over the browser or its content after
response.end.
Try to open an attachment with gmail. This is what I mean.
:-)
Thanks

--
unosinu
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------

Mar 30 '06 #23

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

Similar topics

1
by: Navin | last post by:
i open the file download.asp from another main.asp page using window.open what the problem is when i clikc on the hyperlink it prompts me the ie save dialog box taht fine. but when the script...
2
by: Gary D. Rezek | last post by:
Hi All, First of all I'm mostly an MS Access guy (and novice learning MSSQL guy) and put on this project because of personnel changes, etc and because of db experience. I've only been doing this...
6
by: chon | last post by:
I have an ASP page that is sent a file location as a parameter. It opens this file, loads the ADODB.Stream object and does a binary write to the page forcing the download dialog to appear. This...
6
by: No_Excuses | last post by:
All, I am interested in reading the text of a web page and parsing it. After searching on this newgroup I decided to use the following: ******************************* START OF CODE...
13
by: Mickey | last post by:
Hi all, Currently I use a timestamp to log users out after 15 minutes of inactivity. However I also need to log a user out if they have just left the page. I need to do this because I store...
2
by: comp.lang.php | last post by:
if ($forceDownload) { // HANDLE FORCED DOWNLOAD $dlGen =& new DownloadGenerator($fullFilePath); $negativeIndex = $dlGen->generateForceDownloadHeaders(); $willDeleteTemp =...
14
by: Simon Rigby | last post by:
Hi folks, I appreciate that this topic of forced downloads has been discussed in various threads but my situtation is a little different to those that I have come across and am experiencing a...
12
by: comp.lang.php | last post by:
index.php: // STUFF // STEP 1: imagecreatetruecolor ONLY IF GD 2.0+ SUPPORTED AND FOUND if ($this->isSuccessful && !$hasMogrified && $image && !$newImage &&...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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:
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: 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...
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,...

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.