Want To Use ActiveXControl To Scan Particular Folder On Client Machine?
Feb 22, 2011
I want to use ActiveXControl to scan particular folder on client machine say C:HJReports
I have write simple activeXcontrol using user control in winform but I am not able to use this in aspx page using object tag possibly due to problem in classId property of object tag Here I want help on following aspects
1. How to use already made .net activeXcontrol in asp.net
2. How to make .net activexcontrol
View 1 Replies
Similar Messages:
Apr 13, 2010
i have to copy AI file from client machne toserver without use the file upload control.
Can i use Scripting.FileSystemObject ?
View 1 Replies
Feb 21, 2013
I have one webpage. And I saved that webpage as a pdf file.
The file saved in the "C:Downloads" automatically.
How can i change the path of downloading file. I want some codings. How to do this task.
View 1 Replies
Jul 16, 2013
Download multiple file from server and stored in client browse directory.
View 1 Replies
Feb 19, 2011
write a script in Visual Basic.
i want to be able to scan a folder and its sub directories for all the files that exist in it. the results are then feed into a list box or any similar control
additional it would be great if the results are entered and also its path
eg:
File1 C:folder1folder2file1.exe
File2 C:folder1folder2dd.dll
File3 C:folder1explorer.exe
File4 C:folder1folder2folder3document.docx
File5 C:folder1
eadme.txt
View 2 Replies
Mar 25, 2010
I have to copy a file from client machine to server folder without use file upload control.
i tried with WebClient().Like this
Dim onbjweb As New WebClient()
onbjweb.UploadFile(Server.MapPath(serverpath), "POST", LocalFilePath).
Its working fine in localhost.When its deployed in server its not working.
View 2 Replies
Jan 25, 2010
I am working on asp.net 3.5 in C#. In my application I have to Create folder and upload file in that folder, which works fine on my machine. I want help for create folder and upload file in that folder on other machine which is connected in LAN. code for create folder and Upload file on my machine
string FileName = FileUpload1.FileName;
View 4 Replies
Mar 7, 2011
When calling Response.Cookie.Add(new HttpCookie("MyCookie", "objValue")); where does the cookie saved? on Client Machine or Server Machine?
EDIT:if saved in Client Machine, how can I read it from javascript then? I tried this kind of script.
function getCookie(c_name) {
var i, x, y, ARRcookies = document.cookie.split(";");
for (i = 0; i < ARRcookies.length; i++) {
[code].....
I cannot get the cookie that I saved from code behind. When I look into the document.cookie object, it is just an empty string.
Scenario:On Page_Init() on code behind. I create a cookie using Response.Cookie.Add(new HttpCookie("MyCookie", "cookieValue"));.
On Client side, I'm trying to read the cookie saved from code behind on page load using the snippet above, but it returns undefined
View 3 Replies
Mar 26, 2010
I have an asp.net app that uses System.IO.Path.GetTempFileName() for temporary files. In the production IIS environment (W2K3), the temp folder (System.IO.Path.GetTempPath()) points to C:WindowsTemp. But on my XP dev machine it's C:documents and settingsmachinenameASPNET emp.
Is it possible to change this folder without affecting other accounts on machine?
View 1 Replies
Jan 21, 2010
I am working on VS 2008 on asp.net 3.5.
I have 1 problem regarding file upload.
How to upload file on other Machine folder if it is in LAN .
How to upload file on other Machine folder if it is not in N/W .
View 3 Replies
Mar 26, 2010
I am creating a folder on remote machine,for that folder i gave acces permissions. even though when i submit my form it is giving below error.
No accessible overloaded 'SqlCommand.Transaction' is most specific for these arguments: Public Sub set_Transaction(value As System.Data.SqlClient.SqlTransaction) Public Sub set_Transaction(value As System.Data.Common.DbTransaction)
View 2 Replies
Jun 30, 2010
I'm looking into a ASP.Net project for a friend who has a client at the moment. I just want to make sure that I can log onto her client's machine where they host their site, I'm working from home and not on their domain.
If I can't log in using the account info they gave me, is it possible that they can limit FTP access from outside IPs? Just a question in case I have a problem then I can suggest a solution. "Hey friend, I tried to log in, but the service denied me probably because your client has to include from my outside IP. My IP address is ....." or something like that.
View 3 Replies
Mar 4, 2011
I want to run .exe files on client machine.
System.Diagnostics.Process.Start("C:Windowssystem32otepad.exe") i Use this codeing it work on my system but not work on server. and with the javascript it also give the error
[code]....
View 5 Replies
Jan 7, 2010
How to get MAC address of client machine in c# and vb.net
View 3 Replies
Apr 2, 2011
e are developing an ASP.Net application. The requirement is to install and run an app (say console app developed using .Net) on the client machine through out ASP.Net application. How can we install this app (and .Net Framework required to run the app) when the user access our web app
View 2 Replies
Jul 23, 2010
I have written a console application which will map a volume as disk to a client machine and then Initializes, formats and assigns a drive letter.
Now i want to achieve the same through a web site. This is going to be a Internal site.Right now i can do this by executing the exe with a pop up from the website to run.
But i want to do the same operation as if it is a simple button click on the website after the user fills in the requirements like size,drive letter. I dont want to have any security pop ups.
Is there a way that i can do disk operations with out having security pop ups on end user machines?
View 5 Replies
Nov 23, 2010
I am building an ASP.NET intranet application. I am trying to get the host name of the client machine. I have started off by using System.Net.Dns.GetHostName(); but this just seems to return the hostname of the server running the website through IIS. Am I using the wrong method or am I using this one incorrectly?
[Code]....
View 4 Replies
Jun 26, 2012
How to save a text into a specific folder of computer(in document) by default, when the user clicks yes(for,Do you want to save the file?) to save a file into his computer? If the folder doesnot exist create and save the textfile?
View 1 Replies
May 27, 2010
I have a Requirement Where I need to Generate the PDf Docuemnts and I need to Send it to the Printer.
All the Pdf Documents are dynamically generated and it will be saved in server Temporary Folder.Then all these PDF Document has to be sent to the Clients Network Printer.
View 11 Replies
Dec 15, 2010
I have a web site where I need to capture the IP address of the logged in user. Earlier my code used to work fine. But all of a sudden it is giving me only one IP address from whichever machine may be the user logging in. I have tried almost all possibilites :
Request.ServerVariables("REMOTE_ADDR")
Request.ServerVariables("HTTP_X_FORWARDED_FOR")
Request.UserHostAddress()
Still it is giving me the same IP address.
View 3 Replies
Dec 16, 2010
We need the a solution for our ASP.NET website. in which a user needs to activate his machine and next time if he visits the site then we need to check the machine is activated or not. if the machine is activated then we want to redirect the user on different page.
Is there any way by which we can get the client machine MAC address and store it our database?
I have found some solution in which this can be done but it works on on IE and some ActiveX setting needs to be done.We want this should work on atleast IE and FireFox.
View 3 Replies
Oct 25, 2010
I want print PDF file from the client machine. The PDF file exists on the server.
View 1 Replies
Dec 7, 2010
I am using c# and ASP.NET 2.0.
How to invoke exe, which is available in the client machine?
View 4 Replies
Feb 7, 2011
I'm working on a project that has a C# app (running 24/7 as a server) on the client's machine). This app needs to send a file as a byte stream via POST to a server I am currently hosting on my home desktop.
Can this file be received by a C# app running on my server, or does it have to be as ASP app/page?
Also, I know how to send a bytestream via POST, but how will I set my server side app to listen for this incoming data? I have never done something like this, so I'm looking for some pointers to get me started.
View 3 Replies
Feb 2, 2011
how can I get the private ip of client system from a website hosted on public ip in ASP.Net C#? while i am checking userhostname, it's showing the global IP of the Internet connectivity which is the same for all the machines in the network.
View 2 Replies