8,966 Posted Topics
Re: An oldie on my bookshelf: Algorithms + Data Structures = Programs (Prentice-Hall Series in Automatic Computation) (1976) by Niklaus Wirth (Author) | |
Re: What code are you using? You might be trying to use something specific that Xamarin can't use cross-platform. | |
Re: Just add a method that takes those parameters. I'll move this to the ASP.NET forum. Is more active. | |
Re: > When I call the nodeValue for the div it works but not for the input. What exactly does not work? The input with ID name does not have a value, is that your issue? ![]() | |
Re: Can't you specify to get another class returned? If you can you could write your own class to handle that logic for you (just wondering). ![]() | |
Re: Can you be more specific? | |
Re: `password` is a reserved word, use backticks. | |
Re: > I don't know what went wrong with the formatting of my reply above It's probably caused by code inside a bulleted list, IIRC a known issue. | |
Re: Also, check this feedback forums, there are a ton of threads about it. | |
Re: > PS: I have no idea how to put this in Tutorials... Use "flag bad post" and request that an admin change the thread. My only addition would be to link to the [source for status codes](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html), not wikipedia. | |
Re: > Regardless, I've removed the tag. You could have too Are you sure? I can't. I can't just remove all tags and hit update, I have to enter at least one. | |
Re: If you are using older code, an ASMX might be more useful. If you are more up-to-date an MVC controller or WebApi is much easier to use IMO. ASMX: [WebMethod] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] public List<YourClass> GetJson() { return your_result_list_here; } MVC: public JsonResult GetJson() { return Json(your_result_list_here, JsonRequestBehavior.AllowGet); } WebApi: … | |
Re: That looks like this: SELECT DISTINCT c.* FROM ab_staff s, ab_appointment a, ab_customer_appointment ca, ab_customer c WHERE s.wp_user_id = $user_id AND a.staff_id = s.id AND ca.appointment_id = a.id AND c.id = ca.customer_id | |
Re: https://www.daniweb.com/web-development/php/code/476623/ajaxed-linked-dropdowns-select-fields-for-volatile-data https://www.daniweb.com/web-development/php/code/475238/linked-dropdowns-select-fields-for-static-ish-data https://www.daniweb.com/web-development/php/code/437655/getting-products-details-from-categories-subcategories-with-ajax-call- | |
Re: 1 Don't know if it exists. 2 Not to me, if you use a decent IDE it has spellchecking already built in. If you don't, most likely you use string resources and templates which would contain all user output. These are more easily checked than code. | |
Re: This happened to my uncle not too long ago. He chose to die. I must say, it was very impressive to hear someone say that. And then, all respect to the nurses who arranged and executed his wish. | |
Re: The alert is triggered before the response is received. The code keeps running while your asynchronous call is waiting for a response. | |
Re: There is no better in general, only different. You need to compare against something specific or it doesn't make sense. | |
Re: You mean like this: http://www.mockett.com/furniture-legs-casters/electric-legs/tlel3.html http://www.eastwood.com/blog/eastwood-chatter/pneumatic_table/ | |
Re: Perhaps something special happening in your RouteConfig? | |
Re: Just dumping code, won't get you an answer. What is supposed to happen, what doesn't, any errors? | |
Re: Line 5 uses `$this` which references the current object instance, which isn't available in your script. | |
Re: Personally I dislike statics. Apart from that I do not see the use of them in PHP. Every script runs, reinitializing everything, therefor a static offers nothing more than a regular property already does. In other languages an object or static class has a much longer lifetime, so there are … | |
Re: I doubt you can use a messagebox in a console application. | |
Re: > Should show an error message if they enter invalid domain name. How far do you want to take this? For example, what jwmollman posted does not allow `.museum`. It does allow `.xx` which is not a valid extension (yet). I advise to fully read the second linke stbuchok provided. … | |
Re: That means it is a nested class. | |
Re: echo A::$foo[0]; The class name is A, not classA. Besides that, I dont see foo getting a value anywhere, it is an empty array. | |
Re: > to check condition either the way ID exist in database > if not exist then way ID can be delete > if exist, message box appear show message this cannot be delete Do you mean if it has foreign keys attached? If so, you can try to delete and … | |
Re: Is this what you mean: http://www.toadworld.com/products/toad-for-oracle/f/10/t/10764.aspx | |
Re: Does [this fix](http://stackoverflow.com/questions/3503155/asp-net-updatepanel-library-reference-errors) help perhaps? | |
Re: http://stackoverflow.com/questions/26315801/how-to-getextract-set-parameters-from-url | |
Re: http://php.net/manual/en/function.json-encode.php | |
Re: Does it really matter? Usually the activation key is used once in conjunction with the email address, a combination which is probably unique already. Apart from, my personal solution would be to make the database column a unique key, insert the activation, and if it fails generate a new key … | |
Re: > but it is not working What exactly is not working? | |
Re: That is obfuscated code, somehow I doubt it's yours. If it is, just start renaming. | |
Re: What is the rendered output? On all browsers, or just some? What doctype are you using? | |
Re: Both retrieve all data from your query. The better optimized your query, the less traffic you have. | |
Just came across this funny description about runaway code: http://www.nczonline.net/blog/2015/05/14/the-bunny-theory-of-code/ I'm guilty in enabling such bad habits at times (copying without questioning), who else? Just be careful it doesn't turn into a killer rabbit... |
The End.