Web Forms :: Build A Server Folder Browser?

Apr 18, 2012

i m trying to browse a folder using folderbrowserdialoge and got this error 

Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it. This exception is only raised if a debugger is attached to the process. Description: An unhandled exception occurred during the execution of the current web request. review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Threading.ThreadStateException: Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it. This exception is only raised if a debugger is attached to the process.Source Error:

Line 64: ' If the user clicks theFolderBrowser's OK button..
Line 65:
Line 66: If theFolderBrowser.ShowDialog = System.Windows.Forms.DialogResult.OK Then Line 67:
Line 68: ' Set the FolderChoiceTextBox's Text to theFolderBrowserDialog's

[Code].....

View 1 Replies


Similar Messages:

User Controls :: How To Browse Folder Using Browser Button From Any Location On Server

Apr 17, 2012

i'm creating a asp.net web application in which i need to select source file using browse button to select the Source location from where the files has to be copied from and destination file using browse button to select the destination location where the files has to be copied to .So pls tell me what should be the code for browse button to browse a folder for source and destination and copy the source folder files to destination folder(i want to copy only text and excel files from source to destination folder) and i want user to see the progress how files are copying from source to destination and error also if there is any error in copying.

View 1 Replies

Web Forms :: Build A Website For Mobile Browser - Visual Studio 2010

Apr 6, 2013

How to make mobile website in visual studio 2010 or above.

whta is differ when we code for it on c#.

View 1 Replies

Configuration :: Exclude A Folder When Build The Website?

Aug 5, 2010

VWD 2008 Express.

I have a folder in my project that contains files I do not want to process (they are only for reference) when I build the web site. These files produce errors because they reference things I do not have in my site. How can I exclude a folder so that it is not processed during a build?

View 2 Replies

Web Forms :: How To Create A Folder Browser

Jan 17, 2011

In Visual Studio 2008 Express there is no folder browser to allow me to select a destination folder for downloading.

There is a FileUpload, but it requires a filename. I just want to select a folder only, and get its full path information.

In Windows API, there is a folder browser that I called in MS Access using VBA code.

Can someone supply me the code or tell me how to generate a folder browser to select a destination folder for downloading data to !! I would like it in VB.

I do have an .exe that generates a browser, but you can't run it on a website.

View 3 Replies

Build A Program Where From A Web Browser Can Contol Camera?

Jan 7, 2010

I am trying to build a program where from a web browser i can contol my camera.

to change settings and stuff.

i am not sure how to create a program that can be interactive from a web browser.

View 5 Replies

Why Application Creates Folder For Each Language When Add Resource File And Build

Oct 29, 2010

I'm working on resource files in windows application. After i'm adding the resource file in the project if i built the project it creates a separate folder for each language with language code(Spanish->es-ES, French->fr-FR..) and also it has one dll file for corresponding langage inside the folder. Why it is creating like this? Can't we avoid this?

View 2 Replies

Build A Browser Definition File That Detects ONLY Googlebot?

Aug 23, 2010

I basically need the equivalent of this in a .browser file

<browserCaps>
<filter>
<!-- Google Crawler -->
<case match="Googlebot">
browser=Googlebot
crawler=true
</case>
</filter>
</browserCaps>

but I just can't seem to figure this out.

View 1 Replies

Web Forms :: How To Open Folder Browser Dialog - Failed To Set Specified COM Apartment State

Jan 7, 2012

I want to open FolderBrowserDialog,

I am getting error as

"Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it. This exception is only raised if a debugger is attached to the process."

Then I added

System.Threading.Thread.CurrentThread.SetApartmentState(System.Threading.ApartmentState.STA)

And I got error as "Failed to set the specified COM apartment state."

Here is code

Private Sub btnBrowse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim MyFolderBrowser As New System.Windows.Forms.FolderBrowserDialog
' Description that displays above the dialog box control.
System.Threading.Thread.CurrentThread.SetApartmentState(System.Threading.ApartmentState.STA)
MyFolderBrowser.Description = "Select the Folder"

[Code] ....

View 1 Replies

Opening A Folder In A New Browser?

Sep 13, 2010

Developing a web application in C# which stores files in a tree structure in a server.

A project ( eg: ABC) has many sub folders (eg: ABC_sub1,ABC_Sub2...etc) . Each sub folder will have many types of files. (Eg: .dat,.txt .... etc)

I have stored the project name and the path to the parent folder ( in this case ABC) in a database.

