354 Posted Topics
Re: [URL="http://www.connectionstrings.com/?carrier=sqlserver"]try thie[/URL] | |
Re: u'r all if statments contain return at last so no need to put else it will solve u'r prob | |
Re: try to find some book thats good for beginner.... | |
Re: UserListIn.get(i) will return object of i'th position in this list for more info [URL="http://www.javadoconline.com/search.jsp?from=main&class=ArrayList&action=search"]see this[/URL] | |
Re: [QUOTE=Venom Rush;527203]Hmmm, not ideal as you've said. Is there any real chance that a semantic URL attack could happen if I put the eid in the URL? Or am I relatively safe?[/QUOTE] its not good to put info into url which u dont want others to know. | |
Re: do u'r home work without internet,,,,,,,,,, dont be dependent on net too much, it will suck. | |
Re: just post old standards it will help us to find out new one instead of reinventing the wheel... | |
Re: either define a global variable count or pass it to the recursive function by defining it global or make a separate class who will take care of counter where counter will be static member variable. | |
Re: you inspect the code at client side, there u check the property of text box and then try to put id over text box, using this id access the textbox and use it for ajax, probably it should work. | |
Re: Hi, I dont think u can do that. if succeeded pls post the ans. here itself. [QUOTE]and have the Javascript/HTML upload the photos automatically.[/QUOTE] this thing u cant do with js or html as it may create security problem, hence not there. | |
Re: hi i think u r talking about variable no. of argument for that u can use [URL="http://books.google.com/books?id=zJ-oGKvKv24C&pg=PA51&lpg=PA51&dq=stdarg+for+variable+no+of+argument&source=web&ots=rpIdEw1QJx&sig=aUngqbXUCXbTZISWMcso63qgYNs#PPA51,M1"]stdarg.h[/URL] | |
Re: hi whenever u r developing the website use 3 or 4 browsers to see the result, and after the development of each and every step see the result on every browser this is the only way to check the compatiblity with not only colors but with elements too. | |
Re: Hi u can go for development of u'r own search engine using free java api [URL="http://lucene.apache.org/"]Lucene [/URL] or u can try [URL="http://lucene.apache.org/nutch/about.html"]Nutch [/URL]from apache . | |
Re: confusing ...... may be u need to put above code in button click event or if that control who's text u want is in another form then form.control.text="text"; prbbly thats u want !!!!!!! | |
Re: i think since u know java script be familiar with ajax, it will be helpful also be familiar with one server side scripting like asp .Net or PHP, along with this search in local news paper. see there requirement , and learn those things, approach them show u'r experience. It … | |
Re: or u can put a if condition to conver 13 in to 1. | |
Re: you can use dom's style.left and style.top properties to position the img. if it is not working put img inside a div and use above property, with div .and also put style.position='absolute' to work with div. | |
Re: no it didnot return any dom object taking id. if u want to do that u should use getElementById('idname') method of document object. | |
Re: [CODE=c]int base_numeric() { //works with any base 2-10 int number = 1101; //binary number int base = 2; //from base 2 int i = 0; int r = 0; int mul; while (number > 0) { int digit = number % 10; //extract 1 digit (no matter base) mul = … | |
| |
Re: without javascript u cant enjoy ajax, so in you can redirect user to the other page which says them to enable javascript in order to visit website. | |
Re: I think following things are necessary: -------------------------------------------- 1. You should be good at HTML 2. You should be familiar with JavaScript 3. You should be familiar with CSS 4. Yous should be familiar with at least one of the server side scripting language like PHP, JSP, ASP. 5. You should … | |
Re: u make a hash table where empId will be key and it will return pointer to particular structure. this will make u'r job easy. | |
Re: check the location, may be there is some permission problem in server, there u have to put file read/write permission some time. | |
Re: for each <li> put closing </li> and also for each <h2> put closing </h2> tag. | |
Re: after passing sym to cnvrt() value of row='0' and col='0'-2= '.' (ascii of '0' is 48 and 48-2=46 which is ascii of character '.') so ultimately s_Hexdecitable[row][col]=s_Hexdecitable[48][46] (since it is index which should be integer hence that will be converted to integer. since 48,46 is more than the dimension of … | |
Re: [QUOTE]I understand atof is the way to do but after experimenting with it I can't get it to work, getting strange results no matter how much I tried.[/QUOTE] Hi, char array is not string, atof take string as param, put '\0' in the last of char array, probably then it … | |
Re: hi for entire page use a table having 1 row and 3 column, and put on first row - LeftNav on second row - Content on third row - RightNav here make invisible the border of tables through css formating. | |
| |
Re: server side include is best option, typing code is nice , for that try edit plus or notepad++.... | |
Re: can u plz send the url of webpage where u have seen this. I m not able to get what r u telling | |
Re: Hi use document.location.href property to achieve this. suppose u want to navigate to page example.html then u can do like this document.location.href="example.html"; | |
Re: Hi try this: replace ul tag with div tag and have same class like following: [code] <div class="hMenu"> <li class="hOption" title="Manage all content directly"><a href="/admin.htm?content=command">Content</a></li> <li class="hOption" title="Manage Criterion Value"><a href="/admin.htm?criteria=command">Criteria</a></li> <li class="hOption" title="Manage Question Format"><a href="/admin.htm?question=all">Question</a></li> <li class="hOption" title="Manage Form Generation"><a href="/admin.htm?form=all">Form</a></li> <li class="hOption" title="Manage Notary Database"><a href="/admin.htm?notary=all">Notary</a></li> <li … | |
Re: dom approach has its own beauty.........it has solved many problems.. | |
Re: it will not work on onload event as dom tree has not been yet formed. try this: --------- suppose function name is myFun(); then call it inside script block just after body tag , like this [code] <body> <script> myFun(); </script> </body> [/code] | |
Re: suppose u'r form name is frm1, inside frm1 one textbox is there name text1 , then to retrieve value of text1 u should write code: [code] var textStr=document.frm1.text1.value [/code] | |
Re: Normally scripting languages are interpreted i.e. run on a virtual OS while most of the Programming language are compiled . | |
Re: Hi whenever u r designing u'r website, alway see that in IE , FF ,Op like browser so that later u dont have problem. Solution: ---------- do this 1.put ur table nav_bar inside a div element with id mu123 2. give style to mu123 as: text-align:center 3.see the result in … | |
Re: video files are very heavy i.e. of large size, will them self take time to load, better use gif file, instead. | |
Re: try following: [url]http://en.wikipedia.org/wiki/Hacking[/url] [url]http://en.wikipedia.org/wiki/Hacker[/url] [url]http://en.wikipedia.org/wiki/Hack_%28technology%29[/url] [url]http://en.wikipedia.org/wiki/Password_cracking[/url] | |
Re: It should be noted that no ethically-trained software engineer would ever consent to write a DestroyBaghdad procedure. Basic professional ethics would instead require him to write a DestroyCity procedure, to which Baghdad could be given as a parameter. -------Nathaniel S Borenstein | |
Re: Hi u can do this with following code. put all the text boxes in side a div element. and follow the example below: [CODE]<html> <head> <script language='javascript'> function getValues() { var tc=document.getElementById('allTxt'); var txtBoxes=tc.getElementsByTagName('input');//txtBoxes is array of input elements inside div:allTxt var str=""; var myArray=new Array(); for(var i=0;i<4;i++) { //here … | |
| |
Re: I think its new feature in browser technology developed by "Microsoft". :) try to use Mozilla or Opera. |
The End.