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

ASP.NET

 
GeneralRe: Date Sorting in Gridview Pin
www.Developerof.NET16-Jun-08 23:23
www.Developerof.NET16-Jun-08 23:23 
Question[Message Deleted] Pin
deepthy.p.m16-Jun-08 20:32
deepthy.p.m16-Jun-08 20:32 
AnswerRe: how to enable textboxes on radio button click using javascript Pin
r aa j16-Jun-08 20:41
r aa j16-Jun-08 20:41 
GeneralRe: how to enable textboxes on radio button click using javascript Pin
deepthy.p.m16-Jun-08 20:48
deepthy.p.m16-Jun-08 20:48 
GeneralRe: how to enable textboxes on radio button click using javascript Pin
r aa j16-Jun-08 20:53
r aa j16-Jun-08 20:53 
GeneralRe: how to enable textboxes on radio button click using javascript Pin
deepthy.p.m16-Jun-08 21:01
deepthy.p.m16-Jun-08 21:01 
GeneralRe: how to enable textboxes on radio button click using javascript Pin
r aa j16-Jun-08 21:12
r aa j16-Jun-08 21:12 
GeneralRe: how to enable textboxes on radio button click using javascript Pin
deepthy.p.m16-Jun-08 21:24
deepthy.p.m16-Jun-08 21:24 
i use the following code to hide text boxes


function select1()
{

if(document.form1.RadioButton1.checked==true)
{

document.getElementById("TextBox1").style.visibility='hidden';
document.getElementById("TextBox2").style.display='visible';
}
else
{
document.getElementById("TextBox1").style.visibility='visible';
document.getElementById("TextBox2").style.visibility='hidden';
}
}
<script>
<sp:radiobutton id="RadioButton1" runat="server" onclick="javascript:select1();" xmlns:sp="#unknown">
<asp:textbox id="TextBox1" runat="server" xmlns:asp="#unknown"></asp:textbox>
<asp:textbox id="TextBox2" runat="server" xmlns:asp="#unknown"></asp:textbox>

its working correctly
but when i set texbox visibility false it display an error.
On page load i want to set the visibility of text boxes false .It will visible only radio button click.i think u can understand my problem.pls help me. </sp:radiobutton>
GeneralRe: how to enable textboxes on radio button click using javascript Pin
r aa j16-Jun-08 21:27
r aa j16-Jun-08 21:27 
AnswerRe: how to enable textboxes on radio button click using javascript Pin
Imran Khan Pathan16-Jun-08 21:25
Imran Khan Pathan16-Jun-08 21:25 
Questionhow to create dynamic hyperlinkfield in gridview Pin
sanjeev_150116-Jun-08 20:29
sanjeev_150116-Jun-08 20:29 
AnswerRe: how to create dynamic hyperlinkfield in gridview Pin
Imran Khan Pathan16-Jun-08 21:43
Imran Khan Pathan16-Jun-08 21:43 
Questionadd crystal mearge module in installshield x express Pin
Rinki Mukheraji16-Jun-08 19:36
Rinki Mukheraji16-Jun-08 19:36 
QuestionHiding Query string Pin
venkat86_ece16-Jun-08 17:53
venkat86_ece16-Jun-08 17:53 
AnswerRe: Hiding Query string Pin
Gayani Devapriya16-Jun-08 18:44
Gayani Devapriya16-Jun-08 18:44 
Questionplease solve this webservice problem Pin
Shaik Haneef16-Jun-08 17:09
Shaik Haneef16-Jun-08 17:09 
QuestionGridView to DetailsView (on a different page), passing of variable Pin
Desmond Lim16-Jun-08 16:28
Desmond Lim16-Jun-08 16:28 
AnswerRe: GridView to DetailsView (on a different page), passing of variable Pin
Venkatesh Mookkan16-Jun-08 17:49
Venkatesh Mookkan16-Jun-08 17:49 
GeneralRe: GridView to DetailsView (on a different page), passing of variable Pin
Desmond Lim16-Jun-08 19:51
Desmond Lim16-Jun-08 19:51 
QuestionControl to show Visual Difference between 2 blocks of Text like Word Compare Pin
Member 77672016-Jun-08 11:05
Member 77672016-Jun-08 11:05 
AnswerRe: Control to show Visual Difference between 2 blocks of Text like Word Compare Pin
Christian Graus16-Jun-08 11:36
protectorChristian Graus16-Jun-08 11:36 
QuestionAuto website backup Pin
dptalt16-Jun-08 9:23
dptalt16-Jun-08 9:23 
AnswerRe: Auto website backup Pin
Christian Graus16-Jun-08 11:37
protectorChristian Graus16-Jun-08 11:37 
AnswerRe: Auto website backup Pin
N a v a n e e t h16-Jun-08 21:31
N a v a n e e t h16-Jun-08 21:31 
QuestionCount Membership Pin
keith12316-Jun-08 8:49
keith12316-Jun-08 8:49 

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.