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

Passing fields from one page to another

I have two ASP pages
payment.asp:
For customers to fill in payment/card details (pre-populating details if
details submitted were invalid and user had to re-fill in details)

confirmorder.asp:
Display the credit card details in hidden fields and also the order details
from Database

My question is
1) If payment.asp submit to confirmorder.asp, then
1.1) I could get confirmorder.asp to display card details in hidden fields
BUT
1.2) But if card details are invalid how could I return user to payment.asp
with card details prepopulated??
1.2.1) If I Response.Redirect, nothing would be pre-popualting (unless I put
in details in Query string, which is not what I wanted for security reasons)

2) If payment.asp submit to payment.asp then
2.1) I could get page to pre-populate details on payment.asp if card details
are invalid BUT
2.2) How could I direct user to confirmorder.asp back to payment.asp with
details pre-populated
1.2.2) If I Response.Redirect, hidden fields cannot be populated by reading
in Request.form!
Jul 21 '05 #1
12 1934
I would try to avoid using Session, but if I were to use Session, would
Session data be held in the server's memory/RAM?

"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:eL**************@tk2msftngp13.phx.gbl...
I have two ASP pages
payment.asp:
For customers to fill in payment/card details (pre-populating details if
details submitted were invalid and user had to re-fill in details)

confirmorder.asp:
Display the credit card details in hidden fields and also the order details from Database

My question is
1) If payment.asp submit to confirmorder.asp, then
1.1) I could get confirmorder.asp to display card details in hidden fields
BUT
1.2) But if card details are invalid how could I return user to payment.asp with card details prepopulated??
1.2.1) If I Response.Redirect, nothing would be pre-popualting (unless I put in details in Query string, which is not what I wanted for security reasons)
2) If payment.asp submit to payment.asp then
2.1) I could get page to pre-populate details on payment.asp if card details are invalid BUT
2.2) How could I direct user to confirmorder.asp back to payment.asp with
details pre-populated
1.2.2) If I Response.Redirect, hidden fields cannot be populated by reading in Request.form!

Jul 21 '05 #2
for confidential information (credit cards)...
don't use hidden fields.
dont' use querystring.
use session or a db, it stays on the server, does not get passed to the
client.

also when you redirect back to the first page, you can simply repopulate all
the necessary data fields.
"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
I would try to avoid using Session, but if I were to use Session, would
Session data be held in the server's memory/RAM?

"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:eL**************@tk2msftngp13.phx.gbl...
I have two ASP pages
payment.asp:
For customers to fill in payment/card details (pre-populating details if
details submitted were invalid and user had to re-fill in details)

confirmorder.asp:
Display the credit card details in hidden fields and also the order

details
from Database

My question is
1) If payment.asp submit to confirmorder.asp, then
1.1) I could get confirmorder.asp to display card details in hidden
fields
BUT
1.2) But if card details are invalid how could I return user to

payment.asp
with card details prepopulated??
1.2.1) If I Response.Redirect, nothing would be pre-popualting (unless I

put
in details in Query string, which is not what I wanted for security

reasons)

2) If payment.asp submit to payment.asp then
2.1) I could get page to pre-populate details on payment.asp if card

details
are invalid BUT
2.2) How could I direct user to confirmorder.asp back to payment.asp with
details pre-populated
1.2.2) If I Response.Redirect, hidden fields cannot be populated by

reading
in Request.form!


Jul 21 '05 #3
Is stuffed stored in a Session *completely* uncompromisable/unhackable (even
for someone with [admin] access to the server)? (A IIS5.0 Server on Win2K
Pro SP4)?

"caulker" <ws*******@ucsd.edu> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
for confidential information (credit cards)...
don't use hidden fields.
dont' use querystring.
use session or a db, it stays on the server, does not get passed to the
client.

also when you redirect back to the first page, you can simply repopulate all the necessary data fields.
"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
I would try to avoid using Session, but if I were to use Session, would
Session data be held in the server's memory/RAM?

