As I can get the value of the entire url
of my selected image, my current code is as follows:
Javascript code
var image= document.getElementById('<%=fileImage.ClientID%>').value;
.aspx code
<asp:FileUpload ID="fileImage" class="fileImagen" runat="server"></asp:FileUpload>
Currently I can get only the name of the file with jquery.
Jquery Code:
var imagen = $(".fileImagen").val();
But I need to know the entire location of the file.