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

ASP.NET

 
AnswerRe: Re redirection to Login.aspx Pin
Daniel Casserly9-Sep-10 4:50
Daniel Casserly9-Sep-10 4:50 
GeneralRe: Re redirection to Login.aspx Pin
Not Active9-Sep-10 5:30
mentorNot Active9-Sep-10 5:30 
GeneralRe: Re redirection to Login.aspx Pin
Ajay Kale New9-Sep-10 23:15
Ajay Kale New9-Sep-10 23:15 
AnswerRe: Re redirection to Login.aspx Pin
Not Active9-Sep-10 5:29
mentorNot Active9-Sep-10 5:29 
GeneralRe: Re redirection to Login.aspx Pin
Ajay Kale New9-Sep-10 23:31
Ajay Kale New9-Sep-10 23:31 
GeneralRe: Re redirection to Login.aspx Pin
Daniel Casserly10-Sep-10 1:15
Daniel Casserly10-Sep-10 1:15 
GeneralRe: Re redirection to Login.aspx Pin
Not Active10-Sep-10 2:42
mentorNot Active10-Sep-10 2:42 
GeneralRe: Re redirection to Login.aspx Pin
Ajay Kale New10-Sep-10 2:47
Ajay Kale New10-Sep-10 2:47 
GeneralRe: Re redirection to Login.aspx Pin
Not Active10-Sep-10 2:54
mentorNot Active10-Sep-10 2:54 
GeneralRe: Re redirection to Login.aspx Pin
Ajay Kale New10-Sep-10 3:37
Ajay Kale New10-Sep-10 3:37 
GeneralRe: Re redirection to Login.aspx Pin
Not Active10-Sep-10 3:50
mentorNot Active10-Sep-10 3:50 
GeneralRe: Re redirection to Login.aspx Pin
Ajay Kale New13-Sep-10 0:31
Ajay Kale New13-Sep-10 0:31 
AnswerRe: Re redirection to Login.aspx Pin
Fayu9-Sep-10 6:02
Fayu9-Sep-10 6:02 
GeneralRe: Re redirection to Login.aspx Pin
Ajay Kale New9-Sep-10 23:27
Ajay Kale New9-Sep-10 23:27 
QuestionThe function gets Fired Twice why ? Pin
Vimalsoft(Pty) Ltd8-Sep-10 22:35
professionalVimalsoft(Pty) Ltd8-Sep-10 22:35 
AnswerRe: The function gets Fired Twice why ? Pin
Fayu9-Sep-10 6:05
Fayu9-Sep-10 6:05 
GeneralRe: The function gets Fired Twice why ? Pin
Vimalsoft(Pty) Ltd9-Sep-10 20:52
professionalVimalsoft(Pty) Ltd9-Sep-10 20:52 
GeneralRe: The function gets Fired Twice why ? Pin
JV99999-Sep-10 22:18
professionalJV99999-Sep-10 22:18 
QuestionAjax runtime script failed to load Pin
Ahamed Azeem8-Sep-10 20:16
Ahamed Azeem8-Sep-10 20:16 
AnswerRe: Ajax runtime script failed to load Pin
Ankur\m/8-Sep-10 23:53
professionalAnkur\m/8-Sep-10 23:53 
Questionpopulating dropdown on selectedIndexchange event of another dropdown within listview control Pin
antony beula8-Sep-10 18:14
antony beula8-Sep-10 18:14 
AnswerRe: populating dropdown on selectedIndexchange event of another dropdown within listview control Pin
JV99999-Sep-10 1:43
professionalJV99999-Sep-10 1:43 
QuestionCalender extender in gridview Pin
muralekarthick8-Sep-10 4:41
muralekarthick8-Sep-10 4:41 
AnswerRe: Calender extender in gridview Pin
Yusuf8-Sep-10 11:30
Yusuf8-Sep-10 11:30 
Questionhow make a group checkbox vb.net (asp.net) Pin
Sandraa8-Sep-10 3:26
Sandraa8-Sep-10 3:26 
Hi all,

I have one question very very easy but what I don't know do.
With vb 6 when I want create a group checkbox only I have that copy and paste the same checkbox into panel and vb 6 create the group.
Well, with vb.net and asp.net (v.studio 2008) if I copy and paste the name ID is diferent and is not posible create a group with properties.
Also I have tried select 2 or 3 checkbox with key "control + click" but nothing is not posible.
Later I have tried to put into code the name of group and I don't see errors but I don't know how call later to group, I put you my simple code that I want to do:
<asp:Panel ID="Panel1" runat="server" Width="451px" >
    <asp:CheckBox ID="ChkDia1" runat="server" CssClass="negro11b" Text="Lunes" group="ChkDia" />
    <asp:CheckBox ID="ChkDia2" runat="server" CssClass="negro11b" Text="Martes" group="ChkDia" />
    <asp:CheckBox ID="ChkDia3" runat="server" CssClass="negro11b" Text="Miercoles" group="ChkDia"/>
    <asp:CheckBox ID="ChkDia4" runat="server" CssClass="negro11b" Text="Jueves" group="ChkDia"/>
    <asp:CheckBox ID="ChkDia5" runat="server" CssClass="negro11b" Text="Viernes" group="ChkDia"/>
    <asp:CheckBox ID="ChkDia6" runat="server" CssClass="negro11b" Text="Sabado" group="ChkDia"/>
    <asp:CheckBox ID="ChkDia7" runat="server" CssClass="negro11b" Text="Domingo" group="ChkDia"/>
</asp:Panel>


'Ocultar todos chkDia
Dim i As Integer
For i = 1 To 7
    ChkDia(i).Visible = False

Next


Thanks for your help!

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.