MVC :: Getting The Files From The Main Folder ?
Jan 4, 2011how i sepuse to run mvc 2 there ?
at the moment im just getting the files from the main folder and placed it on the wwwroot folder (for my domain)
how i sepuse to run mvc 2 there ?
at the moment im just getting the files from the main folder and placed it on the wwwroot folder (for my domain)
I've got my Controllers in its own project, my Models in their own projects, and the Main App in ITS own project, which contains the Views folder.
So when I open up my controller cs file and right click on, say for example, the Details action and choose "Add View", it creates a Views folder within my Controllers project, and adds the view there. I want it to add the view into the Views folder in my Main App project. How in the world do I do this?
I currently have a dedicated server running a number of sites, one of these sites I would like to add a subfolder to which runs a seperate index.html file, so effectively it looks like a different site.
I am struggling to acheive this, can anybody give me the steps involved to make this happen?
To clarify, i have a web address for example www.mydomain.com and would like users to browse to www.mydomain.com/subfolder and open up a sub folder.
I have a .net website that I've built but here's the catch - when it's deployed I don't know whether it will be deployed to the root of the site or to a sub folder of a larger site (and it needs to be able to move around between places)
And - here's the important bit - we will have zero access to IIS on the live server so this just has to run straight away.
So far I've managed to find work arounds for things like paths to resources but I now need to use a 3rd party component (.dll).
Normally this would go in the bin folder and, if I run my site in the root of the website it works fine but, as soon as we move the site to a sub folder, the reference to the 3rd party component wont work.
Now - I know normally you'd suggest creating a virtual directory under IIS but remember - I HAVE NO ACCESS TO IIS.
So - is there a way to still use 3rd party components in my project and have my project all run in a sub folder of a website?
And no - I can't move just the bin folder to the root of the site - it all has to sit within its own folder.
I have a project which contains only .vb files. It doesn't include a suitable main() method to detect the entry point?
View 1 RepliesI have a folder with png images that are not shared or public (the folder is outside my application folder). Now I want my users to be able to view thoose images only if they are logged in (different users, different images). All images have a name that correspond to the users id. My idea is to stream thoose images into the asp:Image control, is that possible? How do I do that? Other (better) solutions?
View 6 RepliesI was following the tutorials from this two sites:
http://www.15seconds.com/issue/070104.htm
http://aspnet.4guysfromrolla.com/articles/020404-1.aspx
Following the first site, it had worked but when I´ve moved the pages and files to other folders and set the web.config file on this folder, now it won´t work at all!!!
The file is an *.swf object. I did put the asapi.dll to map the extension on the website root, I´ve put the
[Code]....
on the web.config new folder and on the web.config website´s root.
It won´t work!!! I can access the file directly!!! on the web.config of the folder that contains the file, there is a <deny users="*" /> line.
Actually I want move files from one folder to another folder after reading files.So while moveing the files i want rename those file
My Code is :
[Code]....
showing some error also the folder using another process, How to rename while moving..
ex:ss.xls need to 20100429.xls
ss1.xls need to 201004291.xlx
it should increment file name
I have an application in which the admin can upload files and the visitors of a website can download those files. I want to add an option that will allow admin to delete unwanted files from that folder how can this be done usin asp.net(vb).
View 16 Replies I want to count number of mdb file in the folder.The folder contains both mdb and ldb files.I want to count only *.mdb files.How to perform count operation.But i am use the following code.It gives total counts.
files = Directory.GetFiles(Apppath + "/backup/");
numFiles = files.Length;
int flname = numFiles + 1;
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
i want to copy the entire folder along with its contents from the client machine to the server where the application is deployed. i am using asp.net 3.5.
View 3 Repliesin sql how i get a no of files from a folder
suppose i have D:/xlfiles/
i have 10 .xls files in this folder
how to get the count of the number of files, if the file already exists in folder in C#.
View 2 RepliesI need to browse a folder to store a files.Can you explain how do I create this procedure?
View 3 RepliesHow do I randomize the order of the files I get out of:
string[] files = Directory.GetFiles("folder");
I have a simple user control which needs to output a list of images in a particular folder. I'm passing a property containing the folder path into the method so the same method can be used with different folders on other occasions.
What I have is almost working, but there seems to be a problem with the format of the file paths. Here's the usercontrol:
[Code]....
This loops through the files absolutely fine, but they don't render because the 'src' attribute is a local file path as opposed to a web-safe file path or a relative path. It renders like this:
<img src="C:UsersMeDocumentsMy Web Sitesmysiteiconsflagsad.png" /><img src="C:UsersMeDocumentsMy Web Sitesmysiteiconsflagsae.png" /><img src="C:UsersMeDocumentsMy Web Sitesmysiteiconsflagsaf.png" />
how to update my code so that it looks for files in the folder relatively, or uses correct absolute paths for the website to render the images correctly?
I have asp.net website which when published using build > publish website option in VS2010 and even when checking omit debug information option in website publish window,published folder still contains pdb files is there a way to avoid this behavior?.
View 1 RepliesIn my website I have a page to upload files. It works fine when I run the website on my local machine and also in visual studio in the server. But, I cannot upload files when I access the website through the browser. I have given all the pemissions I know to the upload folder like - ASPNET, Network Service and IUSR. I am using IIS 6. It is a dedicated hosting. I can access all the pages, but only the upload does not upload files to the folder and it goes to the error page (but I don't know what is the error).
View 1 RepliesI need to process files xml files which are present in Transfiles folder and then need to move that files to processed folder.Here is my code.I am getting issue asÂ
Could not find file :'file path'
string Tranfiles, ProcessedFiles;
//Tranfiles = Server.MapPath(@"~goduriansth100 ransfiles" + Filename);
Tranfiles = Server.MapPath(@"~ ransfiles" + Filename);
if (File.Exists(Server.MapPath(@"~ ransfiles" + Filename)))
{
File.Delete(Server.MapPath(@"~ ransfiles" + Filename));
}
//ProcessedFiles = Server.MapPath(@"~goduriansth100ProcessedFiles");
ProcessedFiles = Server.MapPath(@"~ProcessedFiles");
File.Move(Tranfiles, ProcessedFiles);
My client asked me to Process XML files(convert XML Data into SqlServer) Â and transfer processed files from one folder to another which are present in remote server,I know how to read(process) XML files and convert XML data into SQL as I have done earlier, Nedd transferring processed files into another folder.
View 1 RepliesI have a folder in my application (UploadsFolder) in which I've been adding images I use for y application. Is it possible to add more images to this folder programmatically online?
View 3 Repliesnew to asp.net I'm trying to dynamically delete a folder so far I have this code
[Code]....
This works well when there are no files or folders in the directory. But if the directory is not empty then I get an error. How can I delete all the files and folders within that directory
i m using fileupload concept and saving the files to a folder download.hw can i check the files names saved in that folder while site is hosted on webserver.is there any way to delete some of files from that folder runtime.
View 2 Repliesneed to show the fies in the partcular folder using treeview but i dont have icons for all files windows select the icons for particular files can i select in the same way
View 1 Replies