Click here to Skip to main content
15,892,768 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionText Changed Event (Urgent) Pin
srinivaskonijeti20-Jan-09 23:53
srinivaskonijeti20-Jan-09 23:53 
AnswerRe: Text Changed Event (Urgent) Pin
Aman Bhullar20-Jan-09 23:59
Aman Bhullar20-Jan-09 23:59 
GeneralRe: Text Changed Event (Urgent) Pin
srinivaskonijeti21-Jan-09 0:01
srinivaskonijeti21-Jan-09 0:01 
GeneralRe: Text Changed Event (Urgent) Pin
Christian Graus21-Jan-09 1:10
protectorChristian Graus21-Jan-09 1:10 
GeneralRe: Text Changed Event (Urgent) Pin
Abhijit Jana21-Jan-09 0:44
professionalAbhijit Jana21-Jan-09 0:44 
QuestionLossing Session, when the application is running Pin
Satish - Developer20-Jan-09 23:10
Satish - Developer20-Jan-09 23:10 
AnswerRe: Lossing Session, when the application is running Pin
Abhijit Jana20-Jan-09 23:27
professionalAbhijit Jana20-Jan-09 23:27 
QuestionHow to Identify which Radio Buttons checked in a placeholder control? Pin
meeram39520-Jan-09 23:06
meeram39520-Jan-09 23:06 
I am generating a radiobuttonlist and adding them in a placeholder control. Following is the code:
 DataSet dsUserTypes = new DataSet();
 int CompanyId = Convert.ToInt32(ProjectList.SelectedValue);
dsUserTypes = u.GetUserTypesforProjects(CompanyId); // Gets the data from database.

RadioButtonList UserTypes = new RadioButtonList();
UserTypes.ID = "UserTypesList";

for (int j = 0; j <= dsUserTypes.Tables[0].Rows.Count - 1; j++)
{
    UserTypeName = dsUserTypes.Tables[0].Rows[j]["SecurityGroupName"].ToString().Trim();
    UserTypes.Items.Add(UserTypeName);
    UserTypeName = "";
}
RadioButtonPlaceHolder.Controls.Add(UserTypes);


Following is the placeholder control in htmld code:
<td>
                       <asp:PlaceHolder ID="RadioButtonPlaceHolder" runat="server"></asp:PlaceHolder>
                       </td>


The user types will vary from 4 to 5. How should I come to know that which radio button is checked by the user? Can anybody please help on this? Thanks in advance.

Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.

Questionfiring link click event by javascript Pin
Sumit Lamba20-Jan-09 23:01
Sumit Lamba20-Jan-09 23:01 
AnswerRe: firing link click event by javascript Pin
Aman Bhullar20-Jan-09 23:19
Aman Bhullar20-Jan-09 23:19 
GeneralRe: firing link click event by javascript Pin
Sumit Lamba21-Jan-09 17:46
Sumit Lamba21-Jan-09 17:46 
GeneralRe: firing link click event by javascript Pin
Aman Bhullar22-Jan-09 4:54
Aman Bhullar22-Jan-09 4:54 
GeneralRe: firing link click event by javascript Pin
Sumit Lamba4-Feb-09 23:18
Sumit Lamba4-Feb-09 23:18 
QuestionAuthentication problem while buplishing a site Pin
Ha ha ha ha ha ha ha ha20-Jan-09 22:52
Ha ha ha ha ha ha ha ha20-Jan-09 22:52 
AnswerRe: Authentication problem while buplishing a site Pin
Muhammad Gouda21-Jan-09 19:59
Muhammad Gouda21-Jan-09 19:59 
Questionget rowindex of the selected item... Pin
RajpootRohan20-Jan-09 22:50
professionalRajpootRohan20-Jan-09 22:50 
QuestionProblem in Retrieving text of linkbutton using Java Script Pin
ais0720-Jan-09 22:28
ais0720-Jan-09 22:28 
AnswerRe: Problem in Retrieving text of linkbutton using Java Script Pin
Abhishek Sur20-Jan-09 22:35
professionalAbhishek Sur20-Jan-09 22:35 
GeneralRe: Problem in Retrieving text of linkbutton using Java Script Pin
ais0720-Jan-09 22:42
ais0720-Jan-09 22:42 
AnswerRe: Problem in Retrieving text of linkbutton using Java Script Pin
banker_kiran20-Jan-09 22:43
banker_kiran20-Jan-09 22:43 
GeneralRe: Problem in Retrieving text of linkbutton using Java Script Pin
ais0720-Jan-09 22:47
ais0720-Jan-09 22:47 
GeneralRe: Problem in Retrieving text of linkbutton using Java Script Pin
banker_kiran20-Jan-09 23:01
banker_kiran20-Jan-09 23:01 
GeneralRe: Problem in Retrieving text of linkbutton using Java Script Pin
ais0720-Jan-09 23:18
ais0720-Jan-09 23:18 
GeneralRe: Problem in Retrieving text of linkbutton using Java Script Pin
banker_kiran20-Jan-09 23:26
banker_kiran20-Jan-09 23:26 
QuestionRelated textbox items should be displayed in dropdown list Pin
elci20-Jan-09 22:10
elci20-Jan-09 22:10 

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.