将gridview文本框值传递给javascript

将gridview文本框值传递给javascript

本文介绍了将gridview文本框值传递给javascript的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,
我有一个带有文本框模板字段的gridview,在其中插入学生标志,现在我想验证文本框(检查特定纸张的完整标志),这里我需要将文本框的值传递给javascript,以便可以在onkeypress上验证文本框文本框事件我该怎么办..

还是有最好的选择..

Hello all,
I have a gridview with textbox template field where I insert Marks of students, now I want to validate the textbox (checking full marks of particular paper),here I need to pass the value of textbox to javascript so that I can validate textbox on onkeypress event of textbox how i can do so..

Or Is there any best alternative..

推荐答案


protected void GridView_RowDataBound(Object sender, GridViewRowEventArgs e)
{
  TextBox tb = (TextBox)e.Row.FindControl("TextBox1");
  tb.Attributes.Add("onkeyup", "javascript: ValidateMe(this);");
}


function ValidateMe(currtextbox)
{
   // Use currenttextbox.value to validate
}


这篇关于将gridview文本框值传递给javascript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 00:44