"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:eL**************@tk2msftngp13.phx.gbl...
I have two ASP pages
payment.asp:
For customers to fill in payment/card details (pre-populating details if details submitted were invalid and user had to re-fill in details)

confirmorder.asp:
Display the credit card details in hidden fields and also the order

details
from Database

My question is
1) If payment.asp submit to confirmorder.asp, then
1.1) I could get confirmorder.asp to display card details in hidden
fields
BUT
1.2) But if card details are invalid how could I return user to

payment.asp
with card details prepopulated??
1.2.1) If I Response.Redirect, nothing would be pre-popualting (unless I
put
in details in Query string, which is not what I wanted for security

reasons)

2) If payment.asp submit to payment.asp then
2.1) I could get page to pre-populate details on payment.asp if card

details
are invalid BUT
2.2) How could I direct user to confirmorder.asp back to payment.asp

with details pre-populated
1.2.2) If I Response.Redirect, hidden fields cannot be populated by

reading
in Request.form!



Jul 21 '05 #4
In that scenario, nothing is completely secure.

Patrick wrote:
Is stuffed stored in a Session *completely*
uncompromisable/unhackable (even for someone with [admin] access to
the server)? (A IIS5.0 Server on Win2K Pro SP4)?

"caulker" <ws*******@ucsd.edu> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
for confidential information (credit cards)...
don't use hidden fields.
dont' use querystring.
use session or a db, it stays on the server, does not get passed to
the client.

also when you redirect back to the first page, you can simply
repopulate all the necessary data fields.
"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
I would try to avoid using Session, but if I were to use Session,
would Session data be held in the server's memory/RAM?

"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:eL**************@tk2msftngp13.phx.gbl...
I have two ASP pages
payment.asp:
For customers to fill in payment/card details (pre-populating
details if details submitted were invalid and user had to re-fill
in details)

confirmorder.asp:
Display the credit card details in hidden fields and also the
order details from Database

My question is
1) If payment.asp submit to confirmorder.asp, then
1.1) I could get confirmorder.asp to display card details in hidden
fields
BUT
1.2) But if card details are invalid how could I return user to
payment.asp with card details prepopulated??
1.2.1) If I Response.Redirect, nothing would be pre-popualting
(unless I put in details in Query string, which is not what I
wanted for security reasons)

2) If payment.asp submit to payment.asp then
2.1) I could get page to pre-populate details on payment.asp if
card details are invalid BUT
2.2) How could I direct user to confirmorder.asp back to
payment.asp with details pre-populated
1.2.2) If I Response.Redirect, hidden fields cannot be populated
by reading in Request.form!


--
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 21 '05 #5
But is it true that
1) Session data is held in the Server's Memory/RAM (as opposed to
hard-disk)?
2) Each HTTP client would has its own session data (so a client cannot
access session data of another HTTP client)
3) Each Internet Explorer Window would share the same session (unless the
client start a new instance of IE for each window), so session data would
get corrupted
4) If I do a Session.Contents.RemoveAll(), I am only removing session data
for that particular HTTP client (and not all clients).

(Short of using some low-level tools to access the server's memory, can data
held in the Session be easily hackable, or at least as easily as selecting
records from a SQL Server database?)

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:O0**************@TK2MSFTNGP09.phx.gbl...
In that scenario, nothing is completely secure.

Patrick wrote:
Is stuffed stored in a Session *completely*
uncompromisable/unhackable (even for someone with [admin] access to
the server)? (A IIS5.0 Server on Win2K Pro SP4)?

"caulker" <ws*******@ucsd.edu> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
for confidential information (credit cards)...
don't use hidden fields.
dont' use querystring.
use session or a db, it stays on the server, does not get passed to
the client.

also when you redirect back to the first page, you can simply
repopulate all the necessary data fields.
"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
I would try to avoid using Session, but if I were to use Session,
would Session data be held in the server's memory/RAM?

