Click here to Skip to main content
15,901,205 members
Home / Discussions / C#
   

C#

 
QuestionHow can I control the checkbox using other application? Pin
nizhigang31-May-04 17:03
nizhigang31-May-04 17:03 
AnswerRe: How can I control the checkbox using other application? Pin
Mazdak31-May-04 18:57
Mazdak31-May-04 18:57 
GeneralRe: How can I control the checkbox using other application? Pin
nizhigang31-May-04 20:30
nizhigang31-May-04 20:30 
GeneralRe: How can I control the checkbox using other application? Pin
Mazdak31-May-04 23:08
Mazdak31-May-04 23:08 
GeneralRe: How can I control the checkbox using other application? Pin
nizhigang1-Jun-04 20:18
nizhigang1-Jun-04 20:18 
QuestionArrow Head instead of '+' or ' - ' signs in TreeView Conrtol ? Pin
sachinkalse31-May-04 16:40
sachinkalse31-May-04 16:40 
GeneralLinking of 2 to 3 WebForms Pin
HappyKim31-May-04 16:36
HappyKim31-May-04 16:36 
GeneralRe: Linking of 2 to 3 WebForms Pin
Aryadip31-May-04 18:59
Aryadip31-May-04 18:59 
hi,
Ur Q : How to Call WebForm using DropDownList?

Ans : If I have understood your query... then the answer is you need to handle "SelectedIndexChanged" event of the DropDownList.
From the "sender" parameter you can get the selected Item. Based on the item selected you can redirect the page to a different web form using "Response.Redirect()" method.

ur Q : How to Enable/Disable RadioButtonList in a certain senario:
1. You are in a current WebForm (Set As Start Page) default.
2. A certain RadioButtonList with (yes/no) choices will enable/disable a certain RadioButtonList in another WebForm that is part of the project.

Ans : Well, this Q is bit unclear... r u planning to show the second page on the change of the radio button or r u planning to first select the radio button and then click a button say "Next" button to go to the next page??...

Anyways... let me give you the hint of handling the senario... If you are planning to handle the Radio button click event... then you need to handle "SelectedIndexChanged" of RadioButtonList.
On click you need to identify which radio button is clicked and either you append the value to the querystring or store it in a Session variable. And then redirect to the next page using "Response.Redirect()" method.
In the Page_Load of the next page extract the value from querystring or Session variable and then with a simple if or switch enable or disable whatever control you want to using itz "Enabled" property...
eg : RadioButton1.Enabled = false;


Hope this solves your problem...

regards,
Aryadip.


Cheers !! and have a Funky day !!

GeneralRe: Linking of 2 to 3 WebForms Pin
HappyKim1-Jun-04 14:21
HappyKim1-Jun-04 14:21 
GeneralXP visual style with buttons Pin
paulb31-May-04 14:46
paulb31-May-04 14:46 
GeneralRe: XP visual style with buttons Pin
Judah Gabriel Himango31-May-04 18:43
sponsorJudah Gabriel Himango31-May-04 18:43 
GeneralRegular Expressions Pin
Johnnny31-May-04 13:14
Johnnny31-May-04 13:14 
GeneralRe: Regular Expressions Pin
Aryadip31-May-04 18:30
Aryadip31-May-04 18:30 
GeneralRe: Regular Expressions Pin
OmegaSupreme1-Jun-04 1:13
OmegaSupreme1-Jun-04 1:13 
GeneralRich Text Box Pin
Johnnny31-May-04 13:12
Johnnny31-May-04 13:12 
GeneralRe: Rich Text Box Pin
Judah Gabriel Himango31-May-04 18:11
sponsorJudah Gabriel Himango31-May-04 18:11 
Generalselecting node in TreeView Pin
Ammar Ben Hadj Amor31-May-04 7:23
professionalAmmar Ben Hadj Amor31-May-04 7:23 
GeneralRe: selecting node in TreeView Pin
Dave Kreskowiak31-May-04 7:47
mveDave Kreskowiak31-May-04 7:47 
GeneralRe: selecting node in TreeView Pin
leppie31-May-04 8:51
leppie31-May-04 8:51 
GeneralWeb Service Error Pin
MrJJKoolJ31-May-04 6:59
MrJJKoolJ31-May-04 6:59 
GeneralRe: Web Service Error Pin
Dave Kreskowiak31-May-04 7:49
mveDave Kreskowiak31-May-04 7:49 
GeneralRe: Web Service Error Pin
MrJJKoolJ31-May-04 9:25
MrJJKoolJ31-May-04 9:25 
GeneralRe: Web Service Error Pin
Dave Kreskowiak31-May-04 11:30
mveDave Kreskowiak31-May-04 11:30 
Generali am not able to use the name space system.web Pin
VIJAYPAPUPAGER31-May-04 5:42
VIJAYPAPUPAGER31-May-04 5:42 
GeneralRe: i am not able to use the name space system.web Pin
Stefan Troschuetz31-May-04 5:52
Stefan Troschuetz31-May-04 5:52 

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.