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

ASP.NET

 
GeneralRe: change image format Pin
trilokharry16-Jun-08 21:44
trilokharry16-Jun-08 21:44 
GeneralRe: change image format Pin
Imran Khan Pathan16-Jun-08 21:50
Imran Khan Pathan16-Jun-08 21:50 
GeneralRe: change image format Pin
Member 343561417-Jun-08 0:01
Member 343561417-Jun-08 0:01 
QuestionFailed to access IIS metabase. Pin
BalasubramanianK16-Jun-08 20:48
BalasubramanianK16-Jun-08 20:48 
AnswerRe: Failed to access IIS metabase. Pin
www.Developerof.NET16-Jun-08 22:14
www.Developerof.NET16-Jun-08 22:14 
GeneralRe: Failed to access IIS metabase. Pin
BalasubramanianK16-Jun-08 22:35
BalasubramanianK16-Jun-08 22:35 
QuestionDate Sorting in Gridview Pin
www.Developerof.NET16-Jun-08 20:39
www.Developerof.NET16-Jun-08 20:39 
AnswerRe: Date Sorting in Gridview Pin
Imran Khan Pathan16-Jun-08 21:36
Imran Khan Pathan16-Jun-08 21:36 
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 

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.