Web Forms :: Folder Name With Space, Opens Multiple Windows?
Jun 10, 2010
I've created a folder with spaces in between them. Example "New Folder 1". and added a new webform "test1.aspx" into this folder. When i render this page,i 've three browser window opened with /new/test1.aspx,folder/test1.aspx and 1/test1.aspx.When i remove the spaces between the folder "NewFolder1" things work well.
View 4 Replies
Similar Messages:
Dec 28, 2010
I have to open a folder in my application, I have specified its path in a process -
string loadPath=Server.MapPath("~//VMS_Docs");
Process.Start(loadPath);
The window will open in Visual studio but not opened in when I tried to create a virtual directory on IIS.
View 4 Replies
Jul 30, 2010
New project requires that the server space be displayed and what the total content is of a folder. Where can i find information on how to do this? can someone provide a small sample or links to information i can review.
View 9 Replies
Jun 30, 2010
I am planning to make a membership-oriented website where users are allowed to upload files to their accounts, which have a limited amount of space.I can surely see a code-oriented solution (with a database holding the size of each file), but I was wondering whether it's possible to restrict folder sizes with Windows or ASP.Net (web.config?). I don't really think it's possible through the web.config,
but I'd still like to ask the community.Does anyone know what's the best way to implement the above?
View 1 Replies
Jul 30, 2013
How to resize large number of images in a folder in c# windows application. I am using following code to resize images of my folders. If images are less than 1600 ( in number) then no problem but if images are more than 1600 then i am getting error. My code is given below:-
public static Image ResizeImage(string file, int width, int height, bool onlyResizeIfWider) {
using (Image image = Image.FromFile(file)) {
// Prevent using images internal thumbnail
image.RotateFlip(RotateFlipType.Rotate180FlipNone);
image.RotateFlip(RotateFlipType.Rotate180FlipNone);
[Code] ....
Thumbnail creation in ASP.Net: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI
View 1 Replies
Feb 10, 2011
i'm writing a stored proc and if a field i return is longer then 200 characters, i want to truncate, find the last space, remove any characters after that space, then add some full stopseg:
INSERT INTO @rec(articleid, abstract)
SELECT a.id,
CASE
[code]...
View 4 Replies
May 5, 2010
How to replace a character in a String to space or white-space?
View 3 Replies
Feb 5, 2010
I'm trying to get a website that has anonymous authentication for most of the site, but windows authentication for a sub folder.I've turned off anonymous access in IISEnables basic or Integrated authentication (tried both)Used this in web config to give all users access to main site
<authentication mode="Windows" />
<authorization>
<allow users="*" />
</authorization>
Then this to restrict a location to authentication
<location path="thefolder">
<system.web>
<authorization>
[code]...
View 1 Replies
Apr 13, 2010
i just want to confirm if what am trying to do is a good deployment practice. i have two applications am deploying. A web application using web setup project and a windows application using setup project. Due to some constraints, am merging the two deployments and so i intend installing the windows application in the intepub folder (same location as where the *.aspx will reside). Is this crazy? the windows application has a windows service
View 9 Replies
Jun 28, 2010
I got an error about asp.net cannot find window emp folder, so I created one and gave the right permission and the problem went away. Three days later same problem happened and I went in and couldn't find my temp folder. This is on a live server so is there a reason for my windows temp folder gone out of the blue? Is it possible that my server host company does some maintenance that cleans up the folder? Also, what is the difference between NT AUTHORITYNETWORK SERVICE and servernameNETWORK SERVICE?
View 1 Replies
Nov 3, 2010
I am working with Microsoft web developer 2008 Express (asp.net) and coding in VB.
I have coded a routine that creates a series of excel files in a folder called "SaveExcelFiles". This routine works fine. What I now want to do is to create a routine that will let my user download (copy) the entire folder to his PC. I do not want to have the user have to download each excel file separately if this can be avoided. Also I would like to have a routine that deletes all of the excel files in the folder.
View 4 Replies
Jan 26, 2014
How to Upload multiple files from folder and then Download uploaded multiple files from folder without using Gridview in ASP.NET c#.
View 1 Replies
Jun 22, 2010
Just got a new dev machine and am having trouble with this piece of code in our project. I have set folder permissions to give Network Service read/write accessFor dev, this is being ran locally on IIS 7.5. IIS Authentication settings are Forms Authentication and Windows Authentication enabled.I am getting a permssions error when the xml is written to the local hard drive.
PDFGenerator pdfGenerator = new PDFGenerator();
DataSet dataSet1 = pdfGenerator.GenerateDataSet(Parameters, xmlFilePath);
outputXmlFile = Guid.NewGuid() + outputXmlFile;
[code]...
View 1 Replies
Jun 16, 2010
I have a page with a listview bound to a database. The user selects an item on the list, hits submit, and a new window opens up with the selection as part of a query string. I need the user to be able to select multiple items and open up multiple new windows. Heres my code:
[Code]....
Currently, the first selection will open up a new window, but none after that.
View 4 Replies
Sep 18, 2012
I was watching the page [URL] .... and its great , but I would like to use the example but i need a textboxt to input the folder that i want to use to save the images
destination folder: upload/
<input id="Text1" type="text" value="my folder" /><br />
<a href="javascript:$('#<%=FileUpload1.ClientID%>').fileUploadStart()"
style="font-family: Arial; font-size: medium; color: #008000;">Start Upload</a>
| <a
href="javascript:$('#<%=FileUpload1.ClientID%>').fileUploadClearQueue()"
[Code] .....
View 1 Replies
Jan 24, 2011
I have a problem with DataSet.GetXml() in ASP.NET 4.0:
First I populate the dataset with some tables.
Then I run the .GetXml() method on the dataset and some XML is returned. The output of this method is not want I want it to be, however.
The desired result is this:
[code]....
How do I stop this from happening? I mean, how do I stop the cell from being included at all?
In ASP.NET 1.1 the same code is used and the desired output is returned. This means that it is probably some new thing in 4.0 that I have to switch on/off. But what?
View 1 Replies
Jun 11, 2010
I set up a secured folder in my website. When I access this folder via web page, it pop up a windows login form to ask for user name and password. I would like to code the asp.net page or java script to access this secured folder with username and password without pop up the login form. find the method for asp.net page accessing the secured folder automatically.
View 2 Replies
Mar 9, 2010
I have a web app, can upload images when running it on the local development machine, but when runnign it on WebServer 2008, it gives me an error saying "access is denied". I konw it is something to do with security, but how do I make it such that an internet user can have acces to it. The folder is located in: c:inetpubsiteimages494
View 4 Replies
Jul 16, 2013
Download multiple file from server and stored in client browse directory.
View 1 Replies
Mar 5, 2013
How to prevent multiple browser windows opening in asp.net ...
View 1 Replies
Feb 12, 2010
I am having problems getting the security.aspx to load up on my primary development computer which is using Windows 7 Ultimate and Windows IE 8. Clicking on the ASP.NET Configuration icon from the IDE in the Solution Explorer within Visual Web Developer 2008 Express Edition loads up default.aspx with no problem. But when I click on the "Security" hyperlink to access "security.aspx" I get a message along the lines of "The configured SQL data source provider is not properly configured". It goes on to state a list of potential reasons for this problem. One that includes not having the proper credentials or permissions. Im almost 100% sure it has something to do with permissions because I can't even get to the "security.aspx" page from opening a new empty project. I have recently installed Visual Web Developer 2008 Express Edition on my laptop which is running Vista with all latest updates and this issue does "not" exists. I can click the "ASP.NET" icon, load up "default.aspx" and click "Security" and it loads the page with absolutely no issues.
I have discovered a weird workaround but I don't like having to do this. If I add the following lines to my "web.config" file from any given project I can get to the "security.aspx" page without getting any SQL messages about improper configuration or permissions.
<<remove "LocalSqlServer">
<add
name="LocalSqlServer"
connectionString="data
source=.SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
providerName="System.Data.SqlClient"/>
Basically, what I have to do to get to the security page to load without error is add a remove statement and then I just cut'n'paste almost the exact same connectionString from machine.config in the Microsoft.netFrameWorkV2.0.5027config directory. This does away with the "Improperly configured SQL datasource message" and gets me a new error message along the lines of "Could not create a SQL instance". My memory is fuzzy on exact error messages since Im not at development computer right now. However, when I change the User Instance attribute from true to false, then I have success at last.
View 2 Replies
Mar 6, 2013
Preventing user to open duplicate web application,while it is running .....
View 1 Replies
Jul 2, 2010
I know this might be a detail problem but yet kind of annoying.
The first time you click LinkButton1, the webpage [URL] is not opened. But when you click the second time, then a new browser window is opened. I wonder why that happens. ? I use IE8.
[Code]....
View 6 Replies
Apr 13, 2010
Instead of uploading image one by one, how do i achieve to upload all the images from the folder?
View 5 Replies
Feb 9, 2011
I'm searching folders using the following code. Is it possible to use this code to search for *.mp4, *.mp3, and *.m4v files instead of just *.mp4 files?
[Code]....
View 2 Replies