Web Forms :: Access Files On Client Machine Using Browser?

Apr 29, 2013

Is there a way we can access image files from client machine in asp.net?

View 1 Replies


Similar Messages:

Web Forms :: Upload Excel Files From Client Machine?

Mar 3, 2011

I want to upload excel files from client machine to sql server database at server machine.

When I am using a fileupload control, it is not giving me full path.

Even if I get full path, how can i connect to an excel file which is at client computer, using oledb.

View 1 Replies

Web Forms :: How To Get The Names Of Excel Files Opened On The Client Machine

May 25, 2010

how to get the names of excel files opened on the Client machine and populate it in a ListBox? If somebody did it please reply to this or give some pointers / web site links to me, so that i will read and try to use for building my code.

View 1 Replies

How To Get Local / Client Machine IP Address From Web Browser

Sep 22, 2011

I want local/Client machine ip address, for that i have written below code. but this code gives me Application server address where my web site is hosted. where as i wanted client machine IP from where my web site is getting accessed. so if my website accessed from 10 different machine in that case i want 10 different IP address of those machines.

Code:
using System.Net;
private string GetIP()
{
string strHostName = "";
strHostName = System.Net.Dns.GetHostName();
IPHostEntry ipEntry = System.Net.Dns.GetHostEntry(strHostName);
IPAddress[] addr = ipEntry.AddressList;
return addr[addr.Length - 1].ToString();
}

Also the below server variable return global ip address.

Code:
HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];

What is the correct code.

View 6 Replies

Web Forms :: How To Get Client Machine Access From Server

Mar 5, 2011

how can i access client machine's specific file contained in a drive or folder.Suppose in Server side i have knowledge of full path of a file that is present in client side, like "D:ABCFolderxyzFile.doc", this is a file that i want to retrieve and store in server side .

View 8 Replies

Web Forms :: Download Multiple Files And Store Them In Client Machine Folder Or Directory

Jul 16, 2013

Download multiple file from server and stored in client browse directory.

View 1 Replies

Print PDF Files At Client Machine?

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

How To Download Files From Server On Client Machine

Jan 20, 2010

how to download files from server on client machine

View 8 Replies

Client Machine's Drivers And Directory Files List TreeView?

Jan 8, 2010

i need to list client machine Drivers

-> Directories

> Files

using Treeview Control is it possible how to done this

View 1 Replies

Reading XML File From Client Machine - Getting - Access To The Path Is Denied

Jul 13, 2010

I'm currently trying to READ XML file from the client machine where the user can open from any location (there is no specific location). However, i browse to the folder and select the xml file and when it execute this line (below) it throw an error complaining about access to the path is denied any idea how should i approach?

error: System.UnauthorizedAccessException: Access to the path is Denied
Dim reader As New XmlTextReader(System.IO.Path.GetFullPath(File1.PostedFile.FileName))
Dim m_xmlr As XmlTextReader
'Create the XML Reader
m_xmlr = New XmlTextReader(System.IO.Path.GetFullPath(File1.PostedFile.FileName.ToString()))
'Disable whitespace so that you don't have to read over whitespaces
m_xmlr.WhitespaceHandling = WhitespaceHandling.None
'read the xml declaration and advance to family tag
m_xmlr.Read() **<<<<<ERROR**
'read the family tag
m_xmlr.Read()
'Load the Loop
While Not m_xmlr.EOF
...........................

View 1 Replies

Web Forms :: Access Files On Client Side?

May 27, 2010

I want to be able to provide a list of files on an ASP.Net page which link to files on the users shared drives.

When the user clicks the link they can modify the file and then save it back to the shared drive.

An example would be:

<a href="file://M: estBook1.xls">M: estBook1.xls</a>

However this does not work, even from a trusted site.

I can understand the security implications but these can be managed.

View 6 Replies

Javascript - Want To Send Files From Client's Browser To Server?

Dec 24, 2010

I'm looking for possible ways for sending files from browser to server.
One obvious way is using form with enctype='multipart/form-data'.
I wonder if there are other ways than this.

The reason I ask you this question is this file uploader: http://aspnetajax.componentart.com/control-specific/upload/features/core_features/WebForm1.aspx

