je travail sur une application asp.net, et je voudrais passé par url des valeurs dans une macro Excel voici le code
bon ça marche
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 Sub ColLigne() colonne = Left$(ActiveCell.Address(0, 0), (ActiveCell.Column < 27) + 2) ligne = ActiveCell.Row MsgBox colonne & ligne MsgBox colonne MsgBox ligne Shell "C:\Program Files\Internet Explorer\IEXPLORE.EXE <a href="http://localhost:4184/SITE_CSH1/client.aspx?" target="_blank">http://localhost:4184/SITE_CSH1/client.aspx?</a> [champ1].Text=' " + colonne + " ' & [champ2].Text='" +ligne +"' , vbMaximizedFocus" End Sub
mais je dois récupérer les valeur par ma page asp.net a fin d'exécuter une requête mais j'arrive pas j'ai tester la méthode get mais aucun résultat
si personne a une idée je serai ravi et merci d'avance
Partager