Mapping

What is it about mapping that's fixing my problem, b/c the UNC will not work?
I would prefer to use the UNC if possible in my current situation.

Here's my code:
Map - ImagePath = "v:" - this one works but UNC doesn't
UNC - ImagePath = "srv-file-bLic Pic"
Response.write "<img src=" & ImagePath & RTrim(LastName) & Left(LTrim(FirstInitial),1) & Right(SocSecNum, 4) & ".jpg width ='100' height ='100'>"

testimage = ImagePath & RTrim(LastName) & Left(LTrim(FirstInitial),1) & Right(SocSecNum, 4) & ".jpg"
Response.write testimage

View Replies


ADVERTISEMENT

Mapping Path In Asp

I have created my asp pages in "D:/test" . This i have created as a virtual directory.
i am having some files in "D:/download/cont/somename" From the asp page i want to access the files in the d:/download/cont/somename folder. Here somename changes according to username. i.e first i want to check whether this path is valid and then get all the files from it but its giving me the following error

Server.MapPath(), ASP 0174 (0x80004005)
An invalid '/' or '' was found in the Path parameter for the MapPath method.
/test/contractsfile.asp, line 11

code:
somename = Request.cookies("username")
source = ".. est" & "/download/cont/" & somename
if fs.folderexists(server.MapPath(source)) ---------------------------> line 11

View Replies View Related

Mapping Software

Is there some good mapping software out there that integrates well
with ASP apps? I need to be able to pass in several addresses, and
display a route on a map with driving directions.

View Replies View Related

Field Mapping

Does anyone have an example of field mapping? I am trying to write an app that reads a .csv file and then allows a user to map those .csv fields to existing SQL fields.

I have the reading of the .csv & writing to SQL, but hit the wall trying to get a mapping process to work. Ideally, I would check off a field from the csv and check off a corresponding field in the sql field then hit a map button and it would set the fields in the sql statement according also removing those two selections.

View Replies View Related

Mapping Remote Machine

I was susseesful in mapping remote machine with vbscript. Now I am building the same tool with ASP .I am using the same code but its not working. Below is the portion where I am mapping the drive: Code:

View Replies View Related

Website Mapping Tool

I am thinking of mapping out a website. The website is very large and the reason I am doing this is to find out which files are redundant and how I can go about tidying up and simplifying the code.

Can anyone recommend any good mapping tools? I am working for a company which gets all the Microsoft development tools. If anyone can recommend a Microsoft tool that would be better as I would already have access to it.

View Replies View Related

Mapping Network Drives Through Asp

I was wondering is there a way to map a network drive a on persons machine with a online gui interface?

Is there a way user 1 can map drives on THEIR computer using an online interface?

View Replies View Related

Dropdown Mapping Doesn't Work

I try to use the below code to do mapping but, i saw no value in my dropdown. I'm using classic ASP, with MS SQL Server 2005. I have check, There are value in rs("statusid") and status table. Anyone can detect the problem here?

<select name="status" class="FormTextField" id="status">
<%
SQL = "SELECT (CASE WHEN statusid='" & RS("StatusID") & "' " & _
" THEN '<option selected>' " & _
" ELSE '<option>' " & _
" END) + statusid " & _
" FROM Status ORDER BY statusid "

Set RSTypes = MM_cSupport_STRING.Execute(SQL)
Response.Write RSTypes.GetString()
RSTypes.Close
%>
</select>

View Replies View Related

ASP IIS 5.0 Mapping An FTP Share To The Physical Directory

I've setup several FTP shares on IIS 5, where some of the shares are
located on another computer, while other directories are on the local
computer.

Is there a function similar to server.mappath that I can use to return
the physical path of a FTP virtual directory using ASP?

For example, I have a virtual directory called TestA located at
C:TestA on the local computer running IIS 5. I have another virtual
directory called TestB located at DevserverTestB where Devserver is
another machine on the network.

In my ASP code, I need to be able to access the physical directories
directly and I would like to avoid having additional code to deal with
hard coded directory paths.

Is there something similar to the command server.mappath("TestB") which
would return "DevserverTestB"? This way, the physical path is
transparent and I can treat local and network shares in the same way.

View Replies View Related

Field Mapping Sample - CSV To Sql Serverusing Asp Or VB

Does anyone have an example of field mapping?

I am trying to write an app that reads a .csv file and then allows a user to map those .csv fields to existing SQL fields...

I have the reading of the .csv & writing to SQL, but hit the wall trying to get a mapping process to work...

Ideally, I would check off a field from the csv and check off a corresponding field in the sql field then hit a map button and it would set the fields in the sql statement according - also removing those two selections.

View Replies View Related







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