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

Framesets ?

Hi,

I have a web page where there are two frames. The left hand side frame
has a list. When a row in a list is clicked, the other frame's contents
need to be changed. The right hand frame needs to be a single html
page, so i imagine have to hide and unhide content somehow.

Thanks in advance,
vivekian

Jun 14 '06 #1
29 1849
Forgot the question :) ..how do i do this ?

vivekase...@gmail.com wrote:
Hi,

I have a web page where there are two frames. The left hand side frame
has a list. When a row in a list is clicked, the other frame's contents
need to be changed. The right hand frame needs to be a single html
page, so i imagine have to hide and unhide content somehow.

Thanks in advance,
vivekian


Jun 14 '06 #2
vi*********@gmail.com schrieb:
Forgot the question :) ..how do i do this ?

vivekase...@gmail.com wrote:
Hi,

I have a web page where there are two frames. The left hand side frame
has a list. When a row in a list is clicked, the other frame's contents
need to be changed. The right hand frame needs to be a single html
page, so i imagine have to hide and unhide content somehow.

Thanks in advance,
vivekian


how do you do WHAT? are you asking about the linking that the correct
html site will appear in the right frame? that would be <a
href="rightframe.html" target="right"> in the frameset source you need
to define the right frame with <frame ..... name="right>"

or are you asking about PHP? that the right frame page is ONE .php file
which changes it's content when you click on a link on the left side?
Jun 14 '06 #3
Usually you add something like...

target="right_frame"

....to all the links in the left frame.
vi*********@gmail.com wrote:
Forgot the question :) ..how do i do this ?

vivekase...@gmail.com wrote:
Hi,

I have a web page where there are two frames. The left hand side frame
has a list. When a row in a list is clicked, the other frame's contents
need to be changed. The right hand frame needs to be a single html
page, so i imagine have to hide and unhide content somehow.

Thanks in advance,
vivekian

Jun 14 '06 #4
In article
<11**********************@r2g2000cwb.googlegroups. com>,
vi*********@gmail.com wrote:
Hi,

I have a web page where there are two frames. The left hand side frame
has a list. When a row in a list is clicked, the other frame's contents
need to be changed. The right hand frame needs to be a single html
page, so i imagine have to hide and unhide content somehow.

Thanks in advance,
vivekian


The right hand side is a frame in which appear different html
pages. If there are links in the left frame, clicking one of them
can make a particular html page appear in the right frame. The
magic of frames you see...

As for hiding, it is part of the magic, a deep part. When a
particular html page is not being called, it sits patiently on
the server, a bit like a shy girl on a dance floor waitting for
someone to ask her to dance. By not being called, she is not
present on the dance floor.

How to do things with frames? Why not take a look at
http://wp.netscape.com/assist/net_sites/frames.html

But be bloody quick before spoilsports put you right off them...
or you will miss out on some genuinely good fun... they are hated
with a passion around here.

--
dorayme
Jun 14 '06 #5
Try this for your home page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head >
<title>
My Site- Home.
</title>

<!--Begin Style and Script Configuration-->

<link rel="stylesheet" type="text/css" media="screen"
href="your_css_here.css" /> <!--Sets the style sheet-->
<link rel="shortcut icon" href="favicon.ico" /> <!--Sets the icon in the
address bar-->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<!--Sets your default character set-->
<meta http-equiv="Content-Script-Type" content="text/javascript" /> <!--Sets
the default scripting language-->

<!--End Style and Script Configuration-->

<meta name="Your name" content="Your Page- Home" />

</head >

<frameset border="0" cols="20%,*"> <!--Defines the frameset configuration,
in this case two columns-->
<frame id="navigation" src="nav-pane.html" title="Navigation Page"
scrolling="no" /> <!--the navigation pane is configured here-->
<frame id="content" src="home-pane.html" /> <!--the content pane is
configured here-->

<noframes> <!--Sets up no frames navigation-->
<body>
<a href="home-pane.html">
No frames version
</a>
</body>
</noframes>

</frameset>
</html>

