Click here to Skip to main content
15,741,581 members

Comments by prodipjsr (Top 82 by date)

prodipjsr 22-Sep-14 1:09am View    
I have read this document, but no update. Please send me a guide where i will do steps to steps,,
prodipjsr 17-Aug-13 6:51am View    
i know how to access gridview, but here i cant find out my fault..please help me ..
prodipjsr 31-Jul-13 6:47am View    
Now show the above error mess..
prodipjsr 31-Jul-13 3:47am View    
This error can be caused by a virtual directory not being configured as an application in IIS.

how can we configure.. any guide or link?
prodipjsr 6-May-13 7:13am View    
Sir, u have changed the bellow code, But when i run the code then "#<%= tbsecondnominee.ClientID %>,#<%= tbsecondper.ClientID %>,#<%= tbthitdnominee.ClientID%>,#<%= tbthirdper.ClientID %>"
text boxes are disable. But when i put 50 in tbfirstper then also the four text boxes are disable..


<script type="text/javascript">
/*if tbfirstper==100 then tbsecondnominee,tbsecondper,tbthitdnominee,tbthirdper is not enable.
If tbfirstper <100;then tbsecondnominee,tbsecondper is enable,
if tbfirstper+tbsecondper<100, then tbthitdnominee,tbthirdper is enable,*/
$(function () {
$("#<%= tbsecondnominee.ClientID %>,#<%= tbsecondper.ClientID %>,#<%= tbthitdnominee.ClientID%>,#<%= tbthirdper.ClientID %>").attr("disabled", true);
$("input[type='text']").blur(function () {
var a = $("#tbfirstper").val();
var b = $("#tbsecondper").val();
//alert(a+b);

if (parseInt(a) == 100) {
$("#<%= tbsecondnominee.ClientID %>,#<%= tbsecondper.ClientID %>,#<%= tbthitdnominee.ClientID%>,#<%= tbthirdper.ClientID %>").attr("disabled", true);
}
if ( a < 100 && a != "" && b == "") {
//alert(b);
$("#<%= tbsecondnominee.ClientID %>,#<%= tbsecondper.ClientID %>").attr("disabled", false);
$("#<%= tbthitdnominee.ClientID %>,#<%= tbthirdper.ClientID %>").attr("disabled", true);
}
if (b != "" && parseInt(a) + parseInt(b) < 100) {
//alert(a+b);
$("#<%= tbthitdnominee.ClientID %>,#<%= tbthirdper.ClientID %>").attr("disabled", false);
}
});

});
</script>