Mutilple File Selection and Upload Functionality in Sharepoint 2010

Hi,
I have a requirement that i have to create an Application page where i should have the following functionality.
Should be able to select multiple files at a single shot.
That is when i click on Browse and choose files i should be able to choose more than one file and then i have to upload all the files to Sharepoint document library.
I know how to upload mutiple files to library , but am unaware how to select mutiple files with single browse.
By using Fileupload control we can select only one file at a time. ( We have to use more Fileupload control and get more files , but have to select the files one by one only )
Is there any control or any workaround to achieve this.
Main thing is to select Multiple files at a single go.
Thanks in Advance.
Regards,
SivaKumar.

Hi,
The following links for your reference:
<asp:FileUpload AllowMultiple="True"...>
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.fileupload.aspx
jQuery File Upload pulgins
http://plugins.jquery.com/?s=upload+file
Best Regards
Guangchao chen
TechNet Community Support

Similar Messages

  • I need to select and upload a image and corresponding url from an external website using file upload control in MVC4. Please help

    I need to select and upload a image and corresponding  url from an external website using file upload control in MVC4.
    Please help
    Latheesh K Contact No:+91-9747369936

    This forum supports .NET Framework setup.
    As your issue appears to have nothing to do with .NET Framework setup, please ask in the MVC forums for best support.
    http://forums.asp.net/1146.aspx/1?MVC

  • GUI_DOWNLOAD and UPLOAD Function Modules?

    Hi All,
    What exactly done by GUI_DOWNLOAD and UPLOAD Function Modules?
    Akshitha.

    What you exactly want know?
    Here is the Sap documentation for both FM:
    FU GUI_UPLOAD
    Short Text
    Upload for Data Provider
    Functionality
    The module loads a file from the PC to the server. Data can be transferred binarily or as text. Numbers and date fields can be interpreted according to the user settings.
    Example
    Binary upload: No conversion or interpretation
                begin of itab,
                      raw(255) type x,
                end of itab occurs 0.
               CALL FUNCTION 'GUI_UPLOAD'
               exporting
                  filetype =  'BIN'
                  filename = 'C:\DOWNLOAD.BIN'
               tables
                 data_tab = itab.
    Text upload
               begin of itab,
                     text(255) type c,
               end of itab occurs 0.
               CALL FUNCTION 'GUI_UPLOAD'
               exporting
                  filetype = 'ASC'
                  filename = 'C:\DOWNLOAD.TXT'
               tables
                 data_tab = itab.
    Parameters
    FILENAME
    FILETYPE
    HAS_FIELD_SEPARATOR
    HEADER_LENGTH
    READ_BY_LINE
    DAT_MODE
    CODEPAGE
    IGNORE_CERR
    REPLACEMENT
    CHECK_BOM
    VIRUS_SCAN_PROFILE
    NO_AUTH_CHECK
    FILELENGTH
    HEADER
    DATA_TAB
    Exceptions
    FILE_OPEN_ERROR
    FILE_READ_ERROR
    NO_BATCH
    GUI_REFUSE_FILETRANSFER
    INVALID_TYPE
    NO_AUTHORITY
    UNKNOWN_ERROR
    BAD_DATA_FORMAT
    HEADER_NOT_ALLOWED
    SEPARATOR_NOT_ALLOWED
    HEADER_TOO_LONG
    UNKNOWN_DP_ERROR
    ACCESS_DENIED
    DP_OUT_OF_MEMORY
    DISK_FULL
    DP_TIMEOUT
    Function Group
    SFES
    FU GUI_DOWNLOAD
    Short Text
    Download an Internal Table to the PC
    Functionality
    Data transfer of an internal table form the server to a file on the PC. The Gui_Download module replaces the obsolete modules Ws_Download and Download. The file dialog of the download module is available in the class Cl_Gui_Frontend_Services.
    Further information
    TYPE-POOLS: ABAP.
    Binary download table
    DATA: BEGIN OF line_bin,
             data(1024) TYPE X,
          END OF line_bin.
    DATA: data_tab_bin LIKE STANDARD TABLE OF line_bin.
    Ascii download table
    DATA: BEGIN OF line_asc,
             text(1024) TYPE C,
          END OF line_asc.
    DATA: data_tab_asc LIKE STANDARD TABLE OF line_asc.
    DAT download table
    DATA: BEGIN OF line_dat,
             Packed   TYPE P,
             Text(10) TYPE C,
             Number   TYPE I,
             Date     TYPE D,
             Time     TYPE T,
             Float    TYPE F,
             Hex(3)   TYPE X,
             String   TYPE String,
          END OF line_dat.
    DATA: data_tab_dat LIKE STANDARD TABLE OF line_dat.
    Get filename
    DATA: fullpath      TYPE String,
          filename      TYPE String,
          path          TYPE String,
          user_action   TYPE I,
          encoding      TYPE ABAP_ENCODING.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
       EXPORTING
         WINDOW_TITLE         = 'Gui_Download Demo'
         WITH_ENCODING        = 'X'
         INITIAL_DIRECTORY    = 'C:\'
      CHANGING
         FILENAME             = filename
         PATH                 = path
         FULLPATH             = fullpath
         USER_ACTION          = user_action
         FILE_ENCODING        = encoding
      EXCEPTIONS
         CNTL_ERROR           = 1
         ERROR_NO_GUI         = 2
         NOT_SUPPORTED_BY_GUI = 3
         others               = 4.
    IF SY-SUBRC <> 0.
      EXIT.
    ENDIF.
    IF user_action <> CL_GUI_FRONTEND_SERVICES=>ACTION_OK.
      EXIT.
    ENDIF.
    Download variables
    DATA: length TYPE I.
    Binary download
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          FILENAME                         = fullpath
           FILETYPE                         = 'BIN'
        IMPORTING
          FILELENGTH                       = length
        TABLES
          DATA_TAB                         = data_tab_bin
       EXCEPTIONS
         FILE_WRITE_ERROR                = 1
         NO_BATCH                         = 2
         GUI_REFUSE_FILETRANSFER         = 3
         INVALID_TYPE                     = 4
         NO_AUTHORITY                     = 5
         UNKNOWN_ERROR                   = 6
         HEADER_NOT_ALLOWED              = 7
         SEPARATOR_NOT_ALLOWED           = 8
         FILESIZE_NOT_ALLOWED            = 9
         HEADER_TOO_LONG                 = 10
         DP_ERROR_CREATE                 = 11
         DP_ERROR_SEND                   = 12
         DP_ERROR_WRITE                  = 13
         UNKNOWN_DP_ERROR                = 14
         ACCESS_DENIED                   = 15
         DP_OUT_OF_MEMORY                = 16
         DISK_FULL                        = 17
         DP_TIMEOUT                       = 18
         FILE_NOT_FOUND                  = 19
         DATAPROVIDER_EXCEPTION          = 20
         CONTROL_FLUSH_ERROR             = 21
         OTHERS                           = 22.
    Ascii download
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          FILENAME                         = fullpath
           FILETYPE                         = 'ASC'
        IMPORTING
          FILELENGTH                       = length
        TABLES
          DATA_TAB                         = data_tab_asc
       EXCEPTIONS
         FILE_WRITE_ERROR                = 1
         NO_BATCH                         = 2
         GUI_REFUSE_FILETRANSFER         = 3
         INVALID_TYPE                     = 4
         NO_AUTHORITY                     = 5
         UNKNOWN_ERROR                   = 6
         HEADER_NOT_ALLOWED              = 7
         SEPARATOR_NOT_ALLOWED           = 8
         FILESIZE_NOT_ALLOWED            = 9
         HEADER_TOO_LONG                 = 10
         DP_ERROR_CREATE                 = 11
         DP_ERROR_SEND                   = 12
         DP_ERROR_WRITE                  = 13
         UNKNOWN_DP_ERROR                = 14
         ACCESS_DENIED                   = 15
         DP_OUT_OF_MEMORY                = 16
         DISK_FULL                        = 17
         DP_TIMEOUT                       = 18
         FILE_NOT_FOUND                  = 19
         DATAPROVIDER_EXCEPTION          = 20
         CONTROL_FLUSH_ERROR             = 21
         OTHERS                           = 22.
    DAT download
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          FILENAME                         = fullpath
           FILETYPE                         = 'DAT'
        IMPORTING
          FILELENGTH                       = length
        TABLES
          DATA_TAB                         = data_tab_dat
       EXCEPTIONS
         FILE_WRITE_ERROR                = 1
         NO_BATCH                         = 2
         GUI_REFUSE_FILETRANSFER         = 3
         INVALID_TYPE                     = 4
         NO_AUTHORITY                     = 5
         UNKNOWN_ERROR                   = 6
         HEADER_NOT_ALLOWED              = 7
         SEPARATOR_NOT_ALLOWED           = 8
         FILESIZE_NOT_ALLOWED            = 9
         HEADER_TOO_LONG                 = 10
         DP_ERROR_CREATE                 = 11
         DP_ERROR_SEND                   = 12
         DP_ERROR_WRITE                  = 13
         UNKNOWN_DP_ERROR                = 14
         ACCESS_DENIED                   = 15
         DP_OUT_OF_MEMORY                = 16
         DISK_FULL                        = 17
         DP_TIMEOUT                       = 18
         FILE_NOT_FOUND                  = 19
         DATAPROVIDER_EXCEPTION          = 20
         CONTROL_FLUSH_ERROR             = 21
         OTHERS                           = 22.
    Parameters
    BIN_FILESIZE
    FILENAME
    FILETYPE
    APPEND
    WRITE_FIELD_SEPARATOR
    HEADER
    TRUNC_TRAILING_BLANKS
    WRITE_LF
    COL_SELECT
    COL_SELECT_MASK
    DAT_MODE
    CONFIRM_OVERWRITE
    NO_AUTH_CHECK
    CODEPAGE
    IGNORE_CERR
    REPLACEMENT
    WRITE_BOM
    TRUNC_TRAILING_BLANKS_EOL
    WK1_N_FORMAT
    WK1_N_SIZE
    WK1_T_FORMAT
    WK1_T_SIZE
    WRITE_EOL
    FILELENGTH
    DATA_TAB
    FIELDNAMES
    Exceptions
    FILE_WRITE_ERROR
    NO_BATCH
    GUI_REFUSE_FILETRANSFER
    INVALID_TYPE
    NO_AUTHORITY
    UNKNOWN_ERROR
    HEADER_NOT_ALLOWED
    SEPARATOR_NOT_ALLOWED
    FILESIZE_NOT_ALLOWED
    HEADER_TOO_LONG
    DP_ERROR_CREATE
    DP_ERROR_SEND
    DP_ERROR_WRITE
    UNKNOWN_DP_ERROR
    ACCESS_DENIED
    DP_OUT_OF_MEMORY
    DISK_FULL
    DP_TIMEOUT
    FILE_NOT_FOUND
    DATAPROVIDER_EXCEPTION
    CONTROL_FLUSH_ERROR
    Function Group
    SFES

  • PDF File not opening in browser for sharepoint 2010

    Recently we have moved our web application from one server to another in Sharepoint 2010. Back up of entire web application was taken and restored in another server. But in the new server , the PDF files in the document library is not getting opened in browser.
    it always open in browser
    I have already made following changes but didn,t work
    Set browser file handling to Permissive from central admin
    Set "open in browser" in setting s of doc library
    Set the doc library file handling property using $docLib = $web.lists["Your Document Library Title"] $docLib.BrowserFileHandling = "Permissive" $docLib.Update()
    Added "AllowedInlineDownloadedMimeType.Add("Application/Pdf") in web app
    Installed Adober eader in client machine
    Even after trying all these, the PDF files are still opening in Client application(Adobe reader) but not in the browser
    It would have been great help if anybody provide a solution for this. I have been banging head on this for two days

    It would be handy if you didn't double post too.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/81ed0362-4033-4a31-b265-c1aba43c3d14/pdf-file-not-opening-in-browser-for-sharepoint-2010?forum=sharepointadminprevious
    To answer your question, you've tried most things that I normally see working, but there may be an extra solution here for you.  The solution 2 Powershell that deals with updating the Inline MimeType may help.
    http://www.pdfshareforms.com/sharepoint-2010-and-pdf-integration-series-part-1/
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Jquery or code for Image loading on Sp Gridview Pager(Next ,Prev) click functionality on sharepoint 2010

    Jquery or dynamic code for Image loading on Sp Gridview Pager(Next ,Prev) click functionality on sharepoint 2010.
    i have a dynamic SP gridview contains Previous and next
    buttons for paging.
    page doesn't contain Update panel.
    grdXRPSUsers.PagerSettings.Mode = PagerButtons.NextPrevious;
    grdXRPSUsers.PagerSettings.PreviousPageText = "< Previous Page";
    grdXRPSUsers.PagerSettings.NextPageText = "Next Page >";
    grdXRPSUsers.PagerSettings.FirstPageText = "First Page";
    grdXRPSUsers.PagerSettings.LastPageText = "Last Page";
    When i click on Next or Previous page in the gridview it will take more time and showing progress bar in th below.
    As per my client request, i need to change the
    progress bar to Loading image (Wheel at middle of the grid at fething time).
    How its possible either through jquery or Programming(code behind).
    Please help

    Hi,
    According to your description, my understanding is that  you want to add loading image when click the paging button to load the data.
    I suggest you can use Jquery BlockUI Plugin to show a block image when loding data in paging click event.
    Here is a similiar thread for your reference:
    How to display a loading image until a gridview is fully loaded
    More information:
    Jquery BlockUI Plugin
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • File download and Upload using SOAP in Oracle ADF

    Hi Gurus,
    I have a requirement of Uploading and downloading a file on a location. It is for uploading and downloading an Attachments for a user. I have a table in my jspx page for showing the current attachments and an option to upload a new attachment. When I click on attachment name, the file should be downloaded.
    The current implementation does this using SOAP web service. Now, i need to do it with ADF now.
    For Uploading and downloading, i have used FileDownloadActionListner on my page. I am not able to figure out how to use SOAP service in ADF to download or upload a file. what i have done is
    1. Create WebService Data Control with the exposed wsdl.
    2. Created .jspx page and binded the fuctions to the button.
    3. In managed bean class, i have written code to get reference to that web service and invoke it. I am assuming of making the currect call as the response object is not coming as null.
    Now i need to know:
    1. How to verify for the success response from a SOAP web service in the managed bean code.
    2. how to go ahead with the implementation.
    For Upload: I have filename, content and mimetype in the managed bean code function. but how to use those to make a soap call and upload a file at the location.
    For Download: I have DocumentId in the managed bean code function, and how to use it to download a file. How to get the SOAP response in managed bean code and how to handle it.
    Thanks in Advance,
    regards,
    Rajan

    Hi,
    don't have an example, but I suggest to use a JAX-WS proxy client and access it from the POJO DC (instead the WS DC) so you have access to the service responses
    Frank

  • How to receive and upload data into Sharepoint using webservice in BizTalk (without using sharepoint adapter).

    Hi,
    I have a requirement to receive files from sharepoint and upload files to share point.
    So is there anyway we can achive this using webservices in BizTalk (without using sharepoint adapter)
    Thanks in advace

    I do not have a sample flow... but if you refer to the samples where these web services are used then you'd be able to translate those code samples into BizTalk flows.. For e.g.:
    http://msdn.microsoft.com/en-us/library/office/ms429658(v=office.14).aspx refers to returning list items. When you add generated items to your BizTalk for SharePoint Web Services, you'd get the schemas (xmlDocs in the sample) which you'd instantiate and
    call.
    When dealing with lists, you will need the GUID of the list so you need to do a GetLists call first and then get the GUID for your specific list from that. You will also encounter CAML which is what is used to query and get List Data.
    Have fun.
    Regards.

  • File chunking and uploading/reasembling

    i'm working on a chunked file uploader that talks to a nginx modul that handles resumable/chunked uploads.
    right now i'm trying to verify that the file chunking process is working correctly. however i've run into some strange things with my local tests. for starters it works perfectly on all of the smaller file's i've tried. they've all passed the md5 checksum comparisons.
    however for all of the larger files i've tried they fail the md5 checksum comparison, and a lot of the time the videos won't play. i've noticed that upping the chunk size from 5mb to 100mb has fixed the playback issue for at least one of the videos i've tested with.
    as far as i can tell it's loading in the original file in chunks and storing those chunks into files. i can watch it's progress through the file and the numbers all match up as expected.
    here's my source code for the chunking and rebuilding:
            public function makeChunks():void{
                status = "Preparing";
                trace("VideoData::makeChunks");
                fileStream = new FileStream();
                fileStream.readAhead = chunkSize;
                fileStream.addEventListener(ProgressEvent.PROGRESS,onOpenProgress);
                fileStream.addEventListener(Event.COMPLETE,onOpenComplete);
                fileStream.openAsync(file,FileMode.READ);
            private function onOpenProgress(e:ProgressEvent):void{
                if(fileStream.bytesAvailable >= fileStream.readAhead){
                    trace("onOpenProgress |",fileStream.position,"|",e.bytesLoaded,"/",e.bytesTotal,"(",file.size,")|----|",fileStr eam.bytesAvailable,"/",fileStream.readAhead);
                    var cChunk:ByteArray = new ByteArray();
                    fileStream.readBytes(cChunk);
                    trace("--",chunkIndex,"*",cChunk.length,chunkIndex*cChunk.length);
                    trace("--",fileStream.bytesAvailable,"/",fileStream.readAhead);
                    var tFile:File = File.applicationStorageDirectory.resolvePath(file.name+"_chunks/"+chunkIndex+".part");
                    var wStream:FileStream = new FileStream();
                    wStream.open(tFile,FileMode.WRITE);
                    wStream.writeBytes(cChunk);
                    wStream.close();
                    chunkIndex++;
                    //fileStream.position += currentChunk.length;
                    trace("---------------",chunkIndex,"",cChunk.bytesAvailable);
                    //dispatchEvent(new MediohEvent("LocalVideosChanged",true,true));
                    current_progress = e.bytesLoaded / e.bytesTotal;
            private function onOpenComplete(e:Event):void{
                trace("onOpenComplete |",fileStream.position,"/",file.size,"|",file.size-fileStream.position,"|----|",fileStrea m.bytesAvailable,"/",fileStream.readAhead);
                if(fileStream.bytesAvailable > 0){
                    var cChunk:ByteArray = new ByteArray();
                    fileStream.readBytes(cChunk);
                    var tFile:File = File.applicationStorageDirectory.resolvePath(file.name+"_chunks/"+chunkIndex+".part");
                    var wStream:FileStream = new FileStream();
                    wStream.open(tFile,FileMode.WRITE);
                    wStream.writeBytes(cChunk);
                    wStream.close();
                    trace("chunking complete---------------",chunkIndex,"bytes length",cChunk.length,"bytes length",cChunk.length);
                trace("--",chunkIndex,"*",cChunk.length,chunkIndex*cChunk.length);
                trace("--",fileStream.bytesAvailable,"/",fileStream.readAhead);
                fileStream = null;
                chunk_path = file.name+"_chunks/";
                needs_chunks = false;
                status = "Uploading";
                current_progress = 0;
                dispatchEvent(new MediohEvent("LocalVideosChanged",true,true));
                dispatchEvent(new Event("saveVideos",true,true));
                rebuild();
            private function rebuild():void{
                var target_file:String = "C:\\Users\\sophia\\Videos\\backtogether\\"+file.name;
                var folder:File =  File.applicationStorageDirectory.resolvePath(chunk_path);
                var filesFound:Array = folder.getDirectoryListing();
                trace("blah",filesFound);
                var bigFile:File = new File(target_file);
                var wStream:FileStream = new FileStream();
                wStream.open(bigFile,FileMode.WRITE);
                for(var i:int = 0; i < filesFound.length; i++){
                    var fStream:FileStream = new FileStream();
                    fStream.open(filesFound[i],FileMode.READ);
                    var bytes:ByteArray = new ByteArray();
                    fStream.readBytes(bytes);
                    fStream.close();
                    wStream.writeBytes(bytes);
                wStream.close();
                status = "Complete";
                current_progress = 1;
                date_uploaded = new Date();
                clearChunks();
                dispatchEvent(new Event("uploadComplete",true,true));
                dispatchEvent(new Event("saveVideos",true,true));

    i've found a work around. instead of splitting the file up into a bunch of smaller files that i can then read the bytes from to upload i just upload them as i read them from the file. and have it wait to processes the next block of bytes that get loaded until after the previous bytes finish uploading.
    i also determined that the number of chunks effects my ability to put them back together again locally.
    i tested with a file i had successfully uploaded before with a much smaller chunk size (1mb instead of 5mb)  and it uploaded successfully but my local attempt to rebuild failed.
    i'm still kinda currious as to why i can put together a file broken into a couple chunks but not one broken into many.

  • Display Like and Share functionality in SharePoint 2013 search result

    Hello Experts,
    I dont Know whether i am asking a good question or bad one . but i am not very much expert in search.
    I have to display No of Likes , Share functionality in SharePoint Search Results. 
    i know little basic about how display templates works. i want to implement these like and share functionality as actions  in Item_common_hoverpanel_Actions template. show that i can see in preview.
    please if any body can help me . i will be highly thankful to you.
    Mukesh

    This will be difficult. The number of likes has a managed property called LikesCount but it is not populated by the search crawler. So your JavaScript will have to read the "LikesCount" field of the corresponding list item. That would be a
    lot of code to execute in the item display template just to display the number of likes. You could have a button that displayed a callout that would get the information and display it. The Sharing could be done via JavaScript in your item display template
    using a REST call. You can see an example of code to do that here:
    http://sharepointfieldnotes.blogspot.com/2014/09/sharing-documents-with-sharepoint-rest.html?showComment=1428595550241#c3227376854590814312
    Just remember the user must have permission to share these documents, so your code will have to handle this.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • Image files email and upload problem

    Emails I send through mail are arriving very compressed. However when I try to upload them onto my webspace they are expanding.
    For example a jpeg 600 x 600px, at a resolution of 72ppi and a file size of 308kb:
    When emailed through Mail it arrives as 240 x 240px, at a resolution of 72pp and a file size of 92kb
    When emailed through my webmail (Virgin) it arrives at the original dimensions and file size
    When uploaded to my webspace using Cyberduck it expands from 308kb to 4GB and an estimated upload time of 18 hours!
    The larger the original file size, the worse the email problem, but the upload remains at around 4GB.
    I suspect that somehow the file is being compressed on arrival because it has expanded as it is being emailed or uploaded.
    My webspace provider says it isn't a problem their end. As things are ok through my Virgin webmail I don't think it can be them - though they are the usual suspects.

    When you email an image in Mail, set the Image Size pop-up in the lower right-hand corner of the window to "Actual Size".

  • PO download and Upload functionality in SRM 5.0

    Dear experts,
    Is there really in SRM 5.0 Extended Classic scenario a functionality to download and Upload PO's to Excel?
    I have seen some people speaking about it in this forum but it is not documented in any SAP document
    Thanks
    RD

    Yeap, sure!
    You can do this, if you go into the PO, you'll see these buttons.
    Check that.
    Rgs,
    Pedro Marques
    Edited by: Mr. Pedro Marques on Jun 30, 2008 5:35 PM

  • How to block file transfer and desktop sharing in Lync 2010 for Fedrated and Guest Users

     
    Dear,
    Can anybody guide me how to restrict desktop sharing and file transfer for federated and Anonymous logins in Lync 2010.
    I have tried to apply this policy through “Conferencing Policy”, but this gets applied to all users including corporate users.
    Please help in this.

    Hi,
    As my knowledge, the CsFileTransferFilterConfiguration and setting in confercing policy are used to block transfer file between users. So if the policy is applied to user, the user would not transfer file with anybody. Since all Federation and Guest
    Users access thought the Access Edge service, here is a update that helps to enable the control of the file transfer through the Access Edge service.
    http://support.microsoft.com/kb/2621840
    The update helps to define the file transfer policy between users on the local area network and users that connect through the Access Edge server in a Microsoft Lync Server 2010 environment. It helps protect Microsoft Lync Server 2010 deployment against
    the spread of the most common forms of viruses with minimal degradation to the user experience.
    Regards,
    Kent Huang
    TechNet Community Support ************************************************************************************************************************ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a
    marked post does not actually answer your question.

  • EML files sitting in queue folder on SharePoint 2010 server

    Okay, so the incoming email is actually making it to the SharePoint 2010 server.  I actually sent 4 emails from my outlook to the sharepoint site library email.  the emails are inside of the queue folder on the sharepoint server.  Why would
    this be?  and tje emails all satrt off with NTFS_...

    Hello,
    Same here as well. all mails were going to sitting in queue folder prefixed with NTFS_.
    Then I did a telnet {FQDN} 25
    helo {server FQDN} 
    mail from:{your email address} 
    rcpt to:{email address of email enabled library} 
    give 250 success code if everything looks great.
    In my case it gave me 
    501 5.5.4 
    then checked the SMTP Server Domain , was different then changed to correct one it worked fine. 
    Regards
    Yogesh
    YOGESHA H P(MCTS)

  • Error in when No file selected For Upload Form

    Is there a way to create an upload form that when no file is
    selected to be uploaded will not return an error message even if
    the submit button is clicked?
    Thanks,
    Craig

    h2ojefe wrote:
    > Sorry for the confusion. I guess the best way for me to
    describe it, is this.
    > The customer using the website decides on certain
    critieria whom he would like
    > to send a picture
    Send a picture where, by email, to the server?
    > by first conducting a query of about 20 names (each with
    a
    > unique ID) in a database. The names of the people
    meeting the sql select
    > statement are then populated in a table, where one row
    is the name, the second
    > row is the gender, and the third row is his/her own
    unique upload form that
    > will go into her/his own directory.
    If you upload the images to the same directory you can insert
    the name
    of the image into the database and use the same path for all
    images.
    Sorry, I'm really not understanding you here at all, I'm just
    not
    getting it, which may well be my fault.
    >
    > I would like each upload form to be a named derived from
    the unique ID of the
    > 20 names,
    You could set the name to the value of the ID column in your
    database.
    >including the unique upload directory. Does that make any
    more sense?
    > Let me know because I am soooooo close and you have been
    a big help so far.
    Still not sure why you need a unique upload directory, whats
    that for?
    Cheers jojo
    Adobe Community Expert for Dreamweaver 8
    http://www.webade.co.uk
    http://www.ukcsstraining.co.uk/
    Extending Knowledge, Daily.
    http://www.communityMX.com/
    Free 10 day trial
    http://www.communitymx.com/joincmx.cfm

  • First experiences with LR 5.0: manual file selection and  Adjustment Brush

    I must admit that I have not fiddled too long with LR 5.0. The reason is quite simple: its extreme slowness, even in comparison with 4.4, which is far from being fast. After slightly retouching some 40 images I fell back to 4.4 and finished testing 5.5 for a while. Anyway, in addition to the speed problem I have collected some - also not too promising - experiences:
    After initially retouching the first image I wanted to copy some of its settings into the rest of the photos. Before clicking on the Sync button I had to select all the target files. Probably because of the relatively small number of images, instead of going to the "Edit / Select All" function I used "Shift+Right Arrow" for the selection. LR simply crashed...
    In several cases I was not able to re-open and modify formerly 'adjustment-brushed' areas. When I moved the cursor above the relevant white 'knob-shaped' mark, nothing happened. The cursor did not even change to hand form, so the "Effect" panel remained dark and the formerly set parameters did not come up. As I kept the cursor there for ages and the image was not 'over-adjusted' (as also indicated by the small size of the associated XMP file), this failure was surely not a result of the above-referred slowness.
    Once I selected an already retouched image, with the Adjustment Brush tool open. The existing adjustment mark came up over a formerly brushed area. Then, without doing anything with the open image, I moved to the next picture. To my surprise, the Adjustment Brush marks of both photos appeared on the last opened image - the one, which belonged to the previous picture and another, associated with the second picture. It goes without saying that I was not able to click on any of the Adjustment Brush marks. Closing and re-opening the Adjustment Brush tool did not help, so I had to restart LR.

    I must admit that I have not fiddled too long with LR 5.0. The reason is quite simple: its extreme slowness, even in comparison with 4.4, which is far from being fast. After slightly retouching some 40 images I fell back to 4.4 and finished testing 5.5 for a while. Anyway, in addition to the speed problem I have collected some - also not too promising - experiences:
    After initially retouching the first image I wanted to copy some of its settings into the rest of the photos. Before clicking on the Sync button I had to select all the target files. Probably because of the relatively small number of images, instead of going to the "Edit / Select All" function I used "Shift+Right Arrow" for the selection. LR simply crashed...
    In several cases I was not able to re-open and modify formerly 'adjustment-brushed' areas. When I moved the cursor above the relevant white 'knob-shaped' mark, nothing happened. The cursor did not even change to hand form, so the "Effect" panel remained dark and the formerly set parameters did not come up. As I kept the cursor there for ages and the image was not 'over-adjusted' (as also indicated by the small size of the associated XMP file), this failure was surely not a result of the above-referred slowness.
    Once I selected an already retouched image, with the Adjustment Brush tool open. The existing adjustment mark came up over a formerly brushed area. Then, without doing anything with the open image, I moved to the next picture. To my surprise, the Adjustment Brush marks of both photos appeared on the last opened image - the one, which belonged to the previous picture and another, associated with the second picture. It goes without saying that I was not able to click on any of the Adjustment Brush marks. Closing and re-opening the Adjustment Brush tool did not help, so I had to restart LR.

Maybe you are looking for

  • Data doesn't come up in SQL database

    Hi, I have been trying add data to my local .mdf database through C#. My code executes successfully but the data doesn't come up when I view the table data through Server Explorer. My database is not read-only and I have set it to never copy the data

  • IPhone not showing up in devices list

    I have an iPhone 3Gs and a 27" iMac i7. I downloaded the remote app from the store, and the setup worked the first time I tried it. I added an AppleTV to this mix, and now the phone won't show up in the devices list (and can't find my library). The T

  • Sql * loader problem

    i have to export flat file into oracle 10g database table with same datatypes as created in MS Access but during load i am facing following errors i don't know why,how can i handle this situation where as i created flate file and control file in same

  • SAP ECC 6.0 EhP 7

    Hi, We have installed an ECC 6.0 with ehp7 and updated it via SUM . We need to activate the utilities solution so for doing that we need to update the IS-U from 600 to 617 . Problem is that this component doesn't appear on the MOPZ, so we have tried

  • Multiple Key Pressing

    When I hold Tab + w space doesn't work click (I have my controls set as this for a game). Is there anyway to make it so i can hold those two keys and have spacebar work? Im on a MacBook Pro Retina 13 inch with latest version of yosemite Thanks for th