"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:eL**************@tk2msftngp13.phx.gbl...
> I have two ASP pages
> payment.asp:
> For customers to fill in payment/card details (pre-populating
> details if details submitted were invalid and user had to re-fill
> in details)
>
> confirmorder.asp:
> Display the credit card details in hidden fields and also the
> order details from Database
>
> My question is
> 1) If payment.asp submit to confirmorder.asp, then
> 1.1) I could get confirmorder.asp to display card details in hidden
> fields
> BUT
> 1.2) But if card details are invalid how could I return user to
> payment.asp with card details prepopulated??
> 1.2.1) If I Response.Redirect, nothing would be pre-popualting
> (unless I put in details in Query string, which is not what I
> wanted for security reasons)
>
> 2) If payment.asp submit to payment.asp then
> 2.1) I could get page to pre-populate details on payment.asp if
> card details are invalid BUT
> 2.2) How could I direct user to confirmorder.asp back to
> payment.asp with details pre-populated
> 1.2.2) If I Response.Redirect, hidden fields cannot be populated
> by reading in Request.form!


--
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 21 '05 #6
Patrick wrote:
But is it true that
1) Session data is held in the Server's Memory/RAM (as opposed to
hard-disk)?
Yes, unless RAM runs out and the system has to start paging to disk.
2) Each HTTP client would has its own session data (so a client cannot
access session data of another HTTP client)
Yes. But there are spoofing exploits that you should research and be
prepared for.
3) Each Internet Explorer Window would share the same session (unless
the client start a new instance of IE for each window), so session
data would get corrupted
Unless the window is opened by code in the page, each window opened by a
user will have its own session.
4) If I do a Session.Contents.RemoveAll(), I am only removing session
data for that particular HTTP client (and not all clients).
Yes..

(Short of using some low-level tools to access the server's memory,
can data held in the Session be easily hackable, or at least as
easily as selecting records from a SQL Server database?)
No. Low-level tools are required. Transmission of confidential data should
of course be done via SSL.

http://msdn.microsoft.com/library/en...ychecklist.asp

http://msdn.microsoft.com/library/en...ngsessions.asp

http://www.aspfaq.com/show.asp?id=2053

Bob Barrows


"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:O0**************@TK2MSFTNGP09.phx.gbl...
In that scenario, nothing is completely secure.

Patrick wrote:
Is stuffed stored in a Session *completely*
uncompromisable/unhackable (even for someone with [admin] access to
the server)? (A IIS5.0 Server on Win2K Pro SP4)?

"caulker" <ws*******@ucsd.edu> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
for confidential information (credit cards)...
don't use hidden fields.
dont' use querystring.
use session or a db, it stays on the server, does not get passed to
the client.

also when you redirect back to the first page, you can simply
repopulate all the necessary data fields.
"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
> I would try to avoid using Session, but if I were to use Session,
> would Session data be held in the server's memory/RAM?
>
> "Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
> news:eL**************@tk2msftngp13.phx.gbl...
>> I have two ASP pages
>> payment.asp:
>> For customers to fill in payment/card details (pre-populating
>> details if details submitted were invalid and user had to re-fill
>> in details)
>>
>> confirmorder.asp:
>> Display the credit card details in hidden fields and also the
>> order details from Database
>>
>> My question is
>> 1) If payment.asp submit to confirmorder.asp, then
>> 1.1) I could get confirmorder.asp to display card details in
>> hidden fields
>> BUT
>> 1.2) But if card details are invalid how could I return user to
>> payment.asp with card details prepopulated??
>> 1.2.1) If I Response.Redirect, nothing would be pre-popualting
>> (unless I put in details in Query string, which is not what I
>> wanted for security reasons)
>>
>> 2) If payment.asp submit to payment.asp then
>> 2.1) I could get page to pre-populate details on payment.asp if
>> card details are invalid BUT
>> 2.2) How could I direct user to confirmorder.asp back to
>> payment.asp with details pre-populated
>> 1.2.2) If I Response.Redirect, hidden fields cannot be populated
>> by reading in Request.form!


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


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 21 '05 #7
Why shouldn't secure data be stored in hidden fields on webpages when user
move from one page to another?

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
Patrick wrote:
But is it true that
1) Session data is held in the Server's Memory/RAM (as opposed to
hard-disk)?
Yes, unless RAM runs out and the system has to start paging to disk.
2) Each HTTP client would has its own session data (so a client cannot
access session data of another HTTP client)


