Click here to Skip to main content
15,891,704 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Session Active Problem Pin
pra.chaudhari13-Apr-09 0:03
pra.chaudhari13-Apr-09 0:03 
Questionhow to implement rss feed in my news website Pin
Qaiser Naqvi12-Apr-09 22:56
Qaiser Naqvi12-Apr-09 22:56 
AnswerRe: how to implement rss feed in my news website Pin
Abhijit Jana12-Apr-09 23:13
professionalAbhijit Jana12-Apr-09 23:13 
AnswerRe: how to implement rss feed in my news website Pin
Parwej Ahamad12-Apr-09 23:16
professionalParwej Ahamad12-Apr-09 23:16 
QuestionProblem in Dynamically Created Table row [modified] Pin
suzzain12-Apr-09 22:16
suzzain12-Apr-09 22:16 
AnswerRe: Problem in Dynamically Created Table row Pin
Parwej Ahamad12-Apr-09 23:10
professionalParwej Ahamad12-Apr-09 23:10 
GeneralRe: Problem in Dynamically Created Table row [modified] Pin
suzzain12-Apr-09 23:33
suzzain12-Apr-09 23:33 
Questioncustom validator in gridview Pin
Rahul Gharat12-Apr-09 21:39
Rahul Gharat12-Apr-09 21:39 
i am not getting error msg while validating textbox in gridview
i have put custom validator on textbox in grid

i have done this in gvStudent_RowDataBound

if (e.Row.RowIndex >= 0)
{
CustomValidator customValidator = new CustomValidator();
customValidator.ID = "CustomValidator1";
customValidator.ControlToValidate = "txtGrade";
customValidator.ErrorMessage = "Invalid Grade.";
customValidator.SetFocusOnError = true;
customValidator.ValidateEmptyText = true;
customValidator.ClientValidationFunction = "fnClientFunction";
e.Row.Cells[2].Controls.Add(customValidator);

}



and

this is function that i have wrritten in source side

function fnClientFunction(source, arguments)
{
if (arguments.Value=="AA" || arguments.Value=="aa" || arguments.Value=="AB" || arguments.Value=="ab" || arguments.Value=="BB" || arguments.Value=="bb"|| arguments.Value=="BC" || arguments.Value=="bc"|| arguments.Value=="CC" || arguments.Value=="cc"|| arguments.Value=="CD" || arguments.Value=="cd"|| arguments.Value=="DD" || arguments.Value=="dd"|| arguments.Value=="EE" || arguments.Value=="ee"|| arguments.Value=="FF" || arguments.Value=="ff"|| arguments.Value=="I" || arguments.Value=="i"|| arguments.Value=="RR" || arguments.Value=="rr")
arguments.IsValid=true;
else
arguments.IsValid=false;
}




can any body help me to sort out this problem.????

with regards
rahul

QuestionJSON Pin
Ramkumar_S12-Apr-09 20:38
Ramkumar_S12-Apr-09 20:38 
AnswerRe: JSON Pin
Colin Angus Mackay12-Apr-09 23:59
Colin Angus Mackay12-Apr-09 23:59 
AnswerRe: JSON Pin
PauloCastilho13-Apr-09 9:57
PauloCastilho13-Apr-09 9:57 
QuestionWeb Site Configuration. Pin
VikashGohil12-Apr-09 19:53
VikashGohil12-Apr-09 19:53 
Questionsilverlight project from local host(Step by Step Processors). Pin
Piyush Vardhan Singh12-Apr-09 19:50
Piyush Vardhan Singh12-Apr-09 19:50 
AnswerRe: silverlight project from local host(Step by Step Processors). Pin
Parwej Ahamad12-Apr-09 23:05
professionalParwej Ahamad12-Apr-09 23:05 
Question[Message Deleted] Pin
liz312-Apr-09 19:41
liz312-Apr-09 19:41 
AnswerRe: Running .exe from .NET Pin
Abhijit Jana12-Apr-09 19:59
professionalAbhijit Jana12-Apr-09 19:59 
QuestionSession timeout in Web [modified] Pin
Shivan Nandan12-Apr-09 19:23
Shivan Nandan12-Apr-09 19:23 
AnswerRe: Session timeout in Web Pin
Abhijit Jana12-Apr-09 19:32
professionalAbhijit Jana12-Apr-09 19:32 
GeneralRe: Session timeout in Web Pin
Shivan Nandan12-Apr-09 19:51
Shivan Nandan12-Apr-09 19:51 
GeneralRe: Session timeout in Web Pin
Abhijit Jana12-Apr-09 20:06
professionalAbhijit Jana12-Apr-09 20:06 
GeneralRe: Session timeout in Web Pin
Shivan Nandan12-Apr-09 20:13
Shivan Nandan12-Apr-09 20:13 
GeneralRe: Session timeout in Web Pin
Abhijit Jana12-Apr-09 20:24
professionalAbhijit Jana12-Apr-09 20:24 
GeneralRe: Session timeout in Web Pin
Shivan Nandan12-Apr-09 20:26
Shivan Nandan12-Apr-09 20:26 
QuestionGridview Header Wrap Problem [modified] Pin
abhishek.mumbai12-Apr-09 18:56
abhishek.mumbai12-Apr-09 18:56 
QuestionIs it posible to send Email from localhost ? Pin
Shahdat Hosain12-Apr-09 18:42
Shahdat Hosain12-Apr-09 18:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.