Jeremy

--
Visit my Saab & me at:
http://jerem43.home.att.net
"dorayme" <do************@optusnet.com.au> wrote in message
news:do**********************************@news-vip.optusnet.com.au...
In article
<11**********************@r2g2000cwb.googlegroups. com>,
vi*********@gmail.com wrote:
Hi,

I have a web page where there are two frames. The left hand side frame
has a list. When a row in a list is clicked, the other frame's contents
need to be changed. The right hand frame needs to be a single html
page, so i imagine have to hide and unhide content somehow.

Thanks in advance,
vivekian


The right hand side is a frame in which appear different html
pages. If there are links in the left frame, clicking one of them
can make a particular html page appear in the right frame. The
magic of frames you see...

As for hiding, it is part of the magic, a deep part. When a
particular html page is not being called, it sits patiently on
the server, a bit like a shy girl on a dance floor waitting for
someone to ask her to dance. By not being called, she is not
present on the dance floor.

How to do things with frames? Why not take a look at
http://wp.netscape.com/assist/net_sites/frames.html

But be bloody quick before spoilsports put you right off them...
or you will miss out on some genuinely good fun... they are hated
with a passion around here.

--
dorayme

Jun 15 '06 #6
<vi*********@gmail.com> wrote in message
news:11**********************@r2g2000cwb.googlegro ups.com...
Hi,

I have a web page where there are two frames. The left hand side frame
has a list. When a row in a list is clicked, the other frame's contents
need to be changed. The right hand frame needs to be a single html
page, so i imagine have to hide and unhide content somehow.

Thanks in advance,
vivekian


If you use a frameset then be aware that some visitors will jump out of the
frameset - or be directed by search engines to pages that you would want
framed. One way round that is to include a link on each page to take you
back to your homepage - you don't want someone to arrive at a page but not
then be able to navigate to the rest of your site.
--
Brian Cryer
www.cryer.co.uk/brian
Jun 15 '06 #7


http://www.paulwatt.info
"Brian Cryer" <br*********@127.0.0.1.ntlworld.com> wrote in message
news:l_******************************@pipex.net...
<vi*********@gmail.com> wrote in message
news:11**********************@r2g2000cwb.googlegro ups.com...
Hi,

I have a web page where there are two frames. The left hand side frame
has a list. When a row in a list is clicked, the other frame's contents
need to be changed. The right hand frame needs to be a single html
page, so i imagine have to hide and unhide content somehow.

Thanks in advance,
vivekian


If you use a frameset then be aware that some visitors will jump out of
the frameset - or be directed by search engines to pages that you would
want framed. One way round that is to include a link on each page to take
you back to your homepage - you don't want someone to arrive at a page but
not then be able to navigate to the rest of your site.
--
Brian Cryer
www.cryer.co.uk/brian


Trying to resist, resist,resist.
FRAMES ARE EVIL!
Couldn't resist in the end.
--
Cheers

Paul
Jun 15 '06 #8
"Paul Watt" <pa****@wattio.NOSPAMfreeserve.co.uk> wrote in message
news:4f*************@individual.net...
<snip>
Trying to resist, resist,resist.
FRAMES ARE EVIL!
Couldn't resist in the end.


Not sure about "evil" - but I certainly try to avoid them.
--
Brian Cryer
www.cryer.co.uk/brian
Jun 15 '06 #9

Michael Hedinger wrote:
how do you do WHAT? are you asking about the linking that the correct
html site will appear in the right frame? that would be <a
href="rightframe.html" target="right"> in the frameset source you need
to define the right frame with <frame ..... name="right>"


Think i messed up my question. My apoligies. The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side. The problem is that
all the html content has to be a single html page. So i imagine the
content would have to be hidden or unhidden depending upon what is
clicked on the left hand side. How can i do that -- that is hide and
unhide ?

thanks ..
vivekian

Jun 15 '06 #10
> Trying to resist, resist,resist.
FRAMES ARE EVIL!


Please do suggest an alternative .

thanks..

