8,966 Posted Topics
Re: They mean nothing, it's an ASP feature to write code in a HTML page. | |
Re: Am sure the next thing is "I need the images and downloads in all links too". Why not use a tool like `wget`, you can call it if you have execute rights on your system, and it will download anything it can find, you specify how deep it should go. ![]() | |
Re: http://www.hbo.com/boxing I hope Mayweather gets a decent beating ;) ![]() | |
| |
Re: Hmz, looks okay as far as I can tell. Unfortunately I cannot test your code right now. A workaround can be to use `ModelState.AddModelError()` | |
Re: <%@ page language="C#" autoeventwireup="true" inherits="welcome, App_Web_tuwlsmxq" %> Do you have the `welcome, App_Web_tuwlsmxq` in your own code? `Inherits` should contain the class name of your page. | |
Re: You can only move a file to an absolute or relative path. So you'll have to replace `SITE_ROOT` with an actual path to your folder. | |
Re: The fetch functions return one row of the result set, which is returned by a query you execute against that big table. Make the right query so the database server does all the hard work. | |
Re: > i want all letters to be visible You can set a `min-width` for your button. | |
Re: > dont know whyy its not working What is not working? What did you expect to happen, and what didn't? If it's the query, I suggest you add error checking. | |
Re: > Assuming this is the type being passed to the stored procedure? Correct. | |
![]() | Re: As usual.... I don't like it. I thought I had accidentally actived the browser's zoom. I have a high resolution so I can see more on a screen, not less. |
Re: > help me What do you have so far, and what do you need help with. We do not provide solutions, please read [our rules](https://www.daniweb.com/community/rules). | |
Re: Can you show a screenshot of what exactly you need? If it is just a checkboxlist, it might be easy enough to build yourself. Or are you perhaps using more features of the Editor plugin? | |
Re: Can you show the code that builds your query? ![]() | |
Did you change the frequency of notification e-mails? Yesterday cereal voted on a post, and I got an email today. I've noticed this last week too, yet remember getting them almost instantly before that. | |
Re: What part of utrivedi's query does not work, or haven't you tried? | |
Re: @hericles is right, that is what happens. The variable `$paper` never gets a value. Your `if` on line 3 is probably not what you want. My guess is you want this: if ( preg_match("/^[ a-zA-Z0-9]+/", $_POST['brand']) && preg_match("/^[ a-zA-Z0-9]+/", $_POST['model']) && preg_match("/^[ a-zA-Z0-9]+/", $_POST['new']) ) Meaning all three search terms … | |
Re: > textArtist does not exist in current context If you want to use `textArtist` the input has to have `runat="server"` > I have also created a namespace using Mygenerations with the artist and song table What did you do exactly? | |
Re: > functions are not working It would be more helpful if you stated what is supposed to happen, and what doesn't happen. "It's not working" is too vague for any question. | |
Re: `CONCAT` is a string function, am surprised you even get that one row. The query you get is: select c_id,c_name from category where c_id in ('870,854'); My guess is that the string is being casted to an int again, resulting in 870. | |
Re: command.CommandText = @"select * from log where [User Name]='" + textBox1.Text + "' and Password='" + textBox2.Text + "'"; User name contains a space, so it needs to be in brackets. Otherwise the query parser treats it as two seperate words. | |
Re: > How may we delete or update a question? Delete: you cannot. You may request it from a moderator, but it is unlikely your request will be honoured. Update: You have 30 minutes to edit your question, after that it is locked. Additions after that time will have to be … | |
Re: Does this help? http://stackoverflow.com/questions/2109366/changing-the-mysql-query-delimiter-through-the-c-api | |
Re: What's on those tab pages? Am sure it's possible to write a generic routine that can reset your components. | |
Re: You can with a htaccess redirect, but from what I can tell: wouldn't it be easier to use only one php file and include a different stylesheet? | |
Re: 123 does not match your regular expression. | |
Re: if($msg == "success") That's case sensitive, and should be: if ($msg == "SUCCESS") or: if (strtolower($msg) == "success") | |
Re: What platform are you using, and what are your requirements? Do you need something that runs directly against your database, or are you integrating with an application of your own? | |
https://www.daniweb.com/software-development/python/threads/495488/sieve-of-erastothenes-simply-with-nested-loops This thread is listed in the python forum, but clicking it shows an error. Wanted to remove it because it's a duplicate. | |
Re: Personally, I prefer to use a tool like [datatables.net](http://datatables.net). What exactly are your requirements? | |
Re: From what I've read the default settings for InnoDb are pretty bad. https://www.percona.com/blog/2013/09/20/innodb-performance-optimization-basics-updated/ | |
Re: It's a small piece which looks very reasonable. I do have one question. Why do you use `method_exists`? Wouldn't it be cleaner to require an interface on each controller to force the implementation of `execute`? | |
Re: You can also use cUrl to call your own pages without waiting for it to finish. The only problem is that you have to implement something to detect that a file is being handled. My choice would be to implement a cron job that processes files at regular intervals. ![]() | |
This post is in the unresolved post section: https://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/19022/browser-redirectaboutblankother-problems- But I cannot edit it. It just disappears when clicked. | |
Re: I can only imagine it's about our recent troll Woz. | |
Re: What is `Image` supposed to be? Did you forget an include? | |
Re: Sort your list by start date, then the end date of row N should be one less then the start date of row N+1. | |
Re: Like this? foreach ($images as $image) { echo '<div class="small-box">' . image_html($image) . '</div>'; } | |
For one of our projects we are looking for a Word editor that can be used in ASP.NET without the need of Office/Word being installed on the server. The requirement is that we need to be able to edit Word mail merge templates online. Any advice or pointers welcomed. | |
Re: > Does it mean that in the real world application developers need to add an awful lot of code to make sure that the app works across the globe Usually, yes. Although the tools we use are providing more and more support. I've worked on a hotel booking system years … | |
Re: > wouldn't we do You can do that if you provide a constructor that accepts those two parameters: public class CompanyInfo { public string Name { get; set; } public string Description { get; set; } public CompanyInfo(string name, string description) { Name = name; Description = description; } } … | |
Re: A base path is usually the absolute path to your script, something like `/me/public_html/folder` | |
The End.