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

ASP.NET

 
GeneralRe: how to install asp.net roles n membership database on remote server Pin
dream_liner_7e728-Oct-08 2:26
dream_liner_7e728-Oct-08 2:26 
QuestionMaster Page Dropdown Problem! Pin
mr_muskurahat27-Oct-08 21:02
mr_muskurahat27-Oct-08 21:02 
AnswerRe: Master Page Dropdown Problem! Pin
luckeryin27-Oct-08 21:27
luckeryin27-Oct-08 21:27 
QuestionHow to show bargraph in asp.net webpages Pin
Member 395908427-Oct-08 20:48
professionalMember 395908427-Oct-08 20:48 
AnswerRe: How to show bargraph in asp.net webpages Pin
mr_muskurahat27-Oct-08 21:04
mr_muskurahat27-Oct-08 21:04 
GeneralRe: How to show bargraph in asp.net webpages Pin
LloydA11129-Oct-08 6:49
LloydA11129-Oct-08 6:49 
QuestionOnline shopping using MIGS Pin
Blumen27-Oct-08 19:45
Blumen27-Oct-08 19:45 
QuestionAsp.net 2.0 with MYSQL Database server help is needed Pin
Rameez Raja27-Oct-08 18:46
Rameez Raja27-Oct-08 18:46 
AnswerRe: Asp.net 2.0 with MYSQL Database server help is needed Pin
AhsanS27-Oct-08 20:47
AhsanS27-Oct-08 20:47 
AnswerRe: Asp.net 2.0 with MYSQL Database server help is needed Pin
N a v a n e e t h27-Oct-08 21:59
N a v a n e e t h27-Oct-08 21:59 
QuestionASP Menu Controls and Query Strings Pin
RB@Emphasys27-Oct-08 18:28
RB@Emphasys27-Oct-08 18:28 
QuestionHow prevent duplicate record run update statement else Insert Statement Pin
zjaffary27-Oct-08 16:58
zjaffary27-Oct-08 16:58 
AnswerRe: How prevent duplicate record run update statement else Insert Statement Pin
Kannan Ar27-Oct-08 18:56
professionalKannan Ar27-Oct-08 18:56 
AnswerRe: How prevent duplicate record run update statement else Insert Statement Pin
meeram39527-Oct-08 21:04
meeram39527-Oct-08 21:04 
AnswerRe: How prevent duplicate record run update statement else Insert Statement Pin
Michael Bookatz28-Oct-08 2:17
Michael Bookatz28-Oct-08 2:17 
QuestionJavascript Issue -Not working in Firefox Pin
Ridge Howison27-Oct-08 11:21
Ridge Howison27-Oct-08 11:21 
Thank you for reading this post. I am new to Javascript and ASP.NET development so please bear with me. I have a page that renders fine in IE but the same functionality gives me error in Firefox. I have a form which has a bunch of check boxes and there is a a particular checkbox lets call it ABC, and clicking on it, it needs to uncheck the other boxes, and if other check box is clicked, it shud uncheck the the ABC checkbox. The checkbox are created dynamically through code in a table cell. My app works fine in IE but not in Firefox. I know there are a few keywords that is Microsoft proprietary, and is not all browser friendly, but i cannot figure out how to change it. Here is my code below. All help is appreciated. the error I get in Firefox and Safari when I click on any checkbox is ctrl.ParentElement has no properties. All help and code sample/corrections are appreciated. Please note: I am a systems support guy who has to maintain pages.

function ValidateCheckedValues( ctrl , isChecked )
{

// Purpose : This function is called when the user clicks on any checkbox in the equipment requirements table on the page
// If the user clicks on the "ABC" checkbox it clears all the check boxes for that meeting,
// but if the user checked any other checkbox, it removes the check from the "ABC" checkbox

try
{
if( ctrl.parentElement.attributes("SubCode").value == "NONE" )
{
if( isChecked )
{
for( counter = 3 ; counter < ctrl.parentElement.parentElement.parentElement.children.length ; counter++ )
{
ctrl.parentElement.parentElement.parentElement.children( counter ).children( 0 ).children( 0 ).checked = false;
}
ctrl.checked = true;
}
}
else
{
if( isChecked )
{
for( counter = 3 ; counter < ctrl.parentElement.parentElement.parentElement.children.length ; counter++ )
{
if( ctrl.parentElement.parentElement.parentElement.children( counter ).children( 0 ).attributes("SubCode").value == "NONE" )
{
ctrl.parentElement.parentElement.parentElement.children( counter ).children( 0 ).children( 0 ).checked = false;
}
}
}
}
}
catch( ex )
{
alert( ex.message );
}
}
AnswerRe: Javascript Issue -Not working in Firefox Pin
Guffa27-Oct-08 16:12
Guffa27-Oct-08 16:12 
QuestionFormat the XML file With Asp.net Csharp Pin
zjaffary27-Oct-08 10:36
zjaffary27-Oct-08 10:36 
AnswerCross post and Repost Pin
led mike27-Oct-08 11:02
led mike27-Oct-08 11:02 
QuestionEdit mode in GridView changes column width Pin
Pravinc198427-Oct-08 8:52
Pravinc198427-Oct-08 8:52 
AnswerRe: Edit mode in GridView changes column width Pin
meeram39527-Oct-08 21:17
meeram39527-Oct-08 21:17 
QuestionTimeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Pin
AndersgRex27-Oct-08 6:40
AndersgRex27-Oct-08 6:40 
AnswerRe: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Pin
Rutvik Dave27-Oct-08 6:53
professionalRutvik Dave27-Oct-08 6:53 
AnswerRe: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Pin
AndersgRex27-Oct-08 8:31
AndersgRex27-Oct-08 8:31 
GeneralRe: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Pin
Ashfield27-Oct-08 9:48
Ashfield27-Oct-08 9:48 

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.