Forum: MS SQL May 9th, 2008 |
| Replies: 1 Views: 1,388 get rid of the square brackets around the varchar(255) and it will work fine.
For that matter, why are you putting them around the datatypes anyway? I've never seen anyone do that. |
Forum: MS SQL May 9th, 2008 |
| Replies: 3 Views: 3,798 select * from persons where (prefix like '%'+@input+'%'
or
firstname like '%'+@input+'%'
or
lastname like '%'+@input+'%')
and address like '%'+@addressinput+'%' |
Forum: ASP.NET May 7th, 2007 |
| Replies: 3 Views: 2,433 can you give us some sample data? |
Forum: ASP Feb 7th, 2007 |
| Replies: 2 Views: 1,394 what's the error? is this from another thread? why didn't you post as followup in that thread instead of starting new thread? |
Forum: C# Feb 7th, 2007 |
| Replies: 8 Views: 13,972 int intTemp = Convert.ToInt32(Console.Readline()) |
Forum: ASP.NET Feb 5th, 2007 |
| Replies: 4 Views: 6,284 |
Forum: ASP Feb 5th, 2007 |
| Replies: 3 Views: 2,496 post your code that is giving this error |
Forum: ASP.NET Feb 5th, 2007 |
| Replies: 4 Views: 6,284 textBoxName.Text = DateTime.Now.Month.ToString()+"/1/"+ DateTime.Now.Year.ToString(); |
Forum: ASP Jan 30th, 2007 |
| Replies: 3 Views: 1,856 problem is not with the date function.
you are comparing the string "h" to the string "12"
"h" < "12" is always going to return false
you need to compare your variable h to the number 12
h... |
Forum: ASP.NET Oct 24th, 2006 |
| Replies: 3 Views: 22,125 it depends on how that column is setup in the database. Is it set up as an identity column? |
Forum: ASP Aug 8th, 2006 |
| Replies: 2 Views: 4,116 i would run some tests on your email server and see. however I would have to guess that one message with lots of recipients would be much better |
Forum: C# Jul 6th, 2006 |
| Replies: 10 Views: 30,522 yeah, sorry you need using System.Text also |
Forum: C# Jul 5th, 2006 |
| Replies: 10 Views: 30,522 actually you don't want to be able to decrypt it.
what you do is encrypt the password and save that in the database
when the user logs in, encrypt the password the input on the login screen... |
Forum: ASP.NET Jun 10th, 2006 |
| Replies: 2 Views: 1,128 I see your problem, it's simply, oh wait I can't see anything because you didn't post any code, didn't say what you were using to send the email, no useful information whatsoever.
Might as well go... |
Forum: ASP.NET May 18th, 2006 |
| Replies: 10 Views: 6,555 i cannot even ping that address. You probably need to talk to your network administrator. This looks like a networking problem, not a ASP.Net problem |
Forum: MySQL May 4th, 2006 |
| Replies: 4 Views: 1,445 now for when you might want to do that.
Lets say you have started weekly and a monthly newsletter for this site, with the members having the option to sign up for either, neither or both.
Now... |
Forum: MySQL May 4th, 2006 |
| Replies: 4 Views: 1,445 left joins will return all rows in the initial table regardless of whether or not they have a corresponding entry in the joined table. for rows that do not have a corresponding entry, null will be... |
Forum: Pascal and Delphi Feb 13th, 2006 |
| Replies: 2 Views: 2,783 call me crazy, but it appears that you are running a loop that only runs one time. Why? |
Forum: C++ Feb 8th, 2006 |
| Replies: 4 Views: 5,765 to find the number of digits in int x
if (x < 0)
x = -x;
int count = 1;
x = x/10;
while( x > 0)
{
count++;
x = x/10; |
Forum: C# Nov 8th, 2005 |
| Replies: 6 Views: 3,002 I'm assuming you meant 22.00 OR Great and 16.50 OR Greater
double valueAfterDeduction(double oldValue){
if(oldValue >= 22.00) oldValue -= 3.3;
else if(oldValue >= 16.5) oldValue = (oldValue *... |
Forum: MS SQL Nov 1st, 2005 |
| Replies: 10 Views: 11,191 or simply "select 50. / 100" |
Forum: C# Aug 12th, 2005 |
| Replies: 10 Views: 2,460 copy and paste the whole error message |
Forum: C# Aug 12th, 2005 |
| Replies: 10 Views: 2,460 Try this (http://www.microsoft.com/downloads/details.aspx?FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en) |
Forum: C# Aug 5th, 2005 |
| Replies: 10 Views: 2,460 You have to have the .net framework installed. You can include that as part of your install progam. |