Yes. But there are spoofing exploits that you should research and be
prepared for.
3) Each Internet Explorer Window would share the same session (unless
the client start a new instance of IE for each window), so session
data would get corrupted


Unless the window is opened by code in the page, each window opened by a
user will have its own session.
4) If I do a Session.Contents.RemoveAll(), I am only removing session
data for that particular HTTP client (and not all clients).


Yes..

(Short of using some low-level tools to access the server's memory,
can data held in the Session be easily hackable, or at least as
easily as selecting records from a SQL Server database?)


No. Low-level tools are required. Transmission of confidential data should
of course be done via SSL.

http://msdn.microsoft.com/library/en...ychecklist.asp
http://msdn.microsoft.com/library/en...ngsessions.asp

http://www.aspfaq.com/show.asp?id=2053

Bob Barrows


"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:O0**************@TK2MSFTNGP09.phx.gbl...
In that scenario, nothing is completely secure.

Patrick wrote:
Is stuffed stored in a Session *completely*
uncompromisable/unhackable (even for someone with [admin] access to
the server)? (A IIS5.0 Server on Win2K Pro SP4)?

"caulker" <ws*******@ucsd.edu> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
> for confidential information (credit cards)...
> don't use hidden fields.
> dont' use querystring.
> use session or a db, it stays on the server, does not get passed to
> the client.
>
> also when you redirect back to the first page, you can simply
> repopulate all the necessary data fields.
>
>
> "Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
> news:%2****************@TK2MSFTNGP15.phx.gbl...
>> I would try to avoid using Session, but if I were to use Session,
>> would Session data be held in the server's memory/RAM?
>>
>> "Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
>> news:eL**************@tk2msftngp13.phx.gbl...
>>> I have two ASP pages
>>> payment.asp:
>>> For customers to fill in payment/card details (pre-populating
>>> details if details submitted were invalid and user had to re-fill
>>> in details)
>>>
>>> confirmorder.asp:
>>> Display the credit card details in hidden fields and also the
>>> order details from Database
>>>
>>> My question is
>>> 1) If payment.asp submit to confirmorder.asp, then
>>> 1.1) I could get confirmorder.asp to display card details in
>>> hidden fields
>>> BUT
>>> 1.2) But if card details are invalid how could I return user to
>>> payment.asp with card details prepopulated??
>>> 1.2.1) If I Response.Redirect, nothing would be pre-popualting
>>> (unless I put in details in Query string, which is not what I
>>> wanted for security reasons)
>>>
>>> 2) If payment.asp submit to payment.asp then
>>> 2.1) I could get page to pre-populate details on payment.asp if
>>> card details are invalid BUT
>>> 2.2) How could I direct user to confirmorder.asp back to
>>> payment.asp with details pre-populated
>>> 1.2.2) If I Response.Redirect, hidden fields cannot be populated
>>> by reading in Request.form!

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


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Jul 21 '05 #8
Silly. Create a page with a hidden field. Set the field's value to some text
and load the page in your browser. Click View|Source

Bob Barrows

Patrick wrote:
Why shouldn't secure data be stored in hidden fields on webpages when
user move from one page to another?

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 21 '05 #9
So, a customer could "hack" their own credit card number, is that an issue?

Also in payment.asp, if invalid card details are entered, the user would be
taken back to the same page with card details pre-populated (for
corrections) anyway.

Also, the card number, Security number could be RC4 encrypted in the hidden
fields

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:uX**************@TK2MSFTNGP10.phx.gbl...
Silly. Create a page with a hidden field. Set the field's value to some text and load the page in your browser. Click View|Source

Bob Barrows

