Click here to Skip to main content
15,899,025 members

Comments by amritha444 (Top 48 by date)

amritha444 21-Jun-14 7:19am View    
thanks alot Prakash ..Now its working fine :)
amritha444 21-Jun-14 6:01am View    
Ok sir i wil do that .. i posted here to get quick response from the peoples who experienced the same problem
amritha444 10-Jun-14 3:49am View    
Thanks all for your response
amritha444 10-Jun-14 2:11am View    
<asp:TextBox ID="txtspousename" CausesValidation="true" runat="server" Width="260px">
<asp:customvalidator ID="Customvalidator1" EnableClientScript="false" Display="Dynamic" ValidationGroup="v" onservervalidate="Customvalidator1_ServerValidate" forecolor="Red" errormessage="*" controltovalidate="txtspousename" runat="server">

server side
protected void Customvalidator1_ServerValidate(object source, ServerValidateEventArgs args)
{
if (chkweddingbased.Checked == true)
{
if (txtspousename.Text=="")
{
args.IsValid = false;
}
else
{
args.IsValid = true;
}
}
else
{
args.IsValid = true;
}
}



its not firing while textbox is null..
amritha444 21-Mar-14 23:44pm View    
hi i didnt converted. its coming so
when i paste www.mydom.com/test/test2.asp?id=FFvruvzDN%2bA%3d seperately its coming in lowecase .at that time decryption not occurs and ends with bad data error ..
but when going through my project
Response.Redirect("~/test/test2.aspx?id=" + ls_encry);
its working well
why coming so any idea??