Eg: \sereverNameTestMyProjectABC

What I need to do is when a user selects a given project ( eg; ABC) & clicks the link button component called "browse" to open the folder (\sereverNameTestMyProjectABC) in a new window.

This is the code I thought would work.

protected void LinkButtonFolderBorwse_Click(object sender, EventArgs e)
{
string myPath = @HiddenFieldFolderLocation.Value;
System.Diagnostics.Process prc = new System.Diagnostics.Process();
prc.StartInfo.FileName = myPath;
prc.Start();
}

HiddenFieldFolderLocation.Value gets the path of the parent folder (\sereverNameTestMyProjectABC).

When I click the link button nothing happens.

View 3 Replies

CSS In App_Theme Folder Gets Cached In Browser?

Dec 23, 2010

The Stylesheet in the App_Theme folder gets cached in the browser. What should be the approach? so that whenever there is a new deployment the browser should take the latest stylesheets and not the one cached in the browser.

This was happening for other css(which are not in theme folder) too, so used custom control as mentioned in the link

[URL]

How this could be done for the CSS in the Theme folder?

Edit: The theme name is mentioned in the web.config as mentioned below. so its not just the html link tag which I had solved by using the method mentioned in the link.

<pages styleSheetTheme="Default">
<controls>
</controls>
</pages>

View 3 Replies

AJAX :: Folder Browser App Using TreeView On A ModalPopup?

Sep 24, 2010

I'm working on an ASP.NET (.NET 4, VS2010) app that needs folder browsing/picking capabilities. I've got it mostly working, but I'm stuck on one last thing. (see below) Also, I'm using AJAX UpdatePanel, TreeView control, and AJAX Control Toolkit ModalPopupExtender.

When I go to the page, I load the TreeView with a top node and a first set of child nodes, which are the found drives of the server. Then I click a LinkButton to open the ModalPopupExtender, which contains the TreeView. When I click the nodes of the TreeView, the node expands and builds a set of child nodes which are the folders found.

What I want to happen is to allow the user to navigate through the TreeView, selecting drives and folders until they find the one they're looking for. Then they click OK to return the path selected back to the main form.

The problem is that any click of any node in the TreeView causes a postback and my ModalPopup closes. how to accomplish this task? That is, how can I keep the ModalPopup open while the user clicks through nodes of a TreeView in which the child nodes are populated dynamically?

[code]...

View 1 Replies

Web Forms :: Build Survey System Where Build A Form With Questions And Some Answers?

May 25, 2010

I want to build a survey system where you can build a form with questions and some answers to these questions and then members who will log in will be able to take the test.

Then i want to present the different results from the test in some diagram or something like that.

View 5 Replies

SQL Server :: How To Combine Multiple Rows Into A Comma-delimited List In Sql Server In Build Function

Jan 10, 2011

How can I combine multiple rows into a comma-delimited list in sql server in build function?? in HCL

examples :

X
---
12
15
18
20

Output : 12, 15, 18, 20

with in build function of sql server.

View 6 Replies

Data Controls :: Open And View Files From Folder In Browser Using Button Inside GridView

Oct 18, 2013

I need to open/view a file in gridview.... I successfully uploaded the file to a directory on the server, and added a filename field in a table....

I can view the table data row by row, but now want to click on the file or SELECT in that row - and that click event must open the file for me....

View 1 Replies

C# - Prevent GridView Saving Data From Build To Build In Visual Studio?

Apr 1, 2011

I have a question regarding a situation that occurs with GridView, ObjectDataSource in ASP .NET application. The GridView is linked to the ObjectDataSource and both are included within an UpdatePanel letting the GridView to fill in an asynchronous way from a form in the same page so it gets more rows as the user enters the data:

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataSourceID="ObjectDataSource1">
<Columns>
<asp:BoundField DataField="Name" HeaderText="Name" ReadOnly="True"
SortExpression="Name" />
<asp:BoundField DataField="Periodicty" HeaderText="Periodicty" ReadOnly="True"
SortExpression="Periodicty" />
</Columns>
</asp:GridView>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
SelectMethod="GetSessionNames" TypeName="Simulation"></asp:ObjectDataSource>
<asp:Label ID="Label27" runat="server" Text="Label"></asp:Label>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="NewWebSessionButton" EventName="Click" />
</Triggers>
</asp:UpdatePanel>

