IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

ASP.NET Discussion :

Problème ouvrir un lien dans une autre fenêtre ok avec IE, KO avec firefox


Sujet :

ASP.NET

  1. #1
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut Problème ouvrir un lien dans une autre fenêtre ok avec IE, KO avec firefox
    Bonjour,

    Voici mon code pour ouvrir un lien dans une autre fenêtre :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <td><asp:HyperLink ID="HyperLink2" runat="server" NavigateUrl='<%# Eval("Chemin") %>' Target=_blank ImageUrl="Images/see24.gif">Lien</asp:HyperLink></td>
    Je souhaite ouvrir le répertoire ou un fichier qui est "Chemin" dans une nouvelle fenêtre (lien venant d'une base de données).
    Cela marche parfaitement avec IE mais avec firefox, c'est le drame, il m'ouvre un autre onglet en concaténant l'URL de l'application et le lien "chemin" (ex : http://srv-dev-05/Portail_Documentat...mplifiees.xsl\)

    J'ai essayé avec windows.open en javascript mais ca ne fonctionne pas non plus :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <td><asp:HyperLink ID="HyperLink2" runat="server" onClick='<%# "javascript:window.open(" + Eval("Chemin") + ");" %>' Target=_blank imageUrl="Images/see24.gif">Lien</asp:HyperLink></td>

    Je débute en ASP .NET et je ne connais pas bcp javascript, pouvez-vous m'aider ou m'indiquer une solution de contournement pour que cela marche sur les 2 navigateurs svp ?


    Merci d'avance,
    Breizou

  2. #2
    Membre émérite
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Avril 2006
    Messages
    1 627
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2006
    Messages : 1 627
    Points : 2 331
    Points
    2 331
    Par défaut
    Encadre _blank entre guillemets pour voir !

  3. #3
    Rédacteur
    Avatar de David55
    Homme Profil pro
    Ingénieur informatique
    Inscrit en
    Août 2010
    Messages
    1 542
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 34
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Août 2010
    Messages : 1 542
    Points : 2 808
    Points
    2 808
    Par défaut
    Avec des guillemet ca devrai passer!

    Exemple du site w3c:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    <asp:ListItem Text="lien" Target="_blank"
      Value="http://www.lien.com/" />

  4. #4
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut
    non, j'ai toujours le problème

  5. #5
    Membre émérite
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Avril 2006
    Messages
    1 627
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2006
    Messages : 1 627
    Points : 2 331
    Points
    2 331
    Par défaut
    Que donne le html de ton lien ? Poste-le stp !

  6. #6
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut
    "http://localhost:1222/Portail_Documentation/\\clichy\devel\EquipeSIDEV\AccordsClient.xls"


    Sur IE, pas de probleme, il me l'ouvre dans une nouvelle fenetre...

  7. #7
    Membre émérite
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Avril 2006
    Messages
    1 627
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2006
    Messages : 1 627
    Points : 2 331
    Points
    2 331
    Par défaut
    Le code source du lien me suffit, de plus je vais avoir du mal à afficher ta page...

  8. #8
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
     
    <html>
        <head>
            <title>Bad Request</title>
            <style>
            	body {font-family:"Verdana";font-weight:normal;font-size: 8pt;color:black;} 
            	p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
            	b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
            	h1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
            	h2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
            	pre {font-family:"Lucida Console";font-size: 8pt}
            	.marker {font-weight: bold; color: black;text-decoration: none;}
            	.version {color: gray;}
            	.error {margin-bottom: 10px;}
            	.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
            </style>
        </head>
        <body bgcolor="white">
     
                <span><h1>Erreur du serveur dans l'application '/Portail_Documentation'.<hr width=100% size=1 color=silver></h1>
     
                <h2> <i>Erreur HTTP 400 - Bad Request.</i> </h2></span>
     
                <hr width=100% size=1 color=silver>
     
                <b>Informations sur la version :</b>&nbsp;Serveur de développement ASP.NET 8.0.0.0
     
                </font>
     
        </body>
    </html>

  9. #9
    Membre émérite
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Avril 2006
    Messages
    1 627
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2006
    Messages : 1 627
    Points : 2 331
    Points
    2 331
    Par défaut
    AU dernier tour tu colles une url en localhost, et là le code source d'une page d'erreur classique IIS... Effet kiskool vendredi soir ?

  10. #10
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut
    excuse moi, je suis un peu fatigué ce soir...
    Voici mon code source :


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
        <asp:FormView ID="FormView1" runat="server" CellPadding="4" DataKeyNames="Id_Documentations"
            DataSourceID="SqlDataSource1" ForeColor="Black" DefaultMode="Edit" Width="100%" OnLoad="FormView1_Load" >
            <EditItemTemplate>
                <table class="tableNew">
                <tr>
                    <th>Titre :</th>
                    <td>
                        <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="Le titre du document est obligatoire." ControlToValidate="TextBox1" ValidationGroup="formview"> *</asp:RequiredFieldValidator>
                        <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("Titre") %>'></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <th>Documentations :</th>
                    <td><asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("Chemin_Documentations") %>'></asp:TextBox></td>
                    <td><asp:HyperLink ID="HyperLink1" runat="server" onClick='<%# "javascript:window.open(\"" + String2HTML(Eval("Chemin_Documentations").ToString()) + "\");" %>'
                            Target=_blank ImageUrl="Images/see24.gif">Lien</asp:HyperLink></td>
                </tr>
                <tr>
                    <th>Auteur :</th>
                    <td><asp:DropDownList ID="DropDownList6" runat="server" DataSourceID="SqlDataSource2"
                        DataTextField="NomAbrege" DataValueField="Id_Auteur" SelectedValue='<%# Bind("Id_Auteur") %>' AutoPostBack="True">
                        </asp:DropDownList></td>
                </tr>
                <tr>
                    <th>Executable :</th>
                    <td><asp:TextBox ID="TextBox3" runat="server" Text='<%# Bind("Chemin_Exe") %>'></asp:TextBox></td>
                    <td><asp:listitem</td>
                </tr>
                <tr>
                    <th>Source :</th>
                    <td><asp:TextBox ID="TextBox4" runat="server" Text='<%# Bind("Chemin_Source") %>'></asp:TextBox></td>
                    <td><asp:HyperLink ID="HyperLink3" runat="server" NavigateUrl='<%# Eval("Chemin_Source") %>' Target=_blank ImageUrl="Images/see24.gif">Lien</asp:HyperLink></td>
                </tr>
                <tr>
                    <th>Divers :</th>
                    <td><asp:TextBox ID="TextBox5" runat="server" Text='<%# Bind("Chemin_Specifique") %>'></asp:TextBox></td>
                    <td><asp:HyperLink ID="HyperLink4" runat="server" NavigateUrl='<%# Eval("Chemin_Specifique") %>' Target=_blank ImageUrl="Images/see24.gif">Lien</asp:HyperLink></td>
                </tr>
                <tr>
                    <th>Catégories :</th>
                    <td><asp:DropDownList ID="DropDownList4" runat="server" DataSourceID="SqlDataSource3"
                        DataTextField="Categories" DataValueField="Id_Categories" SelectedValue='<%# bind("Id_Categories") %>'>
                        </asp:DropDownList></td>
                </tr>
                <tr>
                    <th>Sous-catégories:</th>
                    <td><asp:DropDownList ID="DropDownList5" runat="server" DataSourceID="SqlDataSource4"
                        DataTextField="Sous_Categories" DataValueField="Id_Sous_Categories" SelectedValue='<%# bind("Id_Sous_Categories") %>'>
                        </asp:DropDownList></td>
                </tr>
                <tr>
                    <td>
                        </td><td><br/>
                        <asp:ImageButton ID="ImageButton2" runat="server" CommandName="Update" Width=24px ImageUrl="Images/ok24.gif" ValidationGroup="formview" AlternateText="Mettre à jour" />&nbsp; &nbsp; &nbsp;
                        <asp:ImageButton ID="ImageButton3" runat="server" CommandName="Cancel" Width=24px ImageUrl="Images/cancel24.gif" AlternateText="Annuler" />
                    </td>
                </tr>
                </table>
            </EditItemTemplate>
            <EditRowStyle BackColor="Gray" />
        </asp:FormView>

  11. #11
    Membre émérite
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Avril 2006
    Messages
    1 627
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2006
    Messages : 1 627
    Points : 2 331
    Points
    2 331
    Par défaut
    Citation Envoyé par Arnard Voir le message
    Le code source du lien me suffit, de plus je vais avoir du mal à afficher ta page...
    Arf, l'ambiguïté, je parlais du code source du lien généré dans la page html au final quand tu affiches dans ton browser

  12. #12
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut
    Citation Envoyé par Arnard Voir le message
    Arf, l'ambiguïté, je parlais du code source du lien généré dans la page html au final quand tu affiches dans ton browser
    Est-ce que c'est ca que tu veux ?


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head><title>
    	Portail documentation
    </title><link href="PortailDocumentation.css" type="text/css" rel="stylesheet" /><style type="text/css">
    	.ctl00_Menu1_0 { background-color:white;visibility:hidden;display:none;position:absolute;left:0px;top:0px; }
    	.ctl00_Menu1_1 { color:White;font-weight:bold;text-decoration:none; }
    	.ctl00_Menu1_2 { color:White;background-color:Black;font-weight:bold;width:100%; }
    	.ctl00_Menu1_3 { color:Red; }
    	.ctl00_Menu1_4 {  }
    	.ctl00_Menu1_5 { color:Red; }
    	.ctl00_Menu1_6 { color:Red; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_0 { font-weight:normal;text-decoration:none; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_1 { color:Black;font-family:Tahoma;font-size:X-Small;font-weight:normal; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_2 { padding:0px 5px 0px 5px; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_3 { color:Black; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_4 {  }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_5 { color:Black;font-weight:normal; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_6 {  }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_7 { color:Black; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_8 {  }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_9 { color:Red;text-decoration:underline; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_10 { padding:0px 0px 0px 0px; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_11 { color:Black;text-decoration:underline; }
    	.ctl00_WebUsrCtlTreeView1_TreeView1_12 { color:Black;text-decoration:underline; }
     
    </style></head>
    <body>
        <div align="center">
            <form name="aspnetForm" method="post" action="frmNouveau.aspx?Id_Documentations=29" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">
    <div>
    <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
    <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
    <input type="hidden" name="ctl00_WebUsrCtlTreeView1_TreeView1_ExpandState" id="ctl00_WebUsrCtlTreeView1_TreeView1_ExpandState" value="ennennnnn" />
    <input type="hidden" name="ctl00_WebUsrCtlTreeView1_TreeView1_SelectedNode" id="ctl00_WebUsrCtlTreeView1_TreeView1_SelectedNode" value="" />
    <input type="hidden" name="ctl00_WebUsrCtlTreeView1_TreeView1_PopulateLog" id="ctl00_WebUsrCtlTreeView1_TreeView1_PopulateLog" value="" />
    <input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="" />
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
    </div>
     
    <script type="text/javascript">
    <!--
    var theForm = document.forms['aspnetForm'];
    if (!theForm) {
        theForm = document.aspnetForm;
    }
    function __doPostBack(eventTarget, eventArgument) {
        if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
            theForm.__EVENTTARGET.value = eventTarget;
            theForm.__EVENTARGUMENT.value = eventArgument;
            theForm.submit();
        }
    }
    // -->
    </script>
     
     
    <script src="/Portail_Documentation/WebResource.axd?d=aiJqHE9rbe9GN6pZm6N1WQ2&amp;t=634278537284101250" type="text/javascript"></script>
     
     
    <script src="/Portail_Documentation/WebResource.axd?d=SsJHJRhUd7B4JzQ6qUmczw2&amp;t=634278537284101250" type="text/javascript"></script>
    <script src="/Portail_Documentation/WebResource.axd?d=mZPw7UEFn1flXkBKZ_zQIA2&amp;t=634278537284101250" type="text/javascript"></script>
    <script>
    <!--
        function TreeView_PopulateNodeDoCallBack(context,param) {
            WebForm_DoCallback(context.data.treeViewID,param,TreeView_ProcessNodeData,context,TreeView_ProcessNodeData,false);
        }
    // -->
    </script>
     
    <script src="/Portail_Documentation/WebResource.axd?d=latPuThGaW-1iMPRZ3fwLbGlITLvLMBz6xnQqBNdOZY1&amp;t=634278537284101250" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    function WebForm_OnSubmit() {
    if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false;
    return true;
    }
    // -->
    </script>
     
                <table class="TableHaut">
                    <tr>
                        <td style="vertical-align: top;">
                            <input type="image" name="ctl00$ImageButtonLogo" id="ctl00_ImageButtonLogo" class="ImageButtonLogo" src="Images/SGSS-EVL3.jpg" align="left" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$ImageButtonLogo&quot;, &quot;&quot;, false, &quot;&quot;, &quot;frmAccueil.aspx&quot;, false, false))" style="border-width:0px;" />
                        </td>
                        <td style="text-align: center; font-weight: bold; font-style: italic; font-family: 'Times New Roman'; text-decoration: underline; font-size: xx-large; vertical-align: bottom;">
                            <span id="ctl00_Label1">Portail de documentation</span>
                        </td>
                        <td style="text-align: right;">
                            <img id="ctl00_Image1" src="Images/PhotoEVL.jpg" style="border-width:0px;" />
                        </td>
                    </tr>
                </table>
                <br />
                <table class="TableMenu">
                    <tr>
                        <td>
                            <a href="#ctl00_Menu1_SkipLink"><img alt="Ignorer les liens de navigation" src="/Portail_Documentation/WebResource.axd?d=JeiuwT4P1vnuaF4GfqsmQw2&amp;t=634278537284101250" width="0" height="0" style="border-width:0px;" /></a><table id="ctl00_Menu1" class="ctl00_Menu1_2" cellpadding="0" cellspacing="0" border="0" style="text-align: center">
    	<tr>
    		<td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" id="ctl00_Menu1n0"><table cellpadding="0" cellspacing="0" border="0" width="100%">
    			<tr>
    				<td style="white-space:nowrap;"><a class="ctl00_Menu1_1" href="frmAccueil.aspx">Accueil</a></td>
    			</tr>
    		</table></td><td style="width:3px;"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" id="ctl00_Menu1n1"><table cellpadding="0" cellspacing="0" border="0" width="100%">
    			<tr>
    				<td style="white-space:nowrap;"><a class="ctl00_Menu1_1" href="frmNouveau.aspx?FormView_Mode=Insert">Nouveau document</a></td>
    			</tr>
    		</table></td><td style="width:3px;"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" id="ctl00_Menu1n2"><table cellpadding="0" cellspacing="0" border="0" width="100%">
    			<tr>
    				<td style="white-space:nowrap;"><a class="ctl00_Menu1_1" href="frmAuteurs.aspx">Auteurs</a></td>
    			</tr>
    		</table></td><td style="width:3px;"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" id="ctl00_Menu1n3"><table cellpadding="0" cellspacing="0" border="0" width="100%">
    			<tr>
    				<td style="white-space:nowrap;"><a class="ctl00_Menu1_1" href="frmCategories.aspx">Catégories</a></td>
    			</tr>
    		</table></td><td style="width:3px;"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" id="ctl00_Menu1n4"><table cellpadding="0" cellspacing="0" border="0" width="100%">
    			<tr>
    				<td style="white-space:nowrap;"><a class="ctl00_Menu1_1" href="frmSousCategories.aspx">Sous-catégories</a></td>
    			</tr>
    		</table></td>
    	</tr>
    </table><a id="ctl00_Menu1_SkipLink"></a>
                            &nbsp; &nbsp;
                        </td>
                    </tr>
                </table>
                <br />
                <table class="Table3">
                    <tr>
                        <td class="TdG">
                            <input id="ctl00_WebUsrCtlTreeView1_CheckBox1" type="checkbox" name="ctl00$WebUsrCtlTreeView1$CheckBox1" /><label for="ctl00_WebUsrCtlTreeView1_CheckBox1">Vérifier les liens</label>
    <br />
    <br />
    <a href="#ctl00_WebUsrCtlTreeView1_TreeView1_SkipLink"><img alt="Ignorer les liens de navigation." src="/Portail_Documentation/WebResource.axd?d=JeiuwT4P1vnuaF4GfqsmQw2&amp;t=634278537284101250" width="0" height="0" style="border-width:0px;" /></a><div id="ctl00_WebUsrCtlTreeView1_TreeView1" style="font-weight:normal;">
    	<table cellpadding="0" cellspacing="0" style="border-width:0;">
    		<tr>
    			<td><a id="ctl00_WebUsrCtlTreeView1_TreeView1n0" href="javascript:TreeView_ToggleNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data,0,ctl00_WebUsrCtlTreeView1_TreeView1n0,' ',ctl00_WebUsrCtlTreeView1_TreeView1n0Nodes)"><img src="/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjBKv-QMWka-AMl9AGuij3141&amp;t=634278537284101250" alt="Réduire LISTE DOCUMENTS" style="border-width:0;" /></a></td><td class="ctl00_WebUsrCtlTreeView1_TreeView1_2 ctl00_WebUsrCtlTreeView1_TreeView1_4" onmouseover="TreeView_HoverNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this)" onmouseout="TreeView_UnhoverNode(this)" style="white-space:nowrap;"><a class="ctl00_WebUsrCtlTreeView1_TreeView1_0 ctl00_WebUsrCtlTreeView1_TreeView1_1 ctl00_WebUsrCtlTreeView1_TreeView1_3" href="javascript:__doPostBack('ctl00$WebUsrCtlTreeView1$TreeView1','s0')" onclick="TreeView_SelectNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this,'ctl00_WebUsrCtlTreeView1_TreeView1t0');" id="ctl00_WebUsrCtlTreeView1_TreeView1t0">LISTE DOCUMENTS</a></td>
    		</tr><tr style="height:0px;">
    			<td></td>
    		</tr>
    	</table><div id="ctl00_WebUsrCtlTreeView1_TreeView1n0Nodes" style="display:block;">
    		<table cellpadding="0" cellspacing="0" style="border-width:0;">
    			<tr style="height:0px;">
    				<td></td>
    			</tr><tr>
    				<td><div style="width:20px;height:1px"></div></td><td><img src="/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjHbw3k4trSeOMvllueQoPFY1&amp;t=634278537284101250" alt="" /></td><td class="ctl00_WebUsrCtlTreeView1_TreeView1_2 ctl00_WebUsrCtlTreeView1_TreeView1_8" onmouseover="TreeView_HoverNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this)" onmouseout="TreeView_UnhoverNode(this)" style="white-space:nowrap;"><a class="ctl00_WebUsrCtlTreeView1_TreeView1_0 ctl00_WebUsrCtlTreeView1_TreeView1_1 ctl00_WebUsrCtlTreeView1_TreeView1_7" href="javascript:__doPostBack('ctl00$WebUsrCtlTreeView1$TreeView1','s0\\31')" onclick="TreeView_SelectNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this,'ctl00_WebUsrCtlTreeView1_TreeView1t1');" id="ctl00_WebUsrCtlTreeView1_TreeView1t1">OUTILS</a></td>
    			</tr><tr style="height:0px;">
    				<td></td>
    			</tr>
    		</table><table cellpadding="0" cellspacing="0" style="border-width:0;">
    			<tr style="height:0px;">
    				<td></td>
    			</tr><tr>
    				<td><div style="width:20px;height:1px"></div></td><td><img src="/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjHbw3k4trSeOMvllueQoPFY1&amp;t=634278537284101250" alt="" /></td><td class="ctl00_WebUsrCtlTreeView1_TreeView1_2 ctl00_WebUsrCtlTreeView1_TreeView1_8" onmouseover="TreeView_HoverNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this)" onmouseout="TreeView_UnhoverNode(this)" style="white-space:nowrap;"><a class="ctl00_WebUsrCtlTreeView1_TreeView1_0 ctl00_WebUsrCtlTreeView1_TreeView1_1 ctl00_WebUsrCtlTreeView1_TreeView1_7" href="javascript:__doPostBack('ctl00$WebUsrCtlTreeView1$TreeView1','s0\\40')" onclick="TreeView_SelectNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this,'ctl00_WebUsrCtlTreeView1_TreeView1t2');" id="ctl00_WebUsrCtlTreeView1_TreeView1t2">EN ATTENTE DE CLASSEMENT</a></td>
    			</tr><tr style="height:0px;">
    				<td></td>
    			</tr>
    		</table><table cellpadding="0" cellspacing="0" style="border-width:0;">
    			<tr style="height:0px;">
    				<td></td>
    			</tr><tr>
    				<td><div style="width:20px;height:1px"></div></td><td><a id="ctl00_WebUsrCtlTreeView1_TreeView1n3" href="javascript:TreeView_ToggleNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data,3,ctl00_WebUsrCtlTreeView1_TreeView1n3,' ',ctl00_WebUsrCtlTreeView1_TreeView1n3Nodes)"><img src="/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjBKv-QMWka-AMl9AGuij3141&amp;t=634278537284101250" alt="Réduire OLDIES" style="border-width:0;" /></a></td><td class="ctl00_WebUsrCtlTreeView1_TreeView1_2 ctl00_WebUsrCtlTreeView1_TreeView1_6" onmouseover="TreeView_HoverNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this)" onmouseout="TreeView_UnhoverNode(this)" style="white-space:nowrap;"><a class="ctl00_WebUsrCtlTreeView1_TreeView1_0 ctl00_WebUsrCtlTreeView1_TreeView1_1 ctl00_WebUsrCtlTreeView1_TreeView1_5" href="javascript:__doPostBack('ctl00$WebUsrCtlTreeView1$TreeView1','s0\\41')" onclick="TreeView_SelectNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this,'ctl00_WebUsrCtlTreeView1_TreeView1t3');" id="ctl00_WebUsrCtlTreeView1_TreeView1t3">OLDIES</a></td>
    			</tr><tr style="height:0px;">
    				<td></td>
    			</tr>
    		</table><div id="ctl00_WebUsrCtlTreeView1_TreeView1n3Nodes" style="display:block;">
    			<table cellpadding="0" cellspacing="0" style="border-width:0;">
    				<tr style="height:0px;">
    					<td></td>
    				</tr><tr>
    					<td><div style="width:20px;height:1px"></div></td><td><div style="width:20px;height:1px"></div></td><td><img src="/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjHbw3k4trSeOMvllueQoPFY1&amp;t=634278537284101250" alt="" /></td><td class="ctl00_WebUsrCtlTreeView1_TreeView1_2 ctl00_WebUsrCtlTreeView1_TreeView1_8" onmouseover="TreeView_HoverNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this)" onmouseout="TreeView_UnhoverNode(this)" style="white-space:nowrap;"><a class="ctl00_WebUsrCtlTreeView1_TreeView1_0 ctl00_WebUsrCtlTreeView1_TreeView1_1 ctl00_WebUsrCtlTreeView1_TreeView1_7" href="javascript:__doPostBack('ctl00$WebUsrCtlTreeView1$TreeView1','s0\\41\\24')" onclick="TreeView_SelectNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this,'ctl00_WebUsrCtlTreeView1_TreeView1t4');" id="ctl00_WebUsrCtlTreeView1_TreeView1t4">EUROPC</a></td>
    				</tr><tr style="height:0px;">
    					<td></td>
    				</tr>
    			</table><table cellpadding="0" cellspacing="0" style="border-width:0;">
    				<tr style="height:0px;">
    					<td></td>
    				</tr><tr>
    					<td><div style="width:20px;height:1px"></div></td><td><div style="width:20px;height:1px"></div></td><td><img src="/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjHbw3k4trSeOMvllueQoPFY1&amp;t=634278537284101250" alt="" /></td><td class="ctl00_WebUsrCtlTreeView1_TreeView1_2 ctl00_WebUsrCtlTreeView1_TreeView1_8" onmouseover="TreeView_HoverNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this)" onmouseout="TreeView_UnhoverNode(this)" style="white-space:nowrap;"><a class="ctl00_WebUsrCtlTreeView1_TreeView1_0 ctl00_WebUsrCtlTreeView1_TreeView1_1 ctl00_WebUsrCtlTreeView1_TreeView1_7" href="javascript:__doPostBack('ctl00$WebUsrCtlTreeView1$TreeView1','s0\\41\\25')" onclick="TreeView_SelectNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this,'ctl00_WebUsrCtlTreeView1_TreeView1t5');" id="ctl00_WebUsrCtlTreeView1_TreeView1t5">PROCEDURES</a></td>
    				</tr><tr style="height:0px;">
    					<td></td>
    				</tr>
    			</table><table cellpadding="0" cellspacing="0" style="border-width:0;">
    				<tr style="height:0px;">
    					<td></td>
    				</tr><tr>
    					<td><div style="width:20px;height:1px"></div></td><td><div style="width:20px;height:1px"></div></td><td><img src="/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjHbw3k4trSeOMvllueQoPFY1&amp;t=634278537284101250" alt="" /></td><td class="ctl00_WebUsrCtlTreeView1_TreeView1_2 ctl00_WebUsrCtlTreeView1_TreeView1_8" onmouseover="TreeView_HoverNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this)" onmouseout="TreeView_UnhoverNode(this)" style="white-space:nowrap;"><a class="ctl00_WebUsrCtlTreeView1_TreeView1_0 ctl00_WebUsrCtlTreeView1_TreeView1_1 ctl00_WebUsrCtlTreeView1_TreeView1_7" href="javascript:__doPostBack('ctl00$WebUsrCtlTreeView1$TreeView1','s0\\41\\26')" onclick="TreeView_SelectNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this,'ctl00_WebUsrCtlTreeView1_TreeView1t6');" id="ctl00_WebUsrCtlTreeView1_TreeView1t6">DIVERS CLIENTS</a></td>
    				</tr><tr style="height:0px;">
    					<td></td>
    				</tr>
    			</table><table cellpadding="0" cellspacing="0" style="border-width:0;">
    				<tr style="height:0px;">
    					<td></td>
    				</tr><tr>
    					<td><div style="width:20px;height:1px"></div></td><td><div style="width:20px;height:1px"></div></td><td><img src="/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjHbw3k4trSeOMvllueQoPFY1&amp;t=634278537284101250" alt="" /></td><td class="ctl00_WebUsrCtlTreeView1_TreeView1_2 ctl00_WebUsrCtlTreeView1_TreeView1_8" onmouseover="TreeView_HoverNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this)" onmouseout="TreeView_UnhoverNode(this)" style="white-space:nowrap;"><a class="ctl00_WebUsrCtlTreeView1_TreeView1_0 ctl00_WebUsrCtlTreeView1_TreeView1_1 ctl00_WebUsrCtlTreeView1_TreeView1_7" href="javascript:__doPostBack('ctl00$WebUsrCtlTreeView1$TreeView1','s0\\41\\27')" onclick="TreeView_SelectNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this,'ctl00_WebUsrCtlTreeView1_TreeView1t7');" id="ctl00_WebUsrCtlTreeView1_TreeView1t7">DIVERS TRAITEMENTS</a></td>
    				</tr><tr style="height:0px;">
    					<td></td>
    				</tr>
    			</table>
    		</div><table cellpadding="0" cellspacing="0" style="border-width:0;">
    			<tr style="height:0px;">
    				<td></td>
    			</tr><tr>
    				<td><div style="width:20px;height:1px"></div></td><td><img src="/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjHbw3k4trSeOMvllueQoPFY1&amp;t=634278537284101250" alt="" /></td><td class="ctl00_WebUsrCtlTreeView1_TreeView1_2 ctl00_WebUsrCtlTreeView1_TreeView1_8" onmouseover="TreeView_HoverNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this)" onmouseout="TreeView_UnhoverNode(this)" style="white-space:nowrap;"><a class="ctl00_WebUsrCtlTreeView1_TreeView1_0 ctl00_WebUsrCtlTreeView1_TreeView1_1 ctl00_WebUsrCtlTreeView1_TreeView1_7" href="javascript:__doPostBack('ctl00$WebUsrCtlTreeView1$TreeView1','s0\\42')" onclick="TreeView_SelectNode(ctl00_WebUsrCtlTreeView1_TreeView1_Data, this,'ctl00_WebUsrCtlTreeView1_TreeView1t8');" id="ctl00_WebUsrCtlTreeView1_TreeView1t8">SURVEILLANCE</a></td>
    			</tr><tr style="height:0px;">
    				<td></td>
    			</tr>
    		</table>
    	</div>
    </div><a id="ctl00_WebUsrCtlTreeView1_TreeView1_SkipLink"></a>
    <br/>
    <span id="ctl00_WebUsrCtlTreeView1_labelStatus" style="display:inline-block;width:153px;"></span>&nbsp;
     
                        </td>
                        <td class="TdD">
     
        <div id="ctl00_contenu_ValidationSummary1" style="color:Red;display:none;">
     
    </div>
        <table cellspacing="0" cellpadding="4" border="0" id="ctl00_contenu_FormView1" style="color:Black;width:100%;border-collapse:collapse;">
    	<tr style="background-color:Gray;">
    		<td colspan="2">
                <table class="tableNew">
                <tr>
                    <th>Titre :</th>
                    <td>
                        <span id="ctl00_contenu_FormView1_RequiredFieldValidator1" style="color:Red;visibility:hidden;"> *</span>
                        <input name="ctl00$contenu$FormView1$TextBox1" type="text" value="Automatisation de rapprochement" id="ctl00_contenu_FormView1_TextBox1" />
                    </td>
                </tr>
                <tr>
                    <th>Documentations :</th>
                    <td><input name="ctl00$contenu$FormView1$TextBox2" type="text" value="\\clichy\devel\Progs.sources\Rapprochement\CreateIni\CreateIni.htm" id="ctl00_contenu_FormView1_TextBox2" /></td>
                    <td><a id="ctl00_contenu_FormView1_HyperLink1" onClick="javascript:window.open(&quot;\\\\clichy\\devel\\Progs.sources\\Rapprochement\\CreateIni\\CreateIni.htm&quot;);" target="_blank"><img src="Images/see24.gif" alt="Lien" style="border-width:0px;" /></a></td>
                </tr>
                <tr>
                    <th>Auteur :</th>
                    <td><select name="ctl00$contenu$FormView1$DropDownList6" onchange="javascript:setTimeout('__doPostBack(\'ctl00$contenu$FormView1$DropDownList6\',\'\')', 0)" id="ctl00_contenu_FormView1_DropDownList6">
    			<option value=""></option>
    			<option selected="selected" value="4">KPR</option>
    			<option value="3">LHA</option>
    			<option value="2">LNU</option>
    			<option value="6">MAK</option>
    			<option value="5">MBE</option>
    			<option value="53">MSA</option>
    			<option value="14">MVB</option>
    			<option value="10">NBE</option>
    			<option value="16">PBO</option>
    			<option value="7">PNI</option>
    			<option value="12">POT</option>
    			<option value="17">SBO</option>
    			<option value="15">YDO</option>
     
    		</select></td>
                </tr>
                <tr>
                    <th>Executable :</th>
                    <td><input name="ctl00$contenu$FormView1$TextBox3" type="text" value="\\clichy\DEVEL\Progs\Rapprochements" id="ctl00_contenu_FormView1_TextBox3" /></td>
                    <td><a id="ctl00_contenu_FormView1_HyperLink2" href="file:///\\clichy\DEVEL\Progs\Rapprochements" target="_blank"><img src="Images/see24.gif" alt="Lien" style="border-width:0px;" /></a></td>
                </tr>
                <tr>
                    <th>Source :</th>
                    <td><input name="ctl00$contenu$FormView1$TextBox4" type="text" value="\\clichy\DEVEL\Progs.sources\Rapprochement\CreateIni" id="ctl00_contenu_FormView1_TextBox4" /></td>
                    <td><a id="ctl00_contenu_FormView1_HyperLink3" href="\\clichy\DEVEL\Progs.sources\Rapprochement\CreateIni" target="_blank"><img src="Images/see24.gif" alt="Lien" style="border-width:0px;" /></a></td>
                </tr>
                <tr>
                    <th>Divers :</th>
                    <td><input name="ctl00$contenu$FormView1$TextBox5" type="text" id="ctl00_contenu_FormView1_TextBox5" /></td>
                    <td><a id="ctl00_contenu_FormView1_HyperLink4" target="_blank"><img src="Images/see24.gif" alt="Lien" style="border-width:0px;" /></a></td>
                </tr>
                <tr>
                    <th>Catégories :</th>
                    <td><select name="ctl00$contenu$FormView1$DropDownList4" id="ctl00_contenu_FormView1_DropDownList4">
    			<option selected="selected" value="40">EN ATTENTE DE CLASSEMENT</option>
    			<option value="41">OLDIES</option>
    			<option value="31">OUTILS</option>
    			<option value="42">SURVEILLANCE</option>
     
    		</select></td>
                </tr>
                <tr>
                    <th>Sous-catégories:</th>
                    <td><select name="ctl00$contenu$FormView1$DropDownList5" id="ctl00_contenu_FormView1_DropDownList5">
    			<option selected="selected" value=""></option>
    			<option value="26">DIVERS CLIENTS</option>
    			<option value="27">DIVERS TRAITEMENTS</option>
    			<option value="24">EUROPC</option>
    			<option value="25">PROCEDURES</option>
     
    		</select></td>
                </tr>
                <tr>
                    <td>
                        </td><td><br/>
                        <input type="image" name="ctl00$contenu$FormView1$ImageButton2" id="ctl00_contenu_FormView1_ImageButton2" src="Images/ok24.gif" alt="Mettre à jour" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$contenu$FormView1$ImageButton2&quot;, &quot;&quot;, true, &quot;formview&quot;, &quot;&quot;, false, false))" style="width:24px;border-width:0px;" />&nbsp; &nbsp; &nbsp;
                        <input type="image" name="ctl00$contenu$FormView1$ImageButton3" id="ctl00_contenu_FormView1_ImageButton3" src="Images/cancel24.gif" alt="Annuler" style="width:24px;border-width:0px;" />
                    </td>
                </tr>
                </table>
            </td>
    	</tr>
    </table>
     
     
     
     
     
                        </td>
                    </tr>
                </table>
     
    <script type="text/javascript">
    <!--
    var ctl00_WebUsrCtlTreeView1_TreeView1_ImageArray =  new Array('', '', '', '/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjHbw3k4trSeOMvllueQoPFY1&t=634278537284101250', '/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjCdrkfvLH5MO1vv_LYGms941&t=634278537284101250', '/Portail_Documentation/WebResource.axd?d=4CRWTzg_mULBZlss1LUkjBKv-QMWka-AMl9AGuij3141&t=634278537284101250');
    var Page_ValidationSummaries =  new Array(document.getElementById("ctl00_contenu_ValidationSummary1"));
    var Page_Validators =  new Array(document.getElementById("ctl00_contenu_FormView1_RequiredFieldValidator1"));
    // -->
    </script>
     
    <script type="text/javascript">
    <!--
    var ctl00_contenu_ValidationSummary1 = document.all ? document.all["ctl00_contenu_ValidationSummary1"] : document.getElementById("ctl00_contenu_ValidationSummary1");
    ctl00_contenu_ValidationSummary1.headertext = "Il y a des erreurs sur la page :";
    ctl00_contenu_ValidationSummary1.displaymode = "SingleParagraph";
    ctl00_contenu_ValidationSummary1.validationGroup = "formview";
    var ctl00_contenu_FormView1_RequiredFieldValidator1 = document.all ? document.all["ctl00_contenu_FormView1_RequiredFieldValidator1"] : document.getElementById("ctl00_contenu_FormView1_RequiredFieldValidator1");
    ctl00_contenu_FormView1_RequiredFieldValidator1.controltovalidate = "ctl00_contenu_FormView1_TextBox1";
    ctl00_contenu_FormView1_RequiredFieldValidator1.errormessage = "Le titre du document est obligatoire.";
    ctl00_contenu_FormView1_RequiredFieldValidator1.validationGroup = "formview";
    ctl00_contenu_FormView1_RequiredFieldValidator1.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
    ctl00_contenu_FormView1_RequiredFieldValidator1.initialvalue = "";
    // -->
    </script>
     
    <div>
     
    	<input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
    	<input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="Y8qDPIQpAov0st13t19CxY1HIMzlHpVRM-9Ewm_1hmu1WY72o9bP7EMr1DR396oJ0" />
    	<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="WLeFEUSfBWkh20lRz0E2+2Cb4znLMNihXx+u9tkU4EOVvckYmEeIc22aF7KFRqp8vfx4Hxw8gnqkyaT8+CweyWccdo6J0Excg/SntGypREFEj8jTeKmxvO/s/+xt6XsUUVHbejvrPpeKF4KGxg0pzFCmnS/0mpi63F59yAhVgBN/H0a9orzD4Q0xpFJkvNCbvehpaS4uiUMQlYiOdWmtJYgqt8qDROJFQyPLIZP0cFIQVWqTEt8zg8jND4k6MhMBmYm4ZfX93clDDlynAZ4IEi7JXmIwpvkzxTTh+XeVtrORhITMJpupHljQN63/cBomJt4DhkhxRddeKoNf4SnUy5oUr4U7651hF+qiPy/3FYE=" />
    </div>
     
    <script type="text/javascript">
    <!--
    var ctl00_Menu1_Data = new Object();
    ctl00_Menu1_Data.disappearAfter = 500;
    ctl00_Menu1_Data.horizontalOffset = 0;
    ctl00_Menu1_Data.verticalOffset = 0;
    ctl00_Menu1_Data.staticHoverClass = 'ctl00_Menu1_6';
    ctl00_Menu1_Data.staticHoverHyperLinkClass = 'ctl00_Menu1_5';
     
    WebForm_InitCallback();var ctl00_WebUsrCtlTreeView1_TreeView1_Data = new Object();
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.images = ctl00_WebUsrCtlTreeView1_TreeView1_ImageArray;
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.collapseToolTip = "Réduire {0}";
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.expandToolTip = "Développer {0}";
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.expandState = theForm.elements['ctl00_WebUsrCtlTreeView1_TreeView1_ExpandState'];
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.selectedNodeID = theForm.elements['ctl00_WebUsrCtlTreeView1_TreeView1_SelectedNode'];
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.hoverClass = 'ctl00_WebUsrCtlTreeView1_TreeView1_12';
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.hoverHyperLinkClass = 'ctl00_WebUsrCtlTreeView1_TreeView1_11';
    for (var i=0;i<6;i++) {
    var preLoad = new Image();
    if (ctl00_WebUsrCtlTreeView1_TreeView1_ImageArray[i].length > 0)
    preLoad.src = ctl00_WebUsrCtlTreeView1_TreeView1_ImageArray[i];
    }
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.lastIndex = 9;
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.populateLog = theForm.elements['ctl00_WebUsrCtlTreeView1_TreeView1_PopulateLog'];
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.treeViewID = 'ctl00$WebUsrCtlTreeView1$TreeView1';
    ctl00_WebUsrCtlTreeView1_TreeView1_Data.name = 'ctl00_WebUsrCtlTreeView1_TreeView1_Data';
    // -->
    </script>
     
    <script type="text/javascript">
    <!--
    var Page_ValidationActive = false;
    if (typeof(ValidatorOnLoad) == "function") {
        ValidatorOnLoad();
    }
     
    function ValidatorOnSubmit() {
        if (Page_ValidationActive) {
            return ValidatorCommonOnSubmit();
        }
        else {
            return true;
        }
    }
    // -->
    </script>
            </form>
        </div>
    </body>
    </html>

  13. #13
    Membre émérite
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Avril 2006
    Messages
    1 627
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2006
    Messages : 1 627
    Points : 2 331
    Points
    2 331
    Par défaut
    C'est ce lien là qui ne fonctionne pas ?
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <a id="ctl00_contenu_FormView1_HyperLink2" target="_blank"><img src="Images/see24.gif" alt="Lien" style="border-width:0px;" /></a>

  14. #14
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut
    Les 4 hyperlinks ne fonctionnent pas sous fifefox et tous sont ok sous IE, j'ai tenté de 3 manières différentes :

    - hyperlink1 avec javascript windows.open :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    <td><asp:HyperLink ID="HyperLink1" runat="server" onClick='<%# "javascript:window.open(\"" + String2HTML(Eval("Chemin_Documentations").ToString()) + "\");" %>'
     Target=_blank ImageUrl="Images/see24.gif">Lien</asp:HyperLink></td>
    - hyperlink2 avec NavigateUrl...file:/// :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <td><asp:HyperLink ID="HyperLink2" runat="server" NavigateUrl='<%# "file:///" + Eval("Chemin_Exe") %>' Target="_blank" ImageUrl="Images/see24.gif">Lien</asp:HyperLink></td>
    - hyperlink3 avec NavigateUrl :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <td><asp:HyperLink ID="HyperLink3" runat="server" NavigateUrl='<%# Eval("Chemin_Source") %>' Target=_blank ImageUrl="Images/see24.gif">Lien</asp:HyperLink></td>

  15. #15
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut
    Ca y est, j'ai trouvé une solution en passant par System.Diagnostics.Process.Start :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    <td><asp:ImageButton ID="ImageButton6" runat="server" CommandArgument='<%# Eval("Chemin_Documentations") %>' ImageUrl="Images/see24.gif" Height="25px" Width="25px" OnClick="ImageButton1_Click" /></td>
    puis en code behind :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
        protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
        {
            ImageButton myButton = (ImageButton)sender;
            System.Diagnostics.Process.Start(myButton.CommandArgument);
        }
    Merci Arnard d'avoir répondu à mes messages et de d'être soucié de mon problème

  16. #16
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut
    Et bien, en fait, c'est pas bon du tout ce que j'ai fait puisque ca ouvre un process cote serveur !!! du coup, j'ai réussi à le mettre à genoux en testant...

    Avez-vous une autre solution ?

  17. #17
    Membre à l'essai
    Profil pro
    Inscrit en
    Mai 2005
    Messages
    33
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2005
    Messages : 33
    Points : 17
    Points
    17
    Par défaut
    Ou sinon, comment fait on pour : quand on click sur un bouton, avoir une boite de dialogue qui s'ouvre demandant à l'utilisateur s'il veut ouvrir ou enregistrer le fichier (principe du download) ?

    Breizou.

Discussions similaires

  1. Réponses: 3
    Dernier message: 30/07/2014, 09h25
  2. Comment ouvrir un lien dans une autre frame ?
    Par kelyly dans le forum Balisage (X)HTML et validation W3C
    Réponses: 4
    Dernier message: 23/02/2010, 20h55
  3. Ouvrir un lien dans une nouvelle fenêtre
    Par magicibis dans le forum SharePoint
    Réponses: 0
    Dernier message: 08/08/2007, 17h21
  4. Ouvrir un lien dans une nouvelle fenêtre
    Par Le Lézard dans le forum Général JavaScript
    Réponses: 4
    Dernier message: 13/12/2004, 14h43

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo