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

ASP.NET

 
GeneralRe: schedule calender Pin
eyeseetee24-Jul-08 21:53
eyeseetee24-Jul-08 21:53 
Questioncalender Pin
nithydurai24-Jul-08 20:22
nithydurai24-Jul-08 20:22 
AnswerRe: calender Pin
windhopper24-Jul-08 20:45
windhopper24-Jul-08 20:45 
GeneralRe: calender Pin
Member 538259224-Jul-08 20:53
Member 538259224-Jul-08 20:53 
GeneralRe: calender Pin
windhopper24-Jul-08 20:58
windhopper24-Jul-08 20:58 
QuestionAsp.Net GridView [modified] Pin
bhavin204u24-Jul-08 20:19
bhavin204u24-Jul-08 20:19 
QuestionHow can i check textbox null in grid view using javascript Pin
deepthy.p.m24-Jul-08 19:56
deepthy.p.m24-Jul-08 19:56 
AnswerRe: How can i check textbox null in grid view using javascript Pin
www.Developerof.NET24-Jul-08 20:44
www.Developerof.NET24-Jul-08 20:44 
May be this can help u...

function CHKSelectAtleastOne(gridName)
{
var pointer=0;
all=document.getElementsByTagName("input");
for(i=0;i<all.length;i++)>
{

if(all[i].type=="text")/*Checking if it is a textbox */
{
if(all[i].value!="")
pointer=1;
}
}
if(pointer==0)
{
alert("Please select atleast one item");
return false;
}
else
return true
}


and call this script on ur button click event

Hope it helps...

When you fail to plan, you are planning to fail.

GeneralRe: How can i check textbox null in grid view using javascript Pin
deepthy.p.m24-Jul-08 21:04
deepthy.p.m24-Jul-08 21:04 
GeneralRe: How can i check textbox null in grid view using javascript Pin
www.Developerof.NET24-Jul-08 21:10
www.Developerof.NET24-Jul-08 21:10 
GeneralRe: How can i check textbox null in grid view using javascript Pin
bommareddy20024-Jul-08 21:24
bommareddy20024-Jul-08 21:24 
GeneralRe: How can i check textbox null in grid view using javascript Pin
Sherin Iranimose24-Jul-08 23:00
Sherin Iranimose24-Jul-08 23:00 
QuestionCrystal Report not working Pin
Raghvendra Kumar Roy24-Jul-08 19:34
Raghvendra Kumar Roy24-Jul-08 19:34 
QuestionInsert data from girdview to sql server database ASP.NET c# Pin
VijayVishwakarma24-Jul-08 19:12
VijayVishwakarma24-Jul-08 19:12 
Questionmail server checking Pin
Member 387988124-Jul-08 18:33
Member 387988124-Jul-08 18:33 
AnswerRe: mail server checking Pin
Sam Xavier24-Jul-08 20:18
Sam Xavier24-Jul-08 20:18 
AnswerRe: mail server checking Pin
Abhijit Jana24-Jul-08 21:38
professionalAbhijit Jana24-Jul-08 21:38 
QuestionReading from access Pin
kamsabeti24-Jul-08 18:15
kamsabeti24-Jul-08 18:15 
Questionajax tabcontainer add new tabpanel with close button Pin
Bharani_Ram24-Jul-08 10:01
Bharani_Ram24-Jul-08 10:01 
QuestionHow to search data from database then populate at gridview? Pin
edwin7nice24-Jul-08 4:55
edwin7nice24-Jul-08 4:55 
AnswerRe: How to search data from database then populate at gridview? Pin
edwin7nice24-Jul-08 5:20
edwin7nice24-Jul-08 5:20 
QuestionHow to update dropdownlist.selectedvalue into database? Pin
edwin7nice24-Jul-08 4:45
edwin7nice24-Jul-08 4:45 
AnswerRe: How to update dropdownlist.selectedvalue into database? Pin
Sherin Iranimose24-Jul-08 4:52
Sherin Iranimose24-Jul-08 4:52 
GeneralRe: How to update dropdownlist.selectedvalue into database? Pin
edwin7nice24-Jul-08 5:26
edwin7nice24-Jul-08 5:26 
GeneralRe: How to update dropdownlist.selectedvalue into database? Pin
Sherin Iranimose24-Jul-08 5:38
Sherin Iranimose24-Jul-08 5:38 

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.