I start the project with Visual Studio 2008, fill the form and it works correctly. Then I stop the execution: rerun again and the data I entered in the previous run is in the GridView. Is like some sort of cache saved the data from the session before. I checked that EnableCaching property is set to false for the ObjectDataSource. If I Rebuild Web Site in Visual Studio (not just Build) then it works corretly leaving the GridView empty. Is this caused just becuase of Visual Studio? Can it be turned off? And will it happen in the final IIS it will run on?

View 1 Replies

Build Web Server?

Jan 29, 2010

I'm thinking about building my own web server, from scratch, to host websites on the interweb. What recomendations could you consider before starting? Or, is it a dumba$$ thing to do, and not worth it? The reason I am even considering it, is because I have seen ALOT of .NET jobs that require Windows Server/MSSQL Server (DBA) experience. Hey, why hire 2 people, when one can do it all. Just trying to kill all birds with a bazooka, before making a profit with a corporation.

View 5 Replies

Web Forms :: How To Upload A Folder To Server

Sep 20, 2010

how can a folder upload to server

View 1 Replies

Web Forms :: How To Upload Folder To Server

May 7, 2015

I have a application in which I want to browse the folder(not file).in asp.net, how can I achieve this .

View 1 Replies

App_browser Deployment / Create A Browser File In The App_browser Folder?

Mar 9, 2011

I have written a PageAdapter that handles viewstate persistence in a SQL server. This page adapter was created in it's own project so that i can reuse the DLL on other projects.

I have another project that is acting as my test web application. I added an entry the configuration file for the new database connection string. I also had to create a browser file in the app_browser folder. I will tell you upfront that I am not familiar with the app_browser and browser files at all. So this is probably a setup issue.

I have this solution working properly on development. I then tried to deploy my project using a web deployment project to compile the application, and then manually move the output to the test server. On the test server, it acts like it is not reading the app_browser folder. My code never gets executed. I started up a remote debugging session and my code never fired. All of the necessary files are there.

The server is windows server 2003 standard edition with SP 2. It is 32-bit. It is running IIS 6.0. We have all of the .Net frameworks installed. IIS is currently configured to run framework 4.0. My code is using 2.0.

I am not finding a whole lot of information online about it, but I know I can't be the first to have this issue. Please someone help me out here.

Below is the contents of my browser file.

<browsers>
<browser refID="Default">
<controlAdapters>
<adapter controlType="System.Web.UI.Page" adapterType="BEKCustomViewState.BEKViewStatePageAdapter"/>
</controlAdapters>
</browser>
</browsers>

View 1 Replies

What Is Difference Between Build Solution And Build Website

Mar 11, 2010

It may be obvious to everyone. I am learning this: what is difference between build solution and build website

View 2 Replies

Build Tool Which Can Build A Web App Into Multiple Dlls?

Sep 22, 2010

I have a large solution which has multiple apps which all share some common site elements (masterpages, navigation, etc).

Currently, all of these get built into a single DLL

If my structure looks like:

WebRoot
- Common/
- Shared/
- Images/
- App1/
- App2/
- etc

Is there a build tool which will allow me to build WebRoot.dll, App1.dll, App2.dll? I don't believe this is possible in VS2008 or the MSBuild tool.

View 2 Replies

How To Specify A Direct Build Name Directory Using TFS Build Of .net Web Application

May 11, 2010

I have a TFS build set up to deploy an ASP.net project to a test server.The build works great, and deploys to the test server fine, but instead of putting it into the Website directory that my IIS webserver is configured for, it puts the build into Website_20100511.6

Why is the date suffixed to the directory name? Is there a way to turn that off so I can publish directly to the Website?

View 1 Replies

Web Forms :: Copying Files To A Folder On Web Server?

Aug 12, 2010

I have few files in FolderA on the web server.

I want the users to select a fews files from FolderA and copy them to FolderB on the same web server.

I want to list all the files in FolderA and allow the user to select a few files and copy.

I want to copy the files programatically when the user selects a few files and click on Copy button.

How to copy the files quickly from folderA to FolderB?

View 4 Replies

Web Forms :: Select Image From A Server Folder?

Aug 9, 2010

I have a News manager asp.net page where I can add/delete/edit my news.I choose to upload a news image using the files upload control. and in the same time i insert the image name in a database field.Sometimes the same image I use it for diferent news so I need to upload the same image again and again, and this duplicate the image.

So I need a code to browse my "image" server folder to select one of them if it is applicable for any news, and if there is no one suitable I will browse for one from my computer using the file upload control.

View 4 Replies







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