pass data to another asp page Programming Software Development by Fergus_1 …;/asp:GridView> this works fine and the url that gets displayed is good. But i would like to send the… Re: This is me venting Community Center Meta DaniWeb by jkon … invest your time that when someone asks a serious question gets an answer. I have got the answer "because this… Re: Installing programs from Github Programming Software Development by Reverend Jim Further... Python gets converted to byte code which is then cached in a … Re: Things I hate about TV shows Community Center Geeks' Lounge by Reverend Jim … of it. I especially hate it when a good show gets canned before the story is told. Case in point - Flash… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim Likewise... Whenever I reinstall Windows, other than the times I've reset to factory, when it gets to the "where do you want to install to" I always get the installer to delete, then recreate the partition. Re: Fantastic word game Community Center Geeks' Lounge by Dani It's been a year so I'll go twice in a row. Corner that burglar before he gets away! Re: Improve HAVING BY performance Programming Databases by Biiim … time, SSD is 0.14ms) - and now an M2 SSD gets up to 6gb/s with a faster access latency too… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … if you select any specific region, bloatware for that region gets installed, but if you pick World then no bloatware. You… Re: Read file properties of video files in C++ Programming Software Development by Thomasio … where Windows does report details within the file properties it gets them correct and it does that in near no time… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … him. He had wanted to do F2-power up which gets you into the UEFI/BIOS. So finally he did F12… Re: Gets on linux - not working :( Programming Software Development by Narue gets() is broken by design and you should use fgets() instead, … Re: Turbo C programming Programming Software Development by hkdani gets is still in the documentation. It works. I wouldn't … recommended the simple form of returning an integer using [I]gets[/I] just to get the ball rolling and encourage the… Get HD Info Programming Software Development by alex_extreme Gets the names of all the partitions in a system. Note that media must be in every removable drive for this to work (can be fixed easily) Re: Some help with input check.... Programming Software Development by Salem …; I really don't get it, why it skips the gets after the first input..... I told you already, mixing input… Re: Keyboard input or "stuck in a loop" Programming Software Development by Narue … user */ I [b]know[/b] you didn't just use gets. You couldn't have. Nobody could possibly be that stupid… years of everybody with a brain screaming the peril of gets at the top of their lungs. >then call a… function I know that atoi is almost as devilish as gets, but why not use a standard library function such as… Re: problem in modifying data in a binary file Programming Software Development by iamthwee >gets(name); [url]http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?… Re: distinct word count in C [new here] Programming Software Development by Adak gets() is VERY unsafe, since it has the defect of allowing … Re: What's wrong with this code Programming Software Development by L7Sqr `gets` is [bad](http://stackoverflow.com/questions/4346598/gets-function-in-c/4346650#4346650). And, yes, `strcpy` fails to do bounds checking. Re: Object is not being written into file!!! Programming Software Development by Salem gets() has no means of preventing buffer overflow - pure and simple. > The gets() function has nothing to do with reading and writing into a file I guess. True, but that doesn't stop us commenting on other horrors in your code. Re: I despairet 4 a help Programming Software Development by twomers >> gets(p->name); Bad. Seeing as you're using C++ (… Re: Menu Driven program not running properly..... Programming Software Development by deceptikon > `gets(rm[i].type);` > `fflush(stdin);` These lines are in … that you're using Turbo C++. I'll also let gets() slide, but keep in mind that it's the worst… Re: help me fix my program(strtok,strcmp,array) Programming Software Development by Salem > gets(stringarray); Would be replaced initially by [INLINECODE]fgets( stringarray, sizeof … Re: Expression evaluation! Programming Software Development by Ancient Dragon gets() ignores spaces too :) Use the >> operator to ignore spaces [icode]cin >> word;[/icode] Re: Object is not being written into file!!! Programming Software Development by Salem > gets(name); Why are you using this AWFUL C function in a C++ program? Consider using cin.getline(), which as well as being C++ proper, also protects your char array from buffer overflow. Re: Fifo part 2 Programming Software Development by Ancient Dragon >>gets(data); [URL="http://www.gidnetwork.com/b-56.html"]Click here[/URL] >>it is not letting me scanf in first code but when i manually take Now how do you expect a program to have keyboard access when its running in the background? Keyboard hits only go to the topmost forground program. Re: C Function Programming Software Development by Ancient Dragon gets() is NEVER safe to use because it can corrupt the memory of your program and cause it to crash (or coredump in *nix). [URL="http://www.gidnetwork.com/b-56.html"]Read this explaination[/URL]. Re: VB.NET 2008 The type initializer for ... threw an exception Programming Software Development by QuickBooksDev Gets more confusing. I am looking 2 VB.Net2008 programs. Both … Re: help with c program to count # of words in a string Programming Software Development by Salem > gets(string); Using gets() should be a capital offence. [url]http://c-faq.com/stdio/getsvsfgets.html[/url] Re: Storing names in an array. Programming Software Development by Narue >gets(char[i]); FYI, booze in fact does [b]not[/b] improve your ability to write code. You'd have to be quite confused to write char[i] when you meant firstname[i], and any experienced C programmer would have to be drunk to use gets. Re: ascii value processing Programming Software Development by VernonDozier gets, strlen. printf with a "%c" argument. These are … low-level read and write commands, not functions like "gets". If NULL means anything but a NULL terminator, you…