- My new business site to review
- My new business site to review
-
New Website Design for Online Business
Nice and clean, but for some reason to me it looks similar to this one: http://refreshwebsites.co.uk/ Topic link: http://www.webdesignerforum.co.uk/topic/71601-my-new-business-site-to-review/ Too many websites are based on the same Layout / Template ...
-
Search function for a vacancy page
-
Website designed for a friend - your opinion appreciated
Hi, It's a web designed for a friend of mine, but he moved to another country and left me with unfinished project :> Thought, if you find it acceptable I may develop it as a Template and publish it here on the forum. Please let me know what you think about it: http://www.eaglefreelance.co.uk/idea1.jpg Thanks Peter
- Topic Removed ? - question
-
javascript hide / show only works on one instance of a div.
quick solution: http://jsfiddle.net/TSMcz/1/
-
Do you have a business bank account ?
I use saving account for my freelance income ... what are the benefits of having Business Account ?
-
Ms Sql Management - Sql Query - strange issue
Compatibility level, that's what it is Thanks
-
-
-
-
yet another - "how much should I charge"
Thanks for the answer guys, it helped make up my mind. Quote sent and accepted by the client
-
A simple Ad randomizer script or plugin?
If you want to randomize and at the same time give your advertiser equal time at top/bottom rows, you would probably need to record each logo position somewhere, so you know how many times logo X, Y, Z ... appeared in first, second or 3rd row and column. If you store those details in your database, you could easily use sql query to order your logos.
-
Portfolio website
I'm not a big fan of those type of designs (too much in your face). Anyways, few suggestions: 1) I would change the About Me content - 2 years experience, "About one year later I recived my first serious order - a website for a real company" - from a client perspective it doesn't convince me (also a spelling mistake received, not recived ). 2) Technologies panel takes more space than about me or portfolio ... I don't think that a potential client would be interested what technology you use, not to the point that it needs to take so much space (and be above portfolio). 3) Portfolio - I would suggest creating some templates in Photoshop (or whatever software you use) and display them in your portfolio. Not necessary as HTML pages, just simple image. Showing your skills a bit more. Milosz B 2012 in your portfolio doesn't work Other than that ... Powodzonka
-
Ms Sql Management - Sql Query - strange issue
I tried to Google it, but didn't find any answers ... I went through both DB properties to make sure all match, and still not sure what's going on. If I change the query to something even simpler: SELECT 'peter' AS mycontactname FROM leaseagent ORDER BY leaseagent.mycontactname It works on one database, not the other. I also tried to query other tables - same result.
-
Ms Sql Management - Sql Query - strange issue
Sure, that would solve the problem, or just simply drop leaseagent, from the Order By, but I'm trying to find out, why it's throwing an error in one database, not the other
-
Ms Sql Management - Sql Query - strange issue
Hi, I'm having a small problem with one of our databases. Let me try to explain. 2 databases. Both identical, one let's say called "testing", other "live". In both databases there is a table called leaseagents, leaseagents table structure: leaseagentid <int> primarykey forename <varchar(50)> surname <varchar(50)> ... and other fields not relevant. When I query the "testing" database with the following, it works just fine: SELECT leaseagent.leaseagentid, (ISNULL(leaseagent.forename,'') + ' ' + ISNULL(leaseagent.surname,'')) AS contactname FROM leaseagent ORDER BY leaseagent.contactname Important: contactname field does not exist in the leaseagent table, but the query runs and returns values ... on the "testing" database. When I run the same query against "live" database, I'm getting the following error: "Invalid column name 'contactname'." As I mentioned above, both tables are identical, both have same number and type of fields. I even deleted all the data from both tables, and still it returns error msg on the "live" database. Am I missing something here ? (I didn't even know how to Google my problem ) Thanks