Click here to Skip to main content
15,920,602 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Using Eval and Bind on UserControl Pin
Rajesh B Prajapati23-Apr-07 2:31
Rajesh B Prajapati23-Apr-07 2:31 
AnswerRe: Using Eval and Bind on UserControl Pin
RichardGrimmer23-Apr-07 5:34
RichardGrimmer23-Apr-07 5:34 
GeneralRe: Using Eval and Bind on UserControl Pin
badgrs23-Apr-07 6:36
badgrs23-Apr-07 6:36 
GeneralRe: Using Eval and Bind on UserControl Pin
RichardGrimmer23-Apr-07 6:54
RichardGrimmer23-Apr-07 6:54 
AnswerRe: Using Eval and Bind on UserControl Pin
badgrs23-Apr-07 10:17
badgrs23-Apr-07 10:17 
QuestionDoubt Pin
jayarajmrj23-Apr-07 1:52
jayarajmrj23-Apr-07 1:52 
AnswerRe: Doubt Pin
_AK_23-Apr-07 2:04
_AK_23-Apr-07 2:04 
AnswerRe: Doubt Pin
Rakheesh Chalil23-Apr-07 11:39
Rakheesh Chalil23-Apr-07 11:39 
Hi,
While rendering to HTML, multiline textbox will be considered as text area. So if you can consider the same in the condition specified, then it will work fine

The code is given below

function ClearTextBoxes()
{
for (i=0;i < document.Form1.elements.length;i++)
{
if (document.Form1.elements[i].type == "text" ||document.Form1.elements[i].type == "textarea" )
{
document.Form1.elements[i].value="";
}
}
}

hope this will work for you

Rakheesh
QuestionJavascript Pin
jayarajmrj23-Apr-07 1:50
jayarajmrj23-Apr-07 1:50 
AnswerRe: Javascript Pin
_AK_23-Apr-07 2:03
_AK_23-Apr-07 2:03 
Questionurgent help needed connection string Pin
Naveed Kamboh23-Apr-07 1:27
Naveed Kamboh23-Apr-07 1:27 
AnswerRe: urgent help needed connection string Pin
kubben23-Apr-07 2:33
kubben23-Apr-07 2:33 
Questiondisplaying a html page Pin
johno196723-Apr-07 1:10
johno196723-Apr-07 1:10 
AnswerRe: displaying a html page Pin
Christian Graus23-Apr-07 1:13
protectorChristian Graus23-Apr-07 1:13 
AnswerRe: displaying a html page Pin
Sathesh Sakthivel23-Apr-07 1:14
Sathesh Sakthivel23-Apr-07 1:14 
GeneralRe: displaying a html page Pin
Christian Graus23-Apr-07 1:15
protectorChristian Graus23-Apr-07 1:15 
AnswerRe: displaying a html page Pin
Guffa23-Apr-07 2:32
Guffa23-Apr-07 2:32 
GeneralRe: displaying a html page Pin
johno196723-Apr-07 5:58
johno196723-Apr-07 5:58 
GeneralRe: displaying a html page Pin
Guffa23-Apr-07 9:55
Guffa23-Apr-07 9:55 
GeneralRe: displaying a html page Pin
johno196724-Apr-07 0:56
johno196724-Apr-07 0:56 
Questionproblem with list box control Pin
Shuaib wasif khan23-Apr-07 1:01
Shuaib wasif khan23-Apr-07 1:01 
AnswerRe: problem with list box control Pin
Sandeep Akhare23-Apr-07 1:14
Sandeep Akhare23-Apr-07 1:14 
GeneralRe: problem with list box control Pin
Shuaib wasif khan23-Apr-07 2:57
Shuaib wasif khan23-Apr-07 2:57 
QuestionSecurity in asp.net Pin
mabrar23-Apr-07 0:46
mabrar23-Apr-07 0:46 
AnswerRe: Security in asp.net Pin
Sandeep Akhare23-Apr-07 1:03
Sandeep Akhare23-Apr-07 1:03 

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.