Creating Linked File Directory Tree Using Spry?

Hey guys,
First post on help forums as I'll racking my brains tring to
find a way to do the following.
Basically I created a multimedia cd for my works data sheet
pdf's using dreamweaver CS and using spry horz menu wigets to
create links to files etc ... everything worked sweet and happy as
but now I have been asked to attempt one step further.
Basically what I am trying to acheve here create a HTML page
in dreamweaver containing a spry menu that links automaticlly to
all our work pdf doc's regarding our products on a network drive,
in case the drive sits here F:\sales\suppliers data sheets\
Inside this directory is extra diretorys containing the data
sheets ... e.g F:\sales\suppliers data
sheets\3M\3Mpaper\100grit.pdf ... F:\sales\suppliers data
sheets\3M\3Mpaper\150grit.pdf ... etc
Is there any way I can create a widget spry menu automaticlly
to capture all of these directories and files and display as a
linked tree?
I can do it manually but this would take forever ... ha-ha
I am hoping you undertsand what I mean ... basically I want
to make a html menu page which features a drop down menu sustem
where the sales guys can find the info much faster and easyer than
always exploring the drive.
Thanks in advance for any ideas or suggestions.
Muz (NZ)

Hey guys,
First post on help forums as I'll racking my brains tring to
find a way to do the following.
Basically I created a multimedia cd for my works data sheet
pdf's using dreamweaver CS and using spry horz menu wigets to
create links to files etc ... everything worked sweet and happy as
but now I have been asked to attempt one step further.
Basically what I am trying to acheve here create a HTML page
in dreamweaver containing a spry menu that links automaticlly to
all our work pdf doc's regarding our products on a network drive,
in case the drive sits here F:\sales\suppliers data sheets\
Inside this directory is extra diretorys containing the data
sheets ... e.g F:\sales\suppliers data
sheets\3M\3Mpaper\100grit.pdf ... F:\sales\suppliers data
sheets\3M\3Mpaper\150grit.pdf ... etc
Is there any way I can create a widget spry menu automaticlly
to capture all of these directories and files and display as a
linked tree?
I can do it manually but this would take forever ... ha-ha
I am hoping you undertsand what I mean ... basically I want
to make a html menu page which features a drop down menu sustem
where the sales guys can find the info much faster and easyer than
always exploring the drive.
Thanks in advance for any ideas or suggestions.
Muz (NZ)