Jun 15 '06 #11
vi*********@gmail.com wrote:
Michael Hedinger wrote:
how do you do WHAT? are you asking about the linking that the correct
html site will appear in the right frame? that would be <a
href="rightframe.html" target="right"> in the frameset source you need
to define the right frame with <frame ..... name="right>"


Think i messed up my question. My apoligies. The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side. The problem is that
all the html content has to be a single html page. So i imagine the
content would have to be hidden or unhidden depending upon what is
clicked on the left hand side. How can i do that -- that is hide and
unhide ?


Since you aren't going to show different pages in the right frame, why
are you using a frameset at all? I'm asking because if you have some
other reason, that could affect the answer to your question.
Jun 15 '06 #12
> Since you aren't going to show different pages in the right frame, why
are you using a frameset at all? I'm asking because if you have some
other reason, that could affect the answer to your question.


You are right , there is no strong reason for using a frameset. I could
do without them.

thanks..

Jun 15 '06 #13
vi*********@gmail.com wrote:
Michael Hedinger wrote:
how do you do WHAT? are you asking about the linking that the correct
html site will appear in the right frame? that would be <a
href="rightframe.html" target="right"> in the frameset source you need
to define the right frame with <frame ..... name="right>"
Think i messed up my question. My apoligies. The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side. The problem is that
all the html content has to be a single html page.


Aside of the frame issue, why *must* the content frame be *one*
document? Would you read a novel where all 400+ pages were on on
monstrous page? Like the physical example of a page the size of several
football fields a website all on one huge document is equally hard to
handle because the whole document must be downloaded to be views, even
if only a small portion is visible at one time. The proper method is to
divide up your content into logical, digestible, chunks as separate html
documents and link them together with links. You know, like a web...
So i imagine the
content would have to be hidden or unhidden depending upon what is
clicked on the left hand side. How can i do that -- that is hide and
unhide ?


Of course a URL would go a long way in helping us to discover what you
really are trying to accomplish.

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Jun 15 '06 #14

vi*********@gmail.com wrote:
Michael Hedinger wrote:
how do you do WHAT? are you asking about the linking that the correct
html site will appear in the right frame? that would be <a
href="rightframe.html" target="right"> in the frameset source you need
to define the right frame with <frame ..... name="right>"


Think i messed up my question. My apoligies. The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side. The problem is that
all the html content has to be a single html page. So i imagine the
content would have to be hidden or unhidden depending upon what is
clicked on the left hand side. How can i do that -- that is hide and
unhide ?

thanks ..
vivekian


Dear sir,
Content being hidden or unhidden? The concept of the frameset will
give you the ability to view a web page in one of the frames, and be
able to change it with the use of targets and links on the other frame.
You could have the left frame use the GET method (except not through
natural methods, just creating a URL that is basically the GET method)
and then have the right frame have an onLoad function that deciphers
this GET info and changes the page dynamically through specific
variables given in the GET transmission. This can all be achieved
through JavaScript, or through PHP (but PHP is a bit harder with these
functions, so it should primarily be used if JavaScript is disabled).
You could possibly show or hide content using some kind of Ajax or
dynamic functions in JavaScript, or even DHTML, but I do not know these
proficiently, so you are on your own to figure those out.

I have the honor to remain your most humble and Ob't Sv't in our war
against the King.

--
Patrick Reilly
1st Coy.
Colonel Seth Warner's Regiment

Jun 15 '06 #15

vi*********@gmail.com wrote:
Michael Hedinger wrote:
how do you do WHAT? are you asking about the linking that the correct
html site will appear in the right frame? that would be <a
href="rightframe.html" target="right"> in the frameset source you need
to define the right frame with <frame ..... name="right>"
Think i messed up my question. My apoligies. The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side. The problem is that
all the html content has to be a single html page. So i imagine the
content would have to be hidden or unhidden depending upon what is
clicked on the left hand side. How can i do that -- that is hide and
unhide ?