It's not flash based, but it sends the file in a way that it gives you a progress bar, but when you send a file with form with enctype='multipart/form-data' the whole file will be send to the server so you can't actually show a progress bar of uploading process.

View 2 Replies

Configuration :: Client Browser Using Cached Files Instead Of Updated Version After Deployment

Oct 6, 2010

We have an ASP.NET web application and it's hosted using IIS 6.0, in the app we have these several javascript and css files located in a folder, and for performance sake (according to YSlow) we set the folder content expiration header to 1 year. Everything worked just fine until recently when we deployed the latest build to the server, in which we had made some changes to those javascript and css files. For some reason after the deployment some of our end users don't see the latest changes when they connected to the app, even after they cleared the cache in IE. We have also restarted the IIS on the server and the problem still remained. When I went into the IE Temporary Internet Files folder on one of these machines I saw the files were still the older version and not the latest one, I had to manually delete the files from the Temporary Internet Files folder then they were able to see the latest changes. I'm baffled by this, how come only some users who couldn't see the changes but some others do (without having to do anything by the way), and how do I make sure that for future releases we won't have to do anything like what did (manually deleting the cached files)? For now I disabled the Content Expiration option in IIS for these files but I would like to know if there is a way that I can enable the content expiration (to help performance) but at the same time making sure when the files are updated, the latest version will be used for the end user (instead of the cached version)?

View 3 Replies

JQuery :: How To Upload Files In Browser Cache To Get File Size On Client Side

Apr 1, 2011

My requirement is to get the file size in client side. there is no problem in FF but in IE you can't do that unless u r using an activeX object. So we thought of putting it in browser cache and reading the file size from there and when we post it to the server we will be taking it from the cache and send it to the server.

View 4 Replies

How To Access Client's Local Files

Jun 24, 2010

it should be in asp.net. but, it is urgent and important, wish someone here know the answer.

what I need do for an asp.net page is:

1) client select a file, or;
2) client select a folder;

Get file (or files in the folder)'s properties, something like name, ext, etc. and save to db.

it will be easy if it is a desktop app. however, in asp.net, how can I do that? do I have to upload all files to server first? is there a way to do this for all files in a folder? any third party control?

View 7 Replies

Access Client's Local Files?

Jun 24, 2010

what I need do for an asp.net page is:

1) client select a file, or;

2) client select a folder; Get file (or files in the folder)'s properties, something like name, ext, etc. and save to db.

it will be easy if it is a desktop app. however, in asp.net, how can I do that? do I have to upload all files to server first? is there a way to do this for all files in a folder? any third party control?

View 3 Replies

Does Access To Server Resources Require Client Process To Login To Server Machine

Sep 22, 2010

Reposting my unanswered in technet.microsoft question?

MSDN "ASP.NET Delegation" article tells:

1) "When you configure to use a particular account as the process identity, ASP.NET attempts to delegate that account. If it is a local account that is identical (including password) to a local account on a remote machine, delegation is possible. If such an account does not exist on the remote machine, to the network it appears as the Windows anonymous account (NT AUTHORITYANONYMOUS LOGON). In addition, delegation is also possible if the account is a domain account that has access to the remote machine, in which case it uses the domain network identity of that account."

The same frequently repeated story as in case of manually/interactively accessing remote computer (server resource) in workgroup - it is necessary to create local account with the same username, the same password. But why?

If a workgroup Windows client process cannot access resources on server machine without having duplicate of such (local) account on target machine already pre-created,does it mean that client (process, machine, or user) can access server resources only by/after having logged (opening logon session) into server machine? Or, how to understand that such access is impossible without having corresponding duplicate local account on server machine?

The same MSDN "ASP.NET Delegation" article tells:

"NetworkService account. It behaves the same as the System account. This account possesses the network credentials associated with the machine account (domainnamemachinename) in the domain of which it is a member"

