Forum: Windows Servers and IIS Oct 5th, 2009 |
| Replies: 2 Views: 807 wow, no suggestions? still timing out :( |
Forum: Windows Servers and IIS Sep 21st, 2009 |
| Replies: 2 Views: 807 running IIS6 on server 2003.
wrote a classic asp app for uploading flash videos, I have a couple of videos about 2MB each that upload no problem, but the client now has files that are 25MB and 30MB... |
Forum: Shell Scripting Sep 8th, 2009 |
| Replies: 2 Views: 361 Thanks that did the trick!
Considered resolved!!!! |
Forum: Shell Scripting Sep 8th, 2009 |
| Replies: 2 Views: 361 I have a helper script that will grab weblogs for a particular domain, if called by itself from the MS-DOS command line it works as intended, but I'd like to call another script to call this script... |
Forum: Site Layout and Usability Jul 3rd, 2009 |
| Replies: 3 Views: 670 ok simplest way is via css
td.blbg
{
background-image: url("yourImage.jpg");
background-repeat: no-repeat;
background-position: bottom right
} |
Forum: Shell Scripting Jul 3rd, 2009 |
| Replies: 2 Views: 541 need more info.... is this a windows system, unix, web app? |
Forum: Shell Scripting Jul 3rd, 2009 |
| Replies: 4 Views: 740 well here is a sample of a loop in bash shell:
#!/bin/bash
COUNT=6
# bash while loop
while [ $COUNT -gt 0 ]; do
echo Value of count is: $COUNT
let COUNT=COUNT-1
done |
Forum: Graphics and Multimedia Jun 22nd, 2009 |
| Replies: 4 Views: 654 Okay here's my attempt to answer your question, I to am a server-side web developer that has dabbled with flash.
1. Well the best thing to do would be get the trial version of Flash CS4 to start,... |
Forum: Community Introductions Jun 19th, 2009 |
| Replies: 0 Views: 221 Yep that's right!
You guys got a new member to deal with, jk.
But yeah nice fourm boards you guys got, hopefully it will prove useful in the near future.
I deal with all types of IT solution,... |
Forum: ColdFusion Jun 19th, 2009 |
| Replies: 1 Views: 843 Ah nevermind I found the Application.cfm file and placing the function in this file made it accessible. Marking as sovled! |
Forum: ColdFusion Jun 19th, 2009 |
| Replies: 1 Views: 843 Hi again,
Okay now I have a Coldfusion question, I have written a user defined function in coldfusion:
<cfscript>
function isSqlInjection(str) {
....
}
</cfscript> |
Forum: MS SQL Jun 18th, 2009 |
| Replies: 2 Views: 940 Thanks this helps a lot! Like you said I just need to set it to loop the set of records for each table type that will be mapped it it's own folder, so loop within a loop. Marking as solved! |
Forum: MS SQL Jun 16th, 2009 |
| Replies: 2 Views: 940 hey,
first off I'd like to state that I am pretty new to ms sql and stored procedures tho I have worked with sql for quite some time.
My employer would like me to write a script which takes html... |