Hmmmm, to do that normally, you would need more then one HTML File to
link to. Or you could use named anchors to link to specific sections of
the page, but that may or may not be a good solution.
A way you could do is if to use Server side includes, you would use CSS
to style your pages and use some include, to baysicly retrieve the
required content from a Database. This means that when I link is
clicked that the page is generated dynamically.
You could use a CMS to do this, you need PHP or some other language and
MySQL though.
Alternitively, just use a stylesheet and create your pages, useing some
simple HTML to help bring the pages in to shape, CSS is good as it's
powerfull and you can design your pages how you want and make changes
easily.
Check out my new design.
In my Sig below.

I hope that helps.

thanks ..
vivekian

--
Regards Chad. http://freewebdesign.cjb.cc

Jun 15 '06 #16
vi*********@gmail.com wrote:
Trying to resist, resist,resist.
FRAMES ARE EVIL!


Please do suggest an alternative .

thanks..

Insert your navigation menu via SSI or PHP (or other server-side
scripting) includes

<body>
<?php include_once('myNavMenu.php); ?>
....rest of document...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Jun 15 '06 #17
Chaddy2222 wrote:
Hmmmm, to do that normally, you would need more then one HTML File to
link to. Or you could use named anchors to link to specific sections of
the page, but that may or may not be a good solution.
A way you could do is if to use Server side includes, you would use CSS
to style your pages and use some include, to baysicly retrieve the
required content from a Database. This means that when I link is
clicked that the page is generated dynamically.
You could use a CMS to do this, you need PHP or some other language and
MySQL though.
Alternitively, just use a stylesheet and create your pages, useing some
simple HTML to help bring the pages in to shape, CSS is good as it's
powerfull and you can design your pages how you want and make changes
easily.


Would like to stick to simple HTML and CSS. Dont want to use any server
side scripting at present. Named anchors sound like a good idea but how
do hide them and show them only when desired ? Is this possible through
DHTML ?

thanks..
vivekian

Jun 15 '06 #18
In article <4f*************@individual.net>,
Harlan Messinger <hm*******************@comcast.net> wrote:
The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side.


Since you aren't going to show different pages in the right frame


How did you conclude this from what the OP said? He used the word
"different"

--
dorayme
Jun 15 '06 #19
In article
<11**********************@c74g2000cwc.googlegroups .com>,
vi*********@gmail.com wrote:
Since you aren't going to show different pages in the right frame, why
are you using a frameset at all? I'm asking because if you have some
other reason, that could affect the answer to your question.


You are right , there is no strong reason for using a frameset. I could
do without them.

thanks..


It is not right at all. It may be right that you should not use
frames but not for the reason that you will not have different
htmls in the right side, you have already said that if a viewer
clicks on a link on the left frame, different content (html) will
appear in the right.

This is an Alice in Wonderland thread.

--
dorayme
Jun 15 '06 #20
In article
<11**********************@c74g2000cwc.googlegroups .com>,
vi*********@gmail.com wrote:
Since you aren't going to show different pages in the right frame, why
are you using a frameset at all? I'm asking because if you have some
other reason, that could affect the answer to your question.


You are right , there is no strong reason for using a frameset. I could
do without them.

thanks..


No, I was wrong it seems... oops... "different" is just different
parts of one page in your meaning. I just looked at JL's post and
realised. Sorry. You want to link to different bits of a page on
the right. This is not hard.

Still, let me carry on nevertheless: it is still not quite clear
why this should make it inappropriate for frames. Frames might be
inappropriate but not for this reason. One of the great strengths
of frames is this: well supported way of getting the menu on the
left to not disappear as it so absurdly does most of the time and
we have all got used to it. (It almost beggars belief actually
that this has happened)

--
dorayme
Jun 15 '06 #21
In article
<11**********************@f6g2000cwb.googlegroups. com>,
vi*********@gmail.com wrote:
Michael Hedinger wrote:
how do you do WHAT? are you asking about the linking that the correct
html site will appear in the right frame? that would be <a
href="rightframe.html" target="right"> in the frameset source you need
to define the right frame with <frame ..... name="right>"


Think i messed up my question. My apoligies. The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side. The problem is that
all the html content has to be a single html page. So i imagine the
content would have to be hidden or unhidden depending upon what is
clicked on the left hand side. How can i do that -- that is hide and
unhide ?

thanks ..
vivekian


Now I understand your q better: to link to something in the
middle of a long page on the right side this should work
reasonably well:

<a href="rightHandDoc.html#middle" target="rightframe">click to
middle of page</a>

in the navigation.

In the html for the right, you would put

id="middle"

where you want the link to go to:

<h1 id="middle">A heading that is about the middle of the
page</h1>

This works well on my tests

(You can also use another construction but try this)

--
dorayme
Jun 15 '06 #22

dorayme wrote:
Think i messed up my question. My apoligies. The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side. The problem is that
all the html content has to be a single html page. So i imagine the
content would have to be hidden or unhidden depending upon what is
clicked on the left hand side. How can i do that -- that is hide and
unhide ?

thanks ..
vivekian


Now I understand your q better: to link to something in the
middle of a long page on the right side this should work
reasonably well:

<a href="rightHandDoc.html#middle" target="rightframe">click to
middle of page</a>

in the navigation.

In the html for the right, you would put

id="middle"

where you want the link to go to:

<h1 id="middle">A heading that is about the middle of the
page</h1>

This works well on my tests

(You can also use another construction but try this)


Would want the content present within the h1 tag to remain hidden until
the corresponding link on the left side is clicked on. It should be
invisible.

thanks..

Jun 15 '06 #23
In article
<11**********************@i40g2000cwc.googlegroups .com>,
vi*********@gmail.com wrote:
dorayme wrote:

Now I understand your q better: to link to something in the
middle of a long page on the right side this should work
reasonably well:

<a href="rightHandDoc.html#middle" target="rightframe">click to
middle of page</a>

in the navigation.

In the html for the right, you would put

id="middle"

where you want the link to go to:

<h1 id="middle">A heading that is about the middle of the
page</h1>

This works well on my tests

(You can also use another construction but try this)


Would want the content present within the h1 tag to remain hidden until
the corresponding link on the left side is clicked on. It should be
invisible.


Whatever do you mean? There is no content in the <h1...> just as
there is no picture in <img src="pic.jpg">. The latter is just
text and acts as instruction to web browsers.

--
dorayme
Jun 16 '06 #24
To further the education of mankind, vi*********@gmail.com vouchsafed:
Would like to stick to simple HTML and CSS. Dont want to use any server
side scripting at present. Named anchors sound like a good idea but how
do hide them and show them only when desired ? Is this possible through
DHTML ?


DHTML is not "simple HTML and CSS". I'm still not sure exactly what you
want to do, either. If it is to replace content as if in part of a page,
server-side is the way to go.

--
Neredbojias
Infinity has its limits.
Jun 16 '06 #25
dorayme wrote:
In article <4f*************@individual.net>,
Harlan Messinger <hm*******************@comcast.net> wrote:
The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side.

Since you aren't going to show different pages in the right frame


How did you conclude this from what the OP said? He used the word
"different"


From reading it. What part of "has to be a single html page" don't you
understand?
Jun 16 '06 #26
In article <4f*************@individual.net>,
Harlan Messinger <hm*******************@comcast.net> wrote:
dorayme wrote:
In article <4f*************@individual.net>,
Harlan Messinger <hm*******************@comcast.net> wrote:
The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side.
Since you aren't going to show different pages in the right frame


How did you conclude this from what the OP said? He used the word
"different"


From reading it. What part of "has to be a single html page" don't you
understand?


Yes, I fully deserve this. Sorry, Harlan old boy... You seem to
have understood the OP on this straight away... OP is quite
surprising though in his follow questions?

--
dorayme
Jun 16 '06 #27
What about using CSS to hide the parts of the right page which should
not be visible and using JavaScript to make them visible?

RIGHT FRAME:
<html>
<head>
<title>SomeTitle</title>
<style type="text/css">
#Content1{display:block}
#Content2{display:none}
#Content3{display:none}
</style>
<script type="text/javascript" language="javascript">
function showContent(n){
for (i=1; i<=3; i++){
document.getElementById("Content"+1).style.display ="none"
}
document.getElementById("Content"+n).style.display ="block"
}
</script>
</head>
<body>
<div id="Content1">Content 1</div>
<div id="Content2">Content 2</div>
<div id="Content3">Content 3</div>
</body>
</html>
Now a link in the left frame has to look like this (if right frame is
named "right"):

<a href="javascript:parent.right.showContent(1)>ShowC ontent1</a>
<a href="javascript:parent.right.showContent(2)>ShowC ontent2</a>
<a href="javascript:parent.right.showContent(3)>ShowC ontent3</a>

I think this should work, but I haven't tested yet.
Jun 19 '06 #28
jojo <jo*********@gmx.de> wrote:
What about using CSS to hide the parts of the right page which should
not be visible and using JavaScript to make them visible?


If you use JavaScript to make something visible, then you should use
JavaScript to hide it in the first place. Using CSS to hide it makes it
inaccessible to those with CSS enabled, but JavaScript
disabled/unavailable.
--
Darin McGrew, mc****@stanfordalumni.org, http://www.rahul.net/mcgrew/
Web Design Group, da***@htmlhelp.com, http://www.HTMLHelp.com/

Why is "abbreviated" such a long word?
Jun 19 '06 #29
Darin McGrew schrieb:
jojo <jo*********@gmx.de> wrote:
What about using CSS to hide the parts of the right page which should
not be visible and using JavaScript to make them visible?


If you use JavaScript to make something visible, then you should use
JavaScript to hide it in the first place. Using CSS to hide it makes it
inaccessible to those with CSS enabled, but JavaScript
disabled/unavailable.


OK, you're right. Than replace the head-section in my last posting with
this:

<head>
<title>SomeTitle</title>
<script type="text/javascript" language="javascript">
function showContent(n){
for (i=1; i<=3; i++){
document.getElementById("Content"+1).style.display ="none"
}
if (n) document.getElementById("Content"+n).style.display ="block"
}
showContent()
</script>
</head>
Jun 19 '06 #30

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

Similar topics

9
by: CMAR | last post by:
I have been trying to validate a frameset document with either the HTML 4.01 or XHTML Transitional DOCTYPE. But I am finding that various <frameset> attributes ( framespacing="0", border="0",...
14
by: x | last post by:
Greetings everyone: I am trying to get CSS to work with a framed web page, but I cannot. Does anyone know the syntax required in a CSS specification to specify attributes of the frames? ...
5
by: Martin Franklin | last post by:
I have a simple 2 page frameset that I am trying to protect using asp. I've included the following code listed below at the top of each page including the frameset page in an attempt to protect...
10
by: David Shorthouse | last post by:
Hey folks, I have my entire ASP-driven site in a one-frame frameset to preserve a static URL in a browser's address bar. I also have a customized 404 page to redirect a visitor to the top,...
5
by: terry | last post by:
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...
4
by: Pete | last post by:
Hello- I am have a real trying time finding information on this subject. I would like to create a web page that utilizes framesets (top & bottom) and a navigation control I created from a datalist...
1
by: JAW | last post by:
I have a frameset that contains frames (top and bottom). In the bottopm frame I have a datagrid, with a command button on the first column of the grid. When I click on the button for the appropiate...
4
by: lashnjo | last post by:
hello, is it possible to click on one frameset, (ex. an image) and then for it to load a new frame in two different framesets and a new one in itself
1
by: Mark Rae | last post by:
Hi, Firstly, I have not the slightest intention of using framesets - the reason for this post is merely to ask for assistance in furthering my understanding of XHTML. I was under the...
8
by: geekifyer | last post by:
So I was wondering, what possible replacements are there for the frameset? Because I just want to have my menu and article column be static and not have to be reloaded again, all I really want to be...
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: 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: 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,...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.