Click here to Skip to main content
15,916,702 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Clearing Dropdownlist keeping the first index Pin
meeram39520-Jan-09 22:59
meeram39520-Jan-09 22:59 
GeneralRe: Clearing Dropdownlist keeping the first index Pin
meeram39520-Jan-09 23:00
meeram39520-Jan-09 23:00 
QuestionHow to get the selected value from the Repeater control? Pin
Karthick_gc20-Jan-09 20:14
Karthick_gc20-Jan-09 20:14 
AnswerRe: How to get the selected value from the Repeater control? Pin
N a v a n e e t h20-Jan-09 21:38
N a v a n e e t h20-Jan-09 21:38 
AnswerRe: How to get the selected value from the Repeater control? Pin
Abhishek Sur20-Jan-09 21:47
professionalAbhishek Sur20-Jan-09 21:47 
Questiondatagrid updation! Pin
RajpootRohan20-Jan-09 19:54
professionalRajpootRohan20-Jan-09 19:54 
AnswerRe: datagrid updation! Pin
RajpootRohan20-Jan-09 21:08
professionalRajpootRohan20-Jan-09 21:08 
Questionhow to create a Menu with 3 level using Menu Control in ASP.net. Pin
Ravi Munde20-Jan-09 19:05
Ravi Munde20-Jan-09 19:05 
AnswerRe: how to create a Menu with 3 level using Menu Control in ASP.net. Pin
Karthick_gc20-Jan-09 19:48
Karthick_gc20-Jan-09 19:48 
QuestionUrl rewriting using c# Pin
Member 422892520-Jan-09 18:23
Member 422892520-Jan-09 18:23 
AnswerRe: Url rewriting using c# Pin
N a v a n e e t h20-Jan-09 18:40
N a v a n e e t h20-Jan-09 18:40 
QuestionGoogle Map API Integration in ASP .NET web page Pin
codingrocks20-Jan-09 18:20
codingrocks20-Jan-09 18:20 
AnswerRe: Google Map API Integration in ASP .NET web page Pin
N a v a n e e t h20-Jan-09 18:41
N a v a n e e t h20-Jan-09 18:41 
AnswerRe: Google Map API Integration in ASP .NET web page Pin
MacSpudster21-Jan-09 9:17
professionalMacSpudster21-Jan-09 9:17 
QuestionCall External Javascript File in aspx file Pin
anandhakrishnan20-Jan-09 17:21
anandhakrishnan20-Jan-09 17:21 
AnswerRe: Call External Javascript File in aspx file Pin
N a v a n e e t h20-Jan-09 17:30
N a v a n e e t h20-Jan-09 17:30 
Best way is to install Firebug or use the Firefox error console to know what's wrong with your JS.

anandhakrishnan wrote:
var paramname=document.getElementById('<%=txtParam.ClientID %>');


I am not sure, but I think the client id used in external JS will not get rendered. Have you checked? If it is not rendering, just pass the id as function parameter. Something like
function validateParameter(textBoxId)
{
   var paramname = document.getElementById(textBoxId);
   ....
}
OnClientClick="javascript: return validateParameter('<%=txtParam.ClientID %>');"



AnswerRe: Call External Javascript File in aspx file Pin
Abhijit Jana20-Jan-09 17:32
professionalAbhijit Jana20-Jan-09 17:32 
QuestionCrystal Report 11 in VB ASP .NET Pin
saberbladez20-Jan-09 15:26
saberbladez20-Jan-09 15:26 
QuestionUser Control Embedded Classes Pin
MacSpudster20-Jan-09 12:06
professionalMacSpudster20-Jan-09 12:06 
QuestionPass Filepath between webforms Pin
Terick20-Jan-09 11:38
Terick20-Jan-09 11:38 
AnswerRe: Pass Filepath between webforms Pin
Christian Graus20-Jan-09 13:38
protectorChristian Graus20-Jan-09 13:38 
GeneralRe: Pass Filepath between webforms Pin
Terick21-Jan-09 3:33
Terick21-Jan-09 3:33 
GeneralRe: Pass Filepath between webforms Pin
Terick21-Jan-09 3:47
Terick21-Jan-09 3:47 
QuestionCustom HttpHandler not working. [modified] Pin
Tristan Rhodes20-Jan-09 5:03
Tristan Rhodes20-Jan-09 5:03 
AnswerRe: Custom HttpHandler not working. Pin
Abhishek Sur20-Jan-09 10:34
professionalAbhishek Sur20-Jan-09 10:34 

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.