Similar Messages

  • Creating a file to be used by report ROIUH_LOAD_JEINTF for journal entry

    Hello everyone,
    My doubt is related to the PRA module -
    I have to create a file to be used by program ROiUH_LOAD_JEINTF for journal entry creation. There are other programs also creating a similar file to what I am expected to create.
    When I observe the existing programs, they have not used OPEN DATASET statement, instead directly used the TRANSFER dataset and then CLOSE DATASET.
    What that does is it creates a file on the app server in a different format with only 1 line even if there may be like 10 lines of journal entry. The file mainly contains # which seems like some internal coding by the system.
    When I tried using the OPEN DATASET statement, it wrote all the lines to the app server that were there in my internal table.
    However, when I do not use the OPEN DATASET statement, it creates a file with just one line and maily # instead of the actual data from internal table.
    Can any one explain what difference does it make to the system when we do not use the OPEN DATASET statement.
    You help would be highly appreciated.
    Thanks and Regards,
    Shipra.

    Hello Satish,
    Thank you for your response.
    I think I was not clear enough about my doubt. I do not have any confusion about what OPEN DATASET would do.
    In my case, there is a file being written to the app server without using an OPEN DATASET for OUTPUT statement. The Z program directly calls a TRANSFER statement.
    The file that is created on the app server looks like:
    7042008-11-01                   000200100840 ######RD##################203               #### #####10012888                #####RI01            MC3                                                                               
    This file is used by the program ROIUH_LOAD_JEINTF. There are several lines in the internal table for Journal Entry creation but only 1 line shows in the file. However, when you debug the program ROIUH_LOAD_JEINTF with the above filename, you would see that it takes up all the JE lines that were passed from the previous program (the Z program) which created this file.
    However, when I changed the Z program to have an OPEN DATASET statement, it had all the lines displayed in the file, the file was very readable.
    I just wanted to know how does the system write to app server when no OPEN DATASET statement is written in the program.
    Hope I am clear this time. Thanks again.
    Regards,
    Shipra.

  • Transfer of all files in a directory tree using FTP adapter?

    Hi,
    I'm looking for a solution to transfer a whole directory tree, including the content, from one location to another using the FTP adapter.
    Is there an easy way to accomplish this?
    Any help would be appreciated.
    Thanks
    Sigrid

    Hi Sigrid,
    I'm just wondering on the need to do that using SOA. Is it a regular transfer or one time?
    There's a way to move a single file from one FTP location to another on the same or different FTP server (link to the cases). But in order to move all the files in a directory, you'll have to loop this. The high level steps will be:
    - List all the files recursively that are present in your directory using File List operation
    - Implement the MOVE file operation (or COPY operation) of the FTP Adapter
    - Invoke this MOVE operation in a while loop and pass the file names, as gathered from the File List operation, one by one to MOVE operation
    You can also use single Java Embedding activity and call a Java class that does the File Transfer but depends on your requirements.
    Let us know how you get along.
    Regards,
    Neeraj Sehgal

  • How to create/delete files from filesystem using PL/SQL ? UTL_FILE?

    Greetings,
    I will start by explaining what i intend to do.
    I have an application made in APEX. This application will have among other purposes the managment of pdf files which will reside in the filesystem.
    I have questioned the person in charge to keep the pdf files in the database and not in the filesystem but without success.
    So the pdf files reside in the filesystem and there is a record in a database table about them. A table keeps all info about the pdf, their location , size and name, creation date etc.
    The APEX application will have a mecanism to allow the deletion of the pdf files if an administrator decides.
    So it should be possible for an administrator to schedule the deletion of all pdf files whoe creation date is older than 2008 for example
    So, how can i achieve that?
    After some research i foudn about the UTL_FILE package which seems to have it takes to perform the task in issue.
    My idea was to have a script in the operating system which runs nightly and reads a file containing all file names of the pdf to be erased.
    The file which contains the names of the pdfs to be erased will be generated by the database a few minutes before.
    If there are no pds files to be erased than the file containing the names will simply be empty
    Are there any other viable solutions out there?
    And as for opening/creating the file withn the pdf names, i use:
    UTL_FILE.FOPEN (
    location IN VARCHAR2,
    filename IN VARCHAR2,
    open_mode IN VARCHAR2,
    max_linesize IN BINARY_INTEGER)
    RETURN file_type;
    And as for writing lines (a pdf name per line ), i use;
    UTL_FILE.PUT_LINE (
    file IN FILE_TYPE,
    buffer IN VARCHAR2,
    autoflush IN BOOLEAN DEFAULT FALSE);
    is there a better solution?
    thanks all.
    -> My Homepage <-
    Edited by: Igor Carrasco on Apr 14, 2009 3:11 PM
    Edited by: Igor Carrasco on Apr 14, 2009 3:12 PM

    Greetings,
    I have read that link above, some questions still though.
    I will provide some more information.
    -First the database is in a windows server.
    The windows server has a virtual drive mounted as z:\ <-- this points to a directory in virtual machine, i can manually access/create/delete files manually,i tested.
    -Second utl_file_dir is defined as * , in t that enough to cover mounted drives? ( i can't change the init.ora and reboot the db right now :( gotta wait.. )
    Do i explicitly have to define utfl_file_dir = z: ?
    -Third haven't had the chance to test it on linux or any other operating system, assuming a virtual unit is mounted successfully and that the issues above are solved i should be able to operate on any mounted drive whatever the os, right?
    Best regards

  • Creating a file on server, using Flash AS3 + PHP

    I have a very simple PHP script that creates a new file on my server using a random number for the file name (e.g., 412561.txt).  When I load the script directly from a browser, it works.  But when I load the script from a very simple Flash (AS3) script, it does not work (i.e., doesn't create a file).  The Flash script and PHP script are both in the same directory.  Permissions on the directory and its content are 755.  Temporarily setting those permissions to 777 does not solve the problem (i.e., PHP still doesn't create file when called via Flash).
    Here is my phpinfo.
    Here is the PHP file.
    The contents of the PHP file are:
    <?php
    error_reporting(E_ALL);
    ini_set("display_errors", 1);
    $RandomNumber = rand(1,1000000);
    $filename = "$RandomNumber" . ".txt";
    $filecontent = "This is the content of the file.";
    if(file_exists($filename))
              {$myTextFileHandler = fopen($filename,"r+"); }
    else
              {$myTextFileHandler = fopen($filename,"w"); }
    if($myTextFileHandler)
              {$writeInTxtFile = @fwrite($myTextFileHandler,"$filecontent");}     
    fclose($myTextFileHandler);   
    ?>
    Here is the html container for the Flash script.  The Flash script features a single button which calls the PHP script when pressed.  In case it helps, here is the raw Flash file itself.  The code of the Flash script is as follows:
    stop();
    var varLoader:URLLoader = new URLLoader;
    var varURL:URLRequest = new URLRequest("http://www.jasonfinley.com/research/testing/TestingSaveData.php");
    btnSave.addEventListener(MouseEvent.CLICK,fxnSave);
    function fxnSave(event:MouseEvent):void{
              btnSave.enabled=false;
              varLoader.load(varURL);
    Directory listing is enabled at the parent directory here, so you can see there when a new text file is created or not.  (Um, if this is a security disaster, please let me know!)
    Can anyone please help me understand why this isn't working and how I can fix it?  Thank you
    ~jason

    #1, Yes that is a security risk, please disable directory index viewing.
    #2, Always validate. I see no issue with the code you're using but clearly it's not working. The way you find out is your trusty errors.
    Make a new document (or paste this into your existing) where a button with the instance name btnSave is on screen:
    // import required libs
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.events.IOErrorEvent;
    import flash.events.MouseEvent;
    import flash.events.SecurityErrorEvent;
    import flash.text.TextField;
    // assign handler
    btnSave.addEventListener(MouseEvent.CLICK, fxnSave);
    // make a textfield to display status
    var tf:TextField = new TextField();
    addChild(tf);
    tf.width = stage.stageWidth;
    tf.height = 300;
    tf.multiline = true;
    tf.wordWrap = true;
    tf.selectable = false;
    tf.text = "Loading...\n";
    // just making sure the textfield is below the button
    this.swapChildren(tf,btnSave);
    function fxnSave(event:MouseEvent):void
        // disable button
        event.currentTarget.enabled = false;
        // new loader
        var varLoader:URLLoader = new URLLoader();
        // listen for load success
        varLoader.addEventListener(Event.COMPLETE, _onCompleteHandler);
        // listen for general errors
        varLoader.addEventListener(IOErrorEvent.IO_ERROR, _onErrorHandler);
        // listen for security / cross-domain errors
        varLoader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, _onErrorHandler);
        // perform load
        varLoader.load(new URLRequest("http://www.jasonfinley.com/research/testing/TestingSaveData.php"));
    // complete handler
    function _onCompleteHandler(e:Event):void
        tf.appendText("Load complete: " + e);
    // error handler
    function _onErrorHandler(e:Event)
        if (e.type == SecurityErrorEvent.SECURITY_ERROR)
            tf.appendText("Load failed, Security error: " + e + " type[" + e.type + "]");
        else if (e.type == IOErrorEvent.IO_ERROR)
            tf.appendText("Load failed, IO error: " + e + " type[" + e.type + "]");
    I get a Event.COMPLETE for mine, so the PHP script is definitely firing. Change the URL to something invalid and you'll see the IOErrorEvent fire off right away.
    That leaves you to diagnose the PHP script. Check your error_log and see what is going wrong. You're suppressing errors on your file write which doesn't help you locate the issue saving the file. If you want to handle errors yourself you should do the usual try/catch and handle the error yourself (write a debug log file, anything).

  • Get the file directory/location using JFileChooser

    Dear,
    How to get the file directory and it location with using JFilechooser after select the indicate file?
    Thanks

    There is an example at the top of JFileChooser's doc.
    http://java.sun.com/j2se/1.4.1/docs/api/javax/swing/JFileChooser.html

  • Creating PDF file in XI using iText

    Hi all,
    I am trying to create a PDF file in XI using itext. The PDF file is getting created in my target ftp server but I am not able to open the PDF. It is throwing the below error while opening.
    "Adobe Reader could not open the sample.pdf because it is either not a supported file or because the file has been damaged(for example,it was sent as an e mail attachment and wasn't correctly decoded)"
    I am using the below code in my udf
    String filename= "Sample.pdf";
    try
    Document document= new Document();
    PdfWriter pdfwriter=PdfWriter.getInstance(document,new FileOutputStream(filename));
    document.open();
    document.add(new Paragraph("Hi How are you?"));
    document.close();
    DynamicConfiguration conf = (DynamicConfiguration) container
           .getTransformationParameters()
           .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "FileName");
    conf.put(key,filename);
    catch(Exception e)
    return "";
    Kindly let me know if you have any information on this.
    With Regards
    jaisu.
    Edited by: jaisu118 on Feb 12, 2010 8:04 AM

    hi,
    I had used custom adapter module for creating the PDF file.
    you have to use java mapping if you want to create pdf without using adapter module.
    You need to import iText library available at http://itextpdf.com/.
    How to use external jar files ??
    External Jar files in UDF
    code may look like this:
    import java.io.BufferedReader;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.Reader;
    //1. AbstractTransformation class is imported.
    // The associated jar file is: com.sap.xpi.ib.mapping.lib.jar
    import com.sap.aii.mapping.api.AbstractTransformation;
    import  com.sap.aii.mapping.api.DynamicConfiguration;
    import com.sap.aii.mapping.api.DynamicConfigurationKey;
    import com.sap.aii.mapping.api.StreamTransformationException;
    import com.sap.aii.mapping.api.TransformationInput;
    import com.sap.aii.mapping.api.TransformationOutput;
    import com.sap.aii.mapping.api.InputHeader;
    public class xyz extends AbstractTransformation {
    public void transform(TransformationInput inp, TransformationOutput out) throws StreamTransformationException {
         getTrace().addInfo("JAVA Mapping Called");
                         InputStream inData = inp.getInputPayload().getInputStream();
                        // pdf conversion code
                        out.getOutputPayload().getOutputStream().write(outData.getBytes("UTF-8"));
    check http://help.sap.com/javadocs/pi/SP3/xpi/index.html for java mapping api.
    Thanks.

  • How to create links and how to use that links to go to other pages?

    my question is....how to create links...i mean by using make link option.....when we do right click on a word,etc in the design view.....and my other question is.....how to use that links to go to other pages.....i mean when i click on a link...it takes me to another web page.....

    Please do not post the same subject to more than one forum.

  • Creating a replacement for Timeline using Spry & Javascript

    I am using Spry and Javascript to create a set of images that appear and fade after time - like a slideshow.
    I want to be able to REPEAT the whole slideshow in a loop but have had no success.
    Any ideas? or ideally a SIMPLER way of doing the whole thing!
    Here is a cut down version of the script / source code:
    <script src="SpryEffects.js" type="text/javascript"></script>
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_goToURL() { //v3.0
      var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
      for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
    function MM_effectAppearFade(targetElement, duration, from, to, toggle)
    Spry.Effect.DoFade(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
    function fade1(thetime) { setTimeout("MM_effectAppearFade('homePagePic1', 3000, 100, 0, false)", thetime);
    function show2(thetime) { setTimeout("MM_effectAppearFade('homePagePic2', 3000, 0, 100, false)", thetime);
    function fade2(thetime) { setTimeout("MM_effectAppearFade('homePagePic2', 3000, 100, 0, false)", thetime);
    function show3(thetime) { setTimeout("MM_effectAppearFade('homePagePic3', 3000, 0, 100, false)", thetime);
    function fade3(thetime) { setTimeout("MM_effectAppearFade('homePagePic3', 3000, 100, 0, false)", thetime);
    function show4(thetime) { setTimeout("MM_effectAppearFade('homePagePic4', 3000, 0, 100, false)", thetime);
    function fade4(thetime) { setTimeout("MM_effectAppearFade('homePagePic4', 3000, 100, 0, false)", thetime);
    function show5(thetime) { setTimeout("MM_effectAppearFade('homePagePic5', 3000, 0, 100, false)", thetime);
    function fade5(thetime) { setTimeout("MM_effectAppearFade('homePagePic5', 3000, 100, 0, false)", thetime);
    function show6(thetime) { setTimeout("MM_effectAppearFade('homePagePic6', 3000, 0, 100, false)", thetime);
    function fade6(thetime) { setTimeout("MM_effectAppearFade('homePagePic6', 3000, 100, 0, false)", thetime);
    function show7(thetime) { setTimeout("MM_effectAppearFade('homePagePic7', 3000, 0, 100, false)", thetime);
    function fade7(thetime) { setTimeout("MM_effectAppearFade('homePagePic7', 3000, 100, 0, false)", thetime);
    function show8(thetime) { setTimeout("MM_effectAppearFade('homePagePic8', 3000, 0, 100, false)", thetime);
    function fade8(thetime) { setTimeout("MM_effectAppearFade('homePagePic8', 3000, 100, 0, false)", thetime);
    function show9(thetime) { setTimeout("MM_effectAppearFade('homePagePic9', 3000, 0, 100, false)", thetime);
    function fade9(thetime) { setTimeout("MM_effectAppearFade('homePagePic9', 3000, 100, 0, false)", thetime);
    function show1(thetime) { setTimeout("MM_effectAppearFade('homePagePic1', 3000, 0, 100, false)", thetime);
    //-->
    </script>
    </head>
    <body onload="MM_preloadImages('images/home/071103wc211289.jpg','images/navigation/navigation_0 5OVER.gif','images/navigation/navigation_06OVER.gif','images/navigation/navigation_07OVER. gif','images/navigation/navigation_08OVER.gif','images/navigation/navigation_09OVER.gif',' images/navigation/navigation_05.gif','images/navigation/navigation_06.gif','images/navigat ion/navigation_07.gif','images/navigation/navigation_08.gif','images/navigation/navigation _09.gif','images/home/071103wc211347.jpg','images/home/071103wc211398.jpg','images/home/07 1103wc211391.jpg','images/home/P3280465websize.jpg','images/home/090320wc223207.jpg','imag es/home/071213wc214342.jpg','images/home/090320wc223152.jpg');
    fade1('5000');show2('5500');
    fade2('15000');show3('15500');
    fade3('25000');show4('25500');
    fade4('35000');show5('35500');
    fade5('45000');show6('45500');
    fade6('55000');show7('55500');
    fade7('65000');show8('65500');
    fade8('75000');show9('75500');
    fade9('85000');show1('85500');
    ">
    [Moved by moderator to Spry forum]

    Thank you for your suggestions.
    The problem with the pre-formatted slide shows is that they have the horribly clunky panel of thumbnails and the ugly animated resizing of photos. All of which have been seem on loads of other sites.
    I am looking for just the enlarged images to change through pre-determined time intervals then repeat in a loop.
    The images FIT into the design of the page - there is no need for the other panel of thumbnails.
    Hope this clarifies things!
    I JUST WANT TO LOOP THE SPRY EFFECTS nothing more.

  • How to disable - General preference - Create links from URLs. Using Acrobat Javascript

    http:\\www.sdss.com should not be suggested as a link. We have manual option to uncheck -> Create links from URLs, but I need to achieve this through the script.
    Please help on this ASAP.

    That is an end user preference only. Not accessible by JavaScript. If you control the installation, then you can turn off that option for the installation but the user could still turn it back on.

  • Using mail payload to create target file directory

    Hi Folks
    I have a scenario where I need to get email attachments and place them in a folder structure based on text written in the subject field of the original payload.
    My current setup is:
    Sender:
    Mail adapter using PayloadSwapBean module in order to get the attached .csv file in the mails.
    Receiver:
    Plain File adapter currently pointing  to a specific destination.
    I would like to use the Subject field from the original payload (MailMessage), but as I use the PayloadSwapBean, the payload is swapped to MailAttachment-1 in which I dont have subject information.
    Now the question is: Is it possible to get this information and then use it in e.g Adapter Specific Message Attributes  of the receiver channel, AND still swap the payload to put the  attachment in the folder created?
    Please let me know if something needs clarification
    Thanks,
    Chris

    Hi Chris,
    you pick the email and use the ASMA to read email subject. then you can use AF module to put email subject value to directory variable. then use the variable in receiver file adapter.
    refer the below blog
    Combining three different aspects of PI (ASMA, AF Module and variable substitution) in one shot
    regards,
    Harish

  • How do I create links between two pdfs using FrameMaker 9, while both files remain open?

    In FrameMaker 9 is there a way to create cross reference to a particular page on another doc (without closing the current/source doc)?
    I tried using "openpage filename:pagenumber" option, the link takes me to page 1 of the referenced doc not to the specified page, and as it is a hyper link when page 1 of the referenced doc gets displayed the souce doc closes.
    When a link is clicked in the source doc, it is required that the source doc remians open.
    This is an urgent requirement, can anyone please reply soon?

    I think you've already asked this in this thread - http://forums.adobe.com/message/5613200#5613200 - and it's been answered there.

  • Can we create pdf files from oracle using UTL FILE

    i have sample code---
    create or replace procedure UTLTEST as
    f1 utl_file.file_type;
    begin
    -- Open a file in write mode
    f1 := utl_file.fopen('UTL_FILE_DIR1','NEWFILE.pdf','W');
    -- Write a line to a file
    utl_file.put_line(f1,'1. This is a test of UTL_FILE packages');
    utl_file.put_line(f1,'2. Oracle has added a new procedures in the package');
    utl_file.put_line(f1,'3. We will see all the procedure one by one');
    -- Close a file
    utl_file.fclose(f1);
    end;
    file is created but when i opened it ,it gives me error that file can not open
    is there any way to do it?

    Hi!
    you can see the following link ---
    http://forums.oracle.com/forums/search.jspa?threadID=&q=how+to+create+pdf+from+pl+sql&objID=f75&dateRange=all&userID=&numResults=15 .
    And also -- http://www.plpdf.com/ .
    Hope this will help u a bit.
    Regards.
    Satyaki De.

  • How to open link in new tab using Spry?

    Does anyone know how to open menu web links in a new tab
    (instead of opening a new window - IE7) using the Spry horizontal
    dropdown menu? I tried putting "_tab" in the target field but it
    doesn't seem to work. Thanks!

    drstall wrote:
    > Does anyone know how to open menu web links in a new tab
    (instead of opening a
    > new window - IE7) using the Spry horizontal dropdown
    menu? I tried putting
    > "_tab" in the target field but it doesn't seem to work.
    Thanks!
    Opening new windows in a new tab is a setting within the IE7
    preferences ( and I'd assume 8 too ) and as far as I'm aware there
    is no control over this setting from within the HTML/JavaScript of
    the web page to do what you are asking. If you use _blank and the
    user has the appropriate setting in their browser, then it will
    open in a new tab, not in a new window.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • How to create links to other solutions using C# MVC?

    I am creating a project with multiple solutions. I used MVC Framework. I have a problem on creating a link  for other solutions I added in the project. I'd like to include each solution to be executed in each tab that when I click one tab one solution
    will open. Is it possible? If possible, how can i create a link to access and execute other solutions?
    @rch13

    Hello,
    Specifically, this should be asked in the
    ASP.Net MVC forum on forums.asp.net.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Maybe you are looking for