Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Basics
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 11th, 2008, 01:13 AM
Authorized User
 
Join Date: Dec 2007
Posts: 38
Thanks: 2
Thanked 0 Times in 0 Posts
Default

just now i opened immediate window,it was given some warning like Warning: Cannot debug script code. Script debugging is disabled for the application you are debugging. Please uncheck the 'Disable script debugging' option on the Internet Options dialog box (Advanced page) for Internet Explorer and restart the process.so that i opened internet options and unchecked it. now my page including the js file and getting error like 'Object required',it is showing error on onclick event.
 
Old March 11th, 2008, 01:43 AM
Authorized User
 
Join Date: Dec 2007
Posts: 38
Thanks: 2
Thanked 0 Times in 0 Posts
Default

if i am irritating to you then sorry for it,

i tried like this after getting error,its working fine
button1.Attributes.Add("onclick","return test1(' " & txt1.ClientId& " ')")

function test1(s)
     {
       var t=document.getElementById(s);
           if (t.value=="")
               {
                 alert("testing");
                 return false;
               }
      return true;
  }
 }

,but how can i pass here 18 controls ids,it is not possible right,so that i dont want to pass any parameter to my function,without passing parameter is it possible to fire this function
 
Old March 11th, 2008, 07:12 AM
Authorized User
 
Join Date: Dec 2007
Posts: 38
Thanks: 2
Thanked 0 Times in 0 Posts
Default

i got it.
//code behind
button1.Attributes.Add("onclick","return test1()")

// above function is belongs to .js file

function test1()
     {
       var t=document.getElementById("txt1"); //here txt1 is textbox control name.
           if (t.value=="")
               {
                 alert("testing");
                 return false;
               }
      return true;
  }
 }
 
Old March 11th, 2008, 07:36 AM
Wrox Author
 
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
Send a message via AIM to dparsons
Default

Glad you got it working.

================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
.: Wrox Technical Editor / Author :.
Wrox Books 24 x 7
================================================== =========





Similar Threads
Thread Thread Starter Forum Replies Last Post
To include a js file into another js file jdang67 Javascript 4 February 28th, 2008 03:32 AM
Google Maps JS in ASPX page error kingroon ASP.NET 2.0 Basics 0 December 7th, 2007 09:52 AM
Dynamically include an aspx page ndkicha_1981 General .NET 0 October 19th, 2007 03:12 AM
HelpX_x; How do I include a variable file in aspx? CSharp1314 Classic ASP Basics 16 May 5th, 2004 06:15 PM
Include file within aspx jieli1001 ASP.NET 1.0 and 1.1 Professional 2 July 29th, 2003 04:32 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.