Click here to Skip to main content
15,895,740 members

Comments by Member 10380324 (Top 5 by date)

Member 10380324 18-Dec-13 1:57am View    
I am not telling the toolbar images. But the image set with in the report header. We are using VS 2005 and Crystal Report Version is 10.2
Member 10380324 18-Dec-13 0:16am View    
We can't change as we are using a customised grideview. In it we are using template column and all properties we use are different for our gridview. So please suggest another solution
Member 10380324 5-Dec-13 22:42pm View    
Encryption is working. But decryption isn't. Also we want to follow the RC4 algorithm. I have encrypted as said but no decryption even on converting hexastring to string it isn't in a readable manner and hence failing.RC4 has to be followed though.
Member 10380324 5-Nov-13 7:03am View    
How to set the same functionality under button click

<script type=""text/javascript">

language="javascript">
function isNumberKey(evt) {
// if (!(((event.keyCode >= 48 && event.keyCode <= 57) || (event.keyCode >= 96 && event.keyCode <= 105)) || (event.keyCode == 8) || (event.keyCode == 9) || (event.keyCode == 37) || (event.keyCode == 39) || (event.keyCode == 46) || (event.keyCode == 190) || (event.keyCode == 35) || (event.keyCode == 36)))
//event.returnValue=false;
var charCode = (evt.which) ? evt.which : event.keyCode
document.getElementById('HDVALUE'.value)=charCode;
if (charCode > 31 && charCode < 48 || charCode > 57)
if (event.keyCode != 46)
if (event.keyCode != 110 || event.keyCode ==32)
{

alert("Special Characters or Spaces not allowed");
return false;
}

return true;



}


</script>

<asp:TextBox ID="TextBox1" runat="server" onkeypress="return isNumberKey(event)">
Member 10380324 5-Nov-13 2:01am View    
How to do the same under button click using onclientclick of above javascript