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

ASP.NET

 
AnswerRe: HTTP Request Error Pin
Sam Xavier22-Jul-08 21:18
Sam Xavier22-Jul-08 21:18 
Questionhow to use crystal report in asp.net 2005? Pin
BalasubramanianK21-Jul-08 19:38
BalasubramanianK21-Jul-08 19:38 
QuestionHow to work with Crystal Reports in asp.net Pin
BalasubramanianK21-Jul-08 18:52
BalasubramanianK21-Jul-08 18:52 
AnswerRe: How to work with Crystal Reports in asp.net Pin
sepel21-Jul-08 23:43
sepel21-Jul-08 23:43 
QuestionProblem to display data from database visullay inside table control . Pin
Rameez Raja21-Jul-08 16:53
Rameez Raja21-Jul-08 16:53 
QuestionStorage of String constants Pin
scottgp21-Jul-08 13:53
professionalscottgp21-Jul-08 13:53 
AnswerRe: Storage of String constants Pin
N a v a n e e t h21-Jul-08 18:08
N a v a n e e t h21-Jul-08 18:08 
Questioncustom control visibility Pin
kjosh21-Jul-08 13:39
kjosh21-Jul-08 13:39 
1) I have one custom control Datepicker. In my aspx page I am using that custom control liek the below:

<asp:RadioButtonList ID="rbl" runat="server" RepeatDirection="Horizontal">

<asp:ListItem Value="1" onclick="ChangeA(this)">a</asp:ListItem>

<asp:ListItem Value="2" onclick="ChangeB(this)">b</asp:ListItem>



</asp:RadioButtonList>

<vv:DatePicker ID="Dp1" Text="StartDate" .../>

<vv:DatePicker ID="Dp2" Text="EndDate">

When the option"a" is selected I have to show the dp1, dp2. When "b" is selected, hide the Dp1, Dp2. So I have the Javascript like the below:

function ChangeA(theradio)
{

document.getElementById('<%=Dp1.ClientID%>').style.visibility = 'visible';
document.getElementById('<%=Dp2.ClientID%>').style.visibility = 'visible';

}

function ChangeB(theradio)

{

document.getElementById('<%=Dp1.ClientID%>').style.visibility = 'hidden';
document.getElementById('<%=Dp2.ClientID%>').style.visibility = 'hidden';

}

I am getting the error "Object required" . for the Dp1, Dp2. If I put the Text boxes insted of Dp1, Dp2 the Javascript code is working fine. How to set visibility for custom control.

2) I have Textbox for which visibility is set to False by design. How to set visibility True using Javascript. My page is having the Master page not HTML body.

For this also I am getting Object required error.

Thanks in advance
QuestionPassword Text Box Pin
mrkeivan21-Jul-08 10:52
mrkeivan21-Jul-08 10:52 
AnswerRe: Password Text Box Pin
Herman<T>.Instance21-Jul-08 11:44
Herman<T>.Instance21-Jul-08 11:44 
GeneralRe: Password Text Box Pin
mrkeivan24-Jul-08 19:34
mrkeivan24-Jul-08 19:34 
AnswerRe: Password Text Box Pin
Nirandas21-Jul-08 17:40
Nirandas21-Jul-08 17:40 
AnswerRe: Password Text Box Pin
eyeseetee21-Jul-08 21:35
eyeseetee21-Jul-08 21:35 
GeneralMixed Authorization Pin
Brady Kelly21-Jul-08 10:43
Brady Kelly21-Jul-08 10:43 
Questionpersist css ?? Pin
C. L. Phillip21-Jul-08 9:20
C. L. Phillip21-Jul-08 9:20 
AnswerRe: persist css ?? Pin
ToddHileHoffer21-Jul-08 9:29
ToddHileHoffer21-Jul-08 9:29 
GeneralMissing Request Parameter Pin
Brady Kelly21-Jul-08 8:14
Brady Kelly21-Jul-08 8:14 
JokeRe: Missing Request Parameter Pin
Paul Conrad21-Jul-08 8:49
professionalPaul Conrad21-Jul-08 8:49 
GeneralRe: Missing Request Parameter Pin
Brady Kelly21-Jul-08 8:53
Brady Kelly21-Jul-08 8:53 
GeneralRe: Missing Request Parameter Pin
Paul Conrad21-Jul-08 8:58
professionalPaul Conrad21-Jul-08 8:58 
Questionasp.net web app. with javascript that launch an .exe Pin
EdgarF8321-Jul-08 7:23
EdgarF8321-Jul-08 7:23 
AnswerRe: asp.net web app. with javascript that launch an .exe Pin
Paul Conrad21-Jul-08 8:50
professionalPaul Conrad21-Jul-08 8:50 
GeneralRe: asp.net web app. with javascript that launch an .exe Pin
EdgarF8321-Jul-08 9:01
EdgarF8321-Jul-08 9:01 
GeneralRe: asp.net web app. with javascript that launch an .exe Pin
Paul Conrad21-Jul-08 9:06
professionalPaul Conrad21-Jul-08 9:06 
GeneralRe: asp.net web app. with javascript that launch an .exe Pin
EdgarF8321-Jul-08 9:13
EdgarF8321-Jul-08 9:13 

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.