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

ASP.NET

 
GeneralRe: How to show GridView on Page load and populate it with data from textboxes Pin
Abhijit Jana20-Oct-09 4:09
professionalAbhijit Jana20-Oct-09 4:09 
GeneralRe: How to show GridView on Page load and populate it with data from textboxes Pin
nagendrathecoder20-Oct-09 18:34
nagendrathecoder20-Oct-09 18:34 
GeneralRe: How to show GridView on Page load and populate it with data from textboxes Pin
Leezo8729-Oct-09 3:19
Leezo8729-Oct-09 3:19 
GeneralRe: How to show GridView on Page load and populate it with data from textboxes Pin
TMFoust22-Dec-09 9:01
TMFoust22-Dec-09 9:01 
QuestionASP.NET Control: The Code Project Newsletter topics Control Pin
Gebbetje19-Oct-09 22:12
Gebbetje19-Oct-09 22:12 
AnswerRe: ASP.NET Control: The Code Project Newsletter topics Control Pin
Abhijit Jana19-Oct-09 22:48
professionalAbhijit Jana19-Oct-09 22:48 
QuestionRe: ASP.NET Control: The Code Project Newsletter topics Control Pin
Gebbetje20-Oct-09 0:21
Gebbetje20-Oct-09 0:21 
AnswerRe: ASP.NET Control: The Code Project Newsletter topics Control Pin
Abhijit Jana20-Oct-09 1:16
professionalAbhijit Jana20-Oct-09 1:16 
Gebbetje wrote:

I guess the "Hide/Show Div on the click on TextBox"

You can do it using simple JavaScript.
Here is the sample javascript :
var counter =0;
function ShowHideDiv()
{
  var DivID=document.getElementById('MyDiv');

  if(counter == 0)
  {
   DivID.style.display ="Block";
   counter=1;
  }
else
{
    DivID.style.display ="none";
    counter=0;
  }
  return false;
}


Note: You can also do it without using counter, just check div visibility when you are checking the counter.

Hope this will help you Smile | :)

Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.

QuestionHow to get the treeview node count using javascript? Pin
meeram39519-Oct-09 22:07
meeram39519-Oct-09 22:07 
AnswerRe: How to get the treeview node count using javascript? Pin
Abhishek Sur19-Oct-09 22:40
professionalAbhishek Sur19-Oct-09 22:40 
AnswerRe: How to get the treeview node count using javascript? Pin
Nigel Ferrissey19-Oct-09 22:55
Nigel Ferrissey19-Oct-09 22:55 
Questionimages Pin
mylogics19-Oct-09 22:02
professionalmylogics19-Oct-09 22:02 
AnswerRe: images Pin
nagendrathecoder19-Oct-09 22:07
nagendrathecoder19-Oct-09 22:07 
GeneralRe: images Pin
Christian Graus19-Oct-09 23:27
protectorChristian Graus19-Oct-09 23:27 
GeneralRe: images Pin
nagendrathecoder19-Oct-09 23:33
nagendrathecoder19-Oct-09 23:33 
AnswerRe: images Pin
Abhijit Jana19-Oct-09 22:50
professionalAbhijit Jana19-Oct-09 22:50 
AnswerRe: images Pin
yesu prakash20-Oct-09 1:02
yesu prakash20-Oct-09 1:02 
AnswerRe: images Pin
carlecomm20-Oct-09 21:26
carlecomm20-Oct-09 21:26 
QuestionThe text,ntext and image data type cannot be compared or sorted except when IS NULL or LIKE Pin
haleemasher19-Oct-09 20:50
haleemasher19-Oct-09 20:50 
AnswerRe: The text,ntext and image data type cannot be compared or sorted except when IS NULL or LIKE Pin
Nigel Ferrissey19-Oct-09 21:01
Nigel Ferrissey19-Oct-09 21:01 
GeneralRe: The text,ntext and image data type cannot be compared or sorted except when IS NULL or LIKE Pin
haleemasher19-Oct-09 21:31
haleemasher19-Oct-09 21:31 
QuestionConnecting to Oracle Pin
v1i9n6o7d19-Oct-09 20:14
v1i9n6o7d19-Oct-09 20:14 
AnswerRe: Connecting to Oracle Pin
Abhishek Sur19-Oct-09 22:25
professionalAbhishek Sur19-Oct-09 22:25 
AnswerRe: Connecting to Oracle Pin
Abhijit Jana20-Oct-09 9:14
professionalAbhijit Jana20-Oct-09 9:14 
QuestionParser error... Pin
RajpootRohan19-Oct-09 19:32
professionalRajpootRohan19-Oct-09 19:32 

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.