Patrick wrote:
Why shouldn't secure data be stored in hidden fields on webpages when
user move from one page to another?

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Jul 21 '05 #10
No, a customer hacking his own number is not an issue. However, unless ssl
is used, this data is sent to the browser in clear text, making it
vulnerable to network sniffers. Also, pages are cached in the client,
allowing somebody with physical access to the machine to read the source
from the cache.

As for encryption, this could be an option, at the cost of adding extra
complexity.

You've reached the limit of my experience with security issues. Unless
someone else jumps in here, You may want to direct further questions to one
of the security newsgroups.

Bob Barrows

Patrick wrote:
So, a customer could "hack" their own credit card number, is that an
issue?

Also in payment.asp, if invalid card details are entered, the user
would be taken back to the same page with card details pre-populated
(for corrections) anyway.

Also, the card number, Security number could be RC4 encrypted in the
hidden fields

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:uX**************@TK2MSFTNGP10.phx.gbl...
Silly. Create a page with a hidden field. Set the field's value to
some text and load the page in your browser. Click View|Source

Bob Barrows

Patrick wrote:
Why shouldn't secure data be stored in hidden fields on webpages
when user move from one page to another?


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 21 '05 #11
Pages are sometimes cached locally. People sometimes walk away from public
computers without logging off the site (doh).

Help protect your customers and they will love (or at least not hate) you
for it.

"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:ek**************@TK2MSFTNGP11.phx.gbl...
So, a customer could "hack" their own credit card number, is that an issue?
Also in payment.asp, if invalid card details are entered, the user would be taken back to the same page with card details pre-populated (for
corrections) anyway.

Also, the card number, Security number could be RC4 encrypted in the hidden fields

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:uX**************@TK2MSFTNGP10.phx.gbl...
Silly. Create a page with a hidden field. Set the field's value to some

text
and load the page in your browser. Click View|Source

Bob Barrows

Patrick wrote:
Why shouldn't secure data be stored in hidden fields on webpages when
user move from one page to another?

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Jul 21 '05 #12

"Patrick" <pa**@reply.newsgroup.msn.com> wrote in message
news:#d**************@TK2MSFTNGP09.phx.gbl...
Why shouldn't secure data be stored in hidden fields on webpages when user
move from one page to another?


Because hidden fields are revealed by a simple View Source in the browser.
Jul 21 '05 #13

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

Similar topics

1
by: Newbie | last post by:
OK, this may be impossible since I'm using 3rd party shopping cart ASP software, but I've been able to finagle a lot of other stuff I thought wouldn't work, so here we go: I'm using a form in...
2
by: Miguel Orrego | last post by:
Hi, I have a page that pulls data from a database, one of the fields is Notetext which frequently contains an email. I then want to pass this onto another page, that updates the email field in...
4
by: Ryann | last post by:
Hello. I am creating a form that has 5 steps/pages. Each page contains about 20 fields. But I don't want to write them until they submit on the last page. I figured out that I can use hidden...
2
by: Richard | last post by:
**** Post for FREE via your newsreader at post.usenet.com **** HI, I am working on a project where I need to input data to a (local) HTML page using multiple form elements, such as text,...
27
by: Oscar | last post by:
I am looking for a way to pass an ADO recordset that has been retrieved in an ASP page to another HTML-page. Is there someone who can provide me with a small sample or a link to see how this is...
0
by: Rico Singleton | last post by:
I currently have an asp page that contains a simple form and a few hidden fields. One of those hidden fields retrieves a value passed in when a link is clicked that passes a value (i.e...
4
by: David Freeman | last post by:
Hi There! I'm just wondering if there's a way to pass parameters (as if you were passing parameters to a ASCX web control) when calling an ASPX page? e.g. MyDetailsPage.UserName = "david" ...
1
by: williamroy | last post by:
Hello, I've got a form that runs over 5 pages. I need the last page submit button to post all of the answers at one time from the previous 5 pages (to another server). I'd like to see the last...
28
by: Skeets | last post by:
i'm passing session and hidden variables between pages. not to mention post values. i'm a little concerned that someone with sufficient knowledge could spoof these vlaues and manipulate 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: 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: 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...
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...

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.