Hello All,
Need help in capturing the UNC path based on the local path provide by user.
We are building one Asp.net web application where user can browse the file using file upload control; our requirement is capture the full network path of the uploaded file.
For example:
if User selected a file from dive like H:\Projectfiles\Billing.pdf Our required output should be like
\\xyzcompany.com\helloworld\Projectfiles\Biling.pdf
Any help would be appreciated
i tried with following code but due to security limitation with in the organization we are not allowed to use ActiveXObject
<!DOCTYPE html>
<html lang="en">
<head>
<title>Full File Name </title>
<script type="text/javascript">
if (! ...
Go to the complete details ...