5,682 Topics
![]() | |
hi. i am trying to create an aspx page where i can directly upload a file from the client to the server without user intervention. I would like to do something like when the user specifies the file path in the url, that particular file must be uploaded to the … | |
My antivirus scanner found a few viruses with on our exchange server. The files had a .eml extension and they were located in the " \Progam Files\Exchsrvr\Mailroot\vsi2\UceArchive" folder. I assume they are emails, but what is this folder for and why are there 2GB of .eml files in it? | |
Hi, I'm working with Visual Studio 2008 Team System and SQL Server 2008. I have some RDLC files used to generate reports and the reports render correctly. Currently though only Excel and PDF export formats are available. Can anyone tell me what I need to do to enable CSV exports … | |
I have this code : for downloading image from the web [CODE]PictureBox1.ImageLocation =""[/CODE] and i want to add Progress Bar if start download the image start the Progress Bar and when finished the download Progress Bar =100 | |
Hi All, I am writing a client server program that has quite a few GUI's in it. Basically, everything is working except for the problem I'm encountering. Well, obviously :P I am not currently running my server program in order to simulate what would happen to the client if the … | |
Hello all, I have successfully deploy my jsp project into webserver.It is running fine. But my problem is , my project contains some .java/.class files where i have written classes and methods. If i want to change this .java file and re-upload it to web server, it is not get … | |
Hi All. Currently i am working in a project which is based upon IIS Log file. My Client has one Intranet Application and is usefull for many users in thir organisation. This intranet application is running on IIS web server. The requirement is that we need to generate a reports … | |
Hello: I am trying to validate an ASP.NET radiobuttonlist using client-side javascript in a "Custom Validator" control. Here is my javascript validator: [CODE] function ValidatePrem(source, args) { var Array1 = document.getElementsByName('<%= rblPremModes.ClientID %>') var i; for (i = 0; i < 4; i++) { if (Array1[i].checked) { if (Array1[i].value == … | |
Hi, I made a basic PHP upload system in order to allow file uploads to my server. The only problem I run into is that I want to be able to upload .php files (and other possible files that are executed by the webserver before being sent to the client), … | |
When I run the program I get an exception on line 54: Cross-thread operation not valid: Control 'listBoxResult' accessed from a thread other than the thread it was created on. Form: ------------------------------------ [CODE] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using … | |
file transfer can be easily done with python xmlrpc. it is very simple and spans a very few lines of code.. :) pls [URL="http://1024bitez.blogspot.com/2011/02/simple-ftp-program-with-python-xmlrpc.html"]check this link to see how i done it...[/URL] | |
does it's possible to retrieve data from a javascript ?? coz js is a client side script and php is a server side how can i get value of my js??[CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <script type="text/javascript"> … | |
Hey all! I'm the owner of an upcoming gaming network and we have a private server in development. However the games client files are encrypted into dpk files. the dpk files are somesort of archive files. I'm looking for a coder whos willing to code a dpk tool for decrypting … | |
hi.. i'm using ssrs 2008 enterprice edition.. i want to send a report as email.. to my gmail address.. i want to schedule a report so that it can deliver daily to my gmail address.. how to send the report to my gmail address.. i dont know anything about smtp … | |
Hi I've writen a server is PHP that i want to run every min. so i can do something like in cron [CODE]*/1 * * * * lynx -dump http://www.somedomain.com/myserver.php[/CODE] But i want to make sure there only 1 running. The web tells met to check for an prosesid but … | |
[CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <script type="text/javascript"> function buttonPress(str) { alert(str); } </script> </head> <?php session_start(); error_reporting(E_ALL ^ E_NOTICE); include "dbconfig.php"; $id=$_SESSION["valid_user"]; ?> <body> <form name="Item Search" method="post" action="search.php"> Item Search:<br> <label> <input name="swords" type="text" size="30" maxlength="30"> … | |
Hello gurus I am making a website for my friend. In the website i have included a contact us page in which a potential client would send an email. heres the address of the page if it helps, SNIP, it is constantly changing cause i am trying new techniques but … | |
New to javascript but I have a good analytical mind....that being said, I have the following code in onSubmit() validation: [code] else if (cofaCOURRIEL == null || cofaCOURRIEL == "") { alert('Le champ COURRIEL doit être rempli.'); document.forms["COFA_AIG"] ["COURRIEL"].focus(); return false; } else if (cofaCOURRIEL) { if ( (atPOS < … | |
hi I'm having trouble with php and mysql I'm getting this error [CODE] [Sun Jan 30 17:43:40 2011] [error] [client 127.0.0.1] PHP Warning: mysql_query(): Access denied for user 'root'@'localhost' (using password: NO) in /var/www/t/view_tg.php on line 29, referer: http://localhost/t/ [Sun Jan 30 17:43:40 2011] [error] [client 127.0.0.1] PHP Warning: mysql_query(): … | |
Hello, I am trying to create a "stock Price Program" for an assignment that will allow you to type in a stock symbol such as "goog" in the client side and the server side will respond with a price for that stock symbol, this price can either be hard coded … | |
Hi Laptop caught a virus the other day so I have spent all day running virus scans but am now at a complete loss to why I still can't connect to the internet. I have tried pinging yahoo.com to test with no packets lost etc so there is an internet … | |
I made a lot of client server programs using tcp/ip but how do i know what version of socks protocol i used ? I just heard about socks5 and i was confused what kind of version i was using until now . Thanks | |
i am building a chat and i have this code: [CODE] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Net.Sockets; using System.IO; using System.Threading; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters.Binary; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { TcpListener server = new TcpListener(IPAddress.Any, 5000); server.Start(); Console.WriteLine("Server … | |
Hello Guys! I just created my first VB.net project using Microsoft Visual Studio 2010 that has database(.mdf) and some forms, here is the video link of my project: [URL="http://www.youtube.com/watch?v=4YBt3vP85kY"]http://www.youtube.com/watch?v=4YBt3vP85kY[/URL] I want my project to be remote/network using lan environment, in what way i can do this? can you please help … | |
I'm using a silverlight client to consume a custom web service in ASP.NET (.asmx). When running in IIS on my Local Machine (IIS 7.5, Win 7 Enterprise x64), the web service works fine. Trying to connect to my machine from another, I get a cross domain exception. The web service … | |
Hi Can some one give me some idea about code for icp protocol for client server Architecture in java. Thanks | |
Hello! I'm new here... and I'm having trouble trying to download and upload files from an ftp server.... Btw this is not for homework! I'm trying to help a professor with this but I'm stuck!... Help?? :/ | |
Hi all!! i have PHP script (3 files) for upload images on my hosting server.This script changes the name of images in a unique format before uploading onto the server.I just need to print the name of image file and its path where the image is getting uploaded (like [url]http://www.johnsgallary.net/imageuploader/uploaded_files/124abc.jpg).Please[/url] … | |
![]() | Hi all, I've just started learning server and client communication using socket. What I'm doing here is like a Search Engine. Server stores data (from a textfile) , then client search and check it exists or not. Everything works fine, but I can't seem to loop for multiple search. (Meaning … |
Can we control client web cams by main server.At the same time can we monitor the discussions those are done by client systems? | |
hi, im about to finish a winform app for a client and I was wondering about the most common ways to handle connection strings. I know you can change the path from within appConfig to whatever the path may be on the destination server but are there any established approaches … | |
Can anyone please help me out in creating an .exe file. I have a database included in my project as a backend. When i publish my application n run tat in my sys it works fine. When the same application is installed on other machine which doesnt contain sql server … | |
Hello all , i have a server with a "dynamic IP" that comes from the ISP and many agents/clients on the field connected to that server with static IP's . The problem is with that server's IP -since its dynamic- the field agents cant connect to It anymore when it … | |
Date: January 22, 2011 Hi, Need some help to solve this error. Nothing similar in the forum, IMHO. [B]Environment:[/B] [QUOTE]phpMyAdmin – 3.3.9 with this info: # Version MySQL client: 5.0.51a # Version MySQL: 5.0.45 # Server: Localhost via WAMPSERVER 2.1 # PHP 5.2.6 # Apache 2.050 [/QUOTE] [B]TABLE [/B] DROP … | |
So, I'm making a new game in Java. I am trying to add networking code. I'm using the code at [url]http://download.oracle.com/javase/tutorial/networking/sockets/clientServer.html[/url] but I want it so that when the player moves in my game, it updates their location in the server and then updates it to everyone on the server … | |
Hi to all experts in the forum. I know scripts can be executed through the command prompt,but what are other ways to execute it, if the file is on remote server. Please specify if any clarification is needed. | |
this is the data i got from the ipconfig /all Windows IP Configuration Host Name . . . . . . . . . . . . : Darkrai Primary Dns Suffix . . . . . . . : Node Type . . . . . . . . … | |
Hi I want to generate sequence number in C# window application I have got one link on Google, but I it is not helpful. I want that on click to add button an order sequence number should generate and stored in SQL Database i have written this code but it … | |
Hello Guys, Im having a bit of a problem here. Im trying to deploy an EJB project that i developed using Eclipse Galileo Version 3.5.2 using JBOSS 6.0.0.Final as server. When I try to deploy my test EJB its giving me an error that it cannot instantiate class [org.jboss.logging.util.OnlyOnceErrorHandler] ClassNotFoundException. … | |
hello i want to copy my home directory to sync with another server's home directory.is there any way in which we have not to store key file or use password.I know rsync is an option but i want to know if there is any better option. | |
Hi I need to migrate an application from MS Access to SQL Server (2005), and i'm using the code bellow, but i'm getting an error when the compiler reaches the AddNew instruction. It gives me "Run-time error '3027': Can't update. Database or object is read-only". [code] Dim DBTesteSQL As Database … | |
well I followed the steps before posting and it seemed to solve the problem but here is the logs anyway: GMER 1.0.15.15530 - [url]http://www.gmer.net[/url] Rootkit quick scan 2011-01-15 13:46:00 Windows 6.0.6002 Service Pack 2 Harddisk0\DR0 -> \Device\Ide\IdeDeviceP2T0L0-4 TOSHIBA_MK1637GSX rev.DL032C Running: xrsodq7v.exe; Driver: C:\Users\Owner\AppData\Local\Temp\uwldrpob.sys ---- Devices - GMER 1.0.15 ---- AttachedDevice … | |
I recently find another big player providing data recovery hardware solutions and systems in USA, this is actually the first manufacturer in USA according to my research. Their company name is called American SecuData and I learnt they provide data recovery systems for servers, SAS/SCSI/IDE/SATA/Flash USB Drives, as one data … | |
Hi, Hope you can help, a client of mine has a site with dynamically generated URL's, I want to make the URL's SEO friendly, clean them and rewrite them as new keyword rich URL's and then redirect the old URL to the new. I am trying to carry out some … | |
Hi, I have noticed that since applying KB2419632 on patch Tuesday (only this and MRT were applied) that I have recurring identical event id 577 security audit failures which seem to occur just prior to hibernating. Looking at the Microsoft knowledge base here ([url]http://support.microsoft.com/kb/831905[/url]) I see reference to a pre-XP … | |
I'm having this problem I'm sure many people have had before me, but i haven't been able to get rid of it. Not sure if this is the same thing, but my computer also gets the error "the service cannot accept control messages at this time." here's my hijackthis log: … | |
I have written a client server program in which the server sends a program to the client, and the client executes the received program. In this case it is a line drawing program in OpenGL. The problem is that on running the server and client the whole program i.e. sending … | |
Well I'm learning the irc protocol by coding a Console client. The client appears to connect to server, set name and nick, But won't join the channel it just says "451 you have not registered". Here's the code Sorry for any lame formatting ect. I'm kinda new to cpp: [CODE] … | |
I am working on a project that stores it's data in serialized files on the hard drive in a custom file format. The server end of the application accepts TCP connections from clients and returns data to the clients based on the query, it's kinda like a light weight, custom … | |
Hello - I have a client that is using a VPS from Host Gator. He he also running an application I created on his VPS. The other day he complained his server was very slow when using my software. I checked it myself and it took approximately 5 seconds to … |
The End.