Does not any Windows have accounts ((NT AUTHORITYNETWORK SERVICE)? as well as many other common pre-built accounts? Why are they installed (before any joining to domain) but cannot be used for remote network access and client identification ? And what is identity used when the process from workgroup Windows under identity ((NT AUTHORITYNETWORK SERVICE) accesses a remote server?

My related questions:

domained LocalSystem vs. non-domained LocalSystem account in Windows-es ? how to check group membership of an "NT AUTHORITY" account ? Is client LocalSystem (SYSTEM) identified by target/server machine? and in which context? Window workgroup LocalSystem vs. domain (AD) LocalSystem [closed]how to better set up machine for development both in workgroup and Windows domain? [closed] interoperating with Windows domain computer from workrgroup Windows [closed] the context of local user of AD-joined machine? Is it of domain machine account or of local machine account? RunAs under domain account from non-AD Windows [closed] how to better set up machine for development both in workgroup and Windows domain? [closed] how to share the same domain machine account with multi-boot workgroup Windows setup?

View 1 Replies

Response.Cookie Client Or Server/where Does The Cookie Saved? On Client Machine Or Server Machine?

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

Web Forms :: Detect If Browser Is Closed Or Machine Is Switched Off

May 30, 2013

My program need to detect the user visibility, if the user is login or not. I Put the information on the database 

here the pseudocode:

if the user click "LOGIN" I Update the user information to ONLINE = TRUE;

else if the user click "LOGOUT"  I Update the user information to ONLINE = FALSE;

My Question is: How can I detect if the user leave the website or turn off the computer without clicking "logout"

View 1 Replies

Web Forms :: File Upload From Client Machine

Feb 21, 2011

We have a requirement to allow the cient to upload multiple files which resides in a single folder, within the client computer. To do this can we allow the client to browse for the file location and select a single file (via a normal asp file uploader), and then recursively read the necessary files from the relevant directory? Is this possible or is there any other way to do this?

View 6 Replies

Web Forms :: Read An Excel File From Client Machine In C#.net

Jan 15, 2010

I have developed an application where I need to create a page to read data from Excel File and then update it to the database. The code that I wrote works only when the application runs from my machine. When I deployed the application to the server it gave an error- 'C:PRFileIimport_File.xls' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides. here is mu code -

protected void InsertData(object sender, EventArgs e)
{
OleDbConnection oConn = new OleDbConnection
(@"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\PuertoRicoFile\Puertorico_Iimport_File.xls ; Extended Properties=Excel 8.0 ");
OleDbCommand oCmd = new OleDbCommand("select * from [Puertorico_Data$]", oConn);
oConn.Open(); //Here [Puertorico_Data$] is the name of the sheet in the Excel file where the data is present
OleDbDataReader oleDbReader = oCmd.ExecuteReader();
string AgentIP = "";
string TagName = "";
string Status = "";
string Severity = "";
int EventCount = 0;
string EarliestEvent = "";
string LatestEvent = "";
while (oleDbReader.Read())
{
AgentIP = (string)oleDbReader[0]; // valid(oleDbReader, 0);//Here we are calling the valid method
TagName = (string)oleDbReader[1]; //valid(oleDbReader, 1);
Status = (string)oleDbReader[2]; //valid(oleDbReader, 2);
Severity = (string)oleDbReader[3]; //valid(oleDbReader, 3);
EventCount = Convert.ToInt32(oleDbReader[4]); //oleDbReader[0]; //valid(oleDbReader, 4);
EarliestEvent = (string)oleDbReader[8]; //validate(oleDbReader, 8);
EarliestEvent = EarliestEvent.Substring(0, 19);
LatestEvent = (string)oleDbReader[9]; //validate(oleDbReader, 9);
LatestEvent = EarliestEvent.Substring(0, 19);
InsertDataIntoSql(AgentIP, TagName, Status, Severity, EventCount, EarliestEvent, LatestEvent);
}
SqlConnection mySQLconnection = new SqlConnection(ConfigurationManager.ConnectionStrings["IssNetworkReportingSystemConnString"].ConnectionString);
mySQLconnection.Open();
SqlCommand cmdSql = new SqlCommand("AddMonth_Event_TotalInfo_for_Puertorico", mySQLconnection);
cmdSql.CommandType = CommandType.StoredProcedure;
dbReader = cmdSql.ExecuteReader();
dbReader.Close();
cmdSql = new SqlCommand("AddQtr_Event_TotalInfo_for_Puertorico", mySQLconnection);
cmdSql.CommandType = CommandType.StoredProcedure;
dbReader = cmdSql.ExecuteReader();
dbReader.Close();
oConn.Close();
lblMsg.Text = "Data Imported Sucessfully";
lblMsg.ForeColor = System.Drawing.Color.Green;
}
public void InsertDataIntoSql(string agentIP, string tagName,
string Stat,string severity,int eventCount, string eEvent, string lEvent)
{//inserting data into the Sql Server
SqlConnection mySQLconnection = new SqlConnection(ConfigurationManager.ConnectionStrings["IssNetworkReportingSystemConnString"].ConnectionString);
mySQLconnection.Open();
SqlCommand sqlSelect = new SqlCommand("SELECT SeverityID from Severity where SeverityDesc=@SeverityDesc",mySQLconnection);
sqlSelect.CommandType = CommandType.Text;
sqlSelect.Parameters.Add("@SeverityDesc", SqlDbType.NVarChar).Value = severity;
dbReader = sqlSelect.ExecuteReader();
int severityId = Convert.ToInt32(dbReader.Read());
dbReader.Close();
SqlCommand sqlInsert = new SqlCommand("Insert into IdsData_Puertorico(AgentIP,TagName,Status,SeverityID,EventCount,EarliestEvent,LatestEvent)" +
" values (@AgentIP,@TagName,@Status,@SeverityID,@EventCount,@EarliestEvent,@LatestEvent )" ,mySQLconnection);
sqlInsert.CommandTimeout = 0; //timeout unlimited
sqlInsert.CommandType = CommandType.Text;
sqlInsert.Parameters.Add("@AgentIP", SqlDbType.NVarChar).Value = agentIP;
sqlInsert.Parameters.Add("@TagName", SqlDbType.NVarChar).Value = tagName;
sqlInsert.Parameters.Add("@Status", SqlDbType.NVarChar).Value = Stat;
sqlInsert.Parameters.Add("@SeverityID", SqlDbType.Int).Value = Convert.ToInt32(severityId);
sqlInsert.Parameters.Add("@EventCount", SqlDbType.Int).Value = Convert.ToInt32(eventCount);
sqlInsert.Parameters.Add("@EarliestEvent", SqlDbType.DateTime).Value = DateTime.Parse(eEvent);
sqlInsert.Parameters.Add("@LatestEvent", SqlDbType.DateTime).Value = DateTime.Parse(lEvent);
sqlInsert.CommandType = CommandType.Text;
sqlInsert.ExecuteNonQuery();
mySQLconnection.Close();
}

View 4 Replies

Web Forms :: How To Create A File On Client Machine From A Web Application

Nov 30, 2010

I have a web application which is supposed to create a file on clients local mcahine as the user is not having permissions to create a file on the server on which the web application is running.Can anyone please help me with this.I came across some posts stating that it is not a security measure to create a file on clients machine, but in my case I am left with no options.

View 1 Replies

Web Forms :: How To Transfer A File From Client Machine To Web Server

Jul 23, 2010

I want to transfer a file from client machine to Web server. I need to allow the users to select a file on their machine and allow them to transfer the file to the web server? Also How does a file control work.

<INPUT
id="File1"
type="file" runat="server">

How to allow the users to transfer files to web servers from their local machine?

View 6 Replies

Web Forms :: Plugin To Print Document At Client Machine?

Jan 27, 2010

I am developing a Web Application using ASP.NET(C#.NET). One of the critical requirements of it is Print Word/Pdf Documents on Client Side i.e.., Print to printer connected to a Client Machine. I have searched a lot for this and i didn't got it solved..

Now i got a thought of developing a windows application associated with web App. And i want to create a plugin for winApp in WebApp. Is it possible, if yes then how to develop a plugin using .NET for Web Application.

View 1 Replies

Web Forms :: How To Upload File Directly From Client Machine

Mar 18, 2013

How to upload the file directly from the client machine. I have one button for mail sending.

If i click the button, the from, to, subject comes using pageload. Like that the default file also could be added as a attachment directly from the client machine.

How to upload the file directly(using file upload control or eithout using file upload control)...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved