I am developing an ASP.NET 3.5 web application which allows users to upload files to the server. If the user is uploading a file which is already there in the folder then I want to show a ASP.NET AJAX modal popup asking the user whether he wants to replace the existing file or not and continue the operation depending on the user's input. Is there a way to do this?
I hv a file upload control which save files in folder upload_html. When I upload file of same name which already exists upload_html folder it does't replace that file.........
I want that file to be replaced from that folder.............
I have a virtual web folder that has large number of PDF Files (Leave Forms) submitted over the past 5 years.
The users and other applications have direct references to such files and on some cases, the PDF is referenced as embedded object.
Here is a snapshot of where the PDFs are stored:
So, the direct link to the PDF will look like the following:
[URL]
Becuase the PDFs are stored under a folder under the ASP.NET Web Application, it was a bad idea.
Now, I have to move them all to another location which is simply a virtual folder outside the Web Application.
All Leave PDF Forms have Unique URLs which is:
"SessionID" + "/" + "Leave-userid-start-date.pdf"
So, I need to replace the above link with the following after I move the PDF Files. I want the replacement to happen at the time it is requested from the Client Browser. The new URL will look like the following:
[URL]
So, whether it is requester from IE from any other Object Tag or similar, then the input URL should be replaced with the new URL as shown above.
I'm working on an ASP.NET web application for our corporate intranet users. I have a form where a user should provide a path to the file on the local network (something like "localServersomeFoldersomeFile.ext") without uploading the actual file. The issue is that users don't want to type the whole file path and want to use some kind of visual browse dialog.
The standard HTML <input type=file> element allows to browse for a file, but most of the browsers (except for IE) don't allow to access file's full path, so I think it should be done by some external component like Silverlight, Flash, Java applet etc. I tried to do it with Silverlight, but I'm getting a SecurityException when trying to access file's full path using Silverlight's OpenFileDialog class. This java applet [URL] seems to do something similar to what I'm looking for, but it's focused on uploading files - I only need to be able to get file's full path and pass it to the server as a string.
I have a css file which I want to read from disk and in that content I want to find and replace all linebreaks (do I look for vbCrlf or ...?)
Public Shared Function GetFileContents(ByVal FullFilename As String) As String Dim filecontents As String = "" If File.Exists(FullFilename) Then Dim objStreamReader As StreamReader objStreamReader = File.OpenText(FullFilename) filecontents = objStreamReader.ReadToEnd() objStreamReader.Close() End If Return filecontents End Function
So in the returned variable "filecontents" I want to find and replace any linebreaks.
I need to replace <span> entries in a string to legacy html code because it's going to be used in a report for Crystal Reports. <b> works with Crystal, but the<span>'s do not.
Here's the string which I'm trying to replace: <span style="font-weight: bold">%THIS CAN BE ANY TEXT%</span>. I want to replace it to
i see in many pages that in the register is created a string that must be rewrited in a textbox and in the click of confirm they are compared if they are the same to procceed
I want to execute a CS Code but before that, i want a confirmation from user, it will be a javascript confirmation box, if the user say yes, then execute the code, or else leave cs code don't execute
I am working on delete confirmation box in asp.net mvc using linq to sql. I want a delete confirmation box if i want to delete record corresponding to a particular id.If i click ok, it has to map to Delete controller and if i click cancel ,it has to be retained in the same page.
How do I redirect the page once the user has seen the confirmation page?
I am using asp.net 3.5, it's not showing me a message instead it's just redirecting to the default page. I want to see the message and once the user has clicked 'ok' then it redirects to another page.
I put the code above to display a confirmation message box.. but the problem is whatever button i clicked, it still continue.. all i want to happen is when i clicked the cancel button, it will not proceed..
I want to show the confirmation box in asp.net from server side:I want to call it from server side because I have to take the customer message from server side. I am using the below code
string str = "Are you sure, you want to Approve this Record?"; ClientScript.RegisterStartupScript(typeof(Page), "Popup", "return confirm('" + str + "');",true); // More code ....
Now it is showing the popup and irrespective of what I click, whether "ok" or "Cancel", my code is executing. let me know how can I restrict code to be executed when user select "cancel" in the confirmation box.
I have a simple mvc application which perform the CRUD functionality to manage UserDetials. I need to show a confirmation box when trying to delete a record.
I have one page which contains 3 panels and 3 buttons. Each panel connects one button. When one button clicks, the relative panel appears and other panels are divisible. For each panel, I design a textbox, a merge button and a gridview. When user input information into the textbox, the gridview shows the detail data from the database and two checkboxes. The next step, user uses checkboxes to choose two different rows of data and click the merge button. I need to show a confirmation message based on the selection user made i.e. Are you you want to merge A to B.
write the code to show the confirmation message which is works perfectly in Page_Load() method. But the problem is the page contains 3 panels. Do I need to write code for each panel to show the confirmation message and put 3 sets of the code in Page_Load?
I would like to create a confirmation number using both letters and digits just like when you book your flights, the confirmation number looks like '9Z3RG6R'
am using asp.net3.5,C#. I am using this script in codebehind when mycheckboc is checked,now i want to give delte confirmation when checkbox is unchecked. so i need to catch whether it returns true/false for deletion in codebehind,,according to that i follow my steps.
I have written like this
[Code]....
I need to display other msg,functionality when it is checked n I need to do other msg,functionality when it is unchecked,,
I need to call a codebehind funtion if the confirmation returns true.how can i do this?
I need to dispaly a message box for confirmation to delete an Item or not but not sure how to do that if I use javascript alert, than how will I get confirmation?