Click here to Skip to main content
15,900,258 members

Comments by Prifti Constantine (Top 75 by date)

Prifti Constantine 7-Feb-19 3:28am View    
Which one goes where? Where does the cdn go and where the locan css file?
Prifti Constantine 17-Jan-19 6:01am View    
You have to show me an error or at least some code in order for me to specify why its not working. Problems cannot be solved in general, we need some facts and an approach to it. Did you specify the correct port? Did you enter the sender email? Did you specify the correct password? All these questions have to be asked. Copy paste wont do anything with this kind of code. Feel free to ask whatever you like!
Prifti Constantine 16-Jan-19 9:12am View    
Can we have some code?
Prifti Constantine 16-Jan-19 6:24am View    
Firstly what you are doing is that youre trying to get the Element By ID but in the parameter youre passing something else... Since you know the Id of the element what you should do is:

var UploadElement = document.getElementById("<%= UpLoadButton.ClientID%>");
Now you have the element you want... If you want to get the value then all you have to do is :
var UploadValue = UploadElement.value;
Prifti Constantine 15-Jan-19 10:53am View    
You can always use __DoPostBack("The Id of your control","TheEvent you want to Invoke")
For more information you can always check the documentation of the javascript __DoPostback . I Think this is your solution. For further information feel free to ask.