Search

You searched for the word(s): userid:805434

Matching Posts

  • Re: Validation for stop submit

    [quote user="anirudha gupta"] <script language= "javascript" type= "text/javascript" src= "Isense.js" > </script> [/quote] Add <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.3.2.js" /> [quote user="anirudha gupta"]OnClientClick= "val()" [/quote] OnClientClick= " return val()"
    Posted to Web Forms (Forum) by imran_ku07 on 11/26/2009
  • Re: Building 3-Tier Architecture using LINQ

    Haava a Look at at this, http://forums.asp.net/p/1264164/3478994.aspx
    Posted to Architecture (Forum) by imran_ku07 on 11/26/2009
  • Re: jQuery: How to show div when an asp.net textbox is clicked?

    [quote user="mychucky"]$("input[id$=txtInsertComments").click(function() [/quote] Yes Raghav is correct, The Only Problem is that you are selecting a Control which is not yet define, Better way is put them in ready function, $(document).ready(function(){ $('.expanding').autogrow(); $("#commands").hide("normal"); $("input[id$=txtInsertComments").click(function() { $("#commands").show("normal"); }); }); </ scrip
    Posted to Client Side Web Development (Forum) by imran_ku07 on 11/26/2009
  • Re: Error: 'null' is null or not an object.

    The simple way is use var tags = document.getElementsByTagName('th'); for (var i=0; i < tags.length; i++) { if(tags[i].parentNode.parentNode.parentNode.id.indexOf(" GridViewIdHere ")>-1) { //This is your GridView th } }
    Posted to Client Side Web Development (Forum) by imran_ku07 on 11/26/2009
  • Re: Hide/Change Sort expression link in gridview

    Here there are two solutions With Jquery <script language="javascript"> $(function(){ $("a[href]").each(function(n){ if(this.href.indexOf("GridView1")>-1) { var a=this.href; this.href="#"; $(this).click(function(event){ this.href=a; }); } }); }); </script> Without Jquery <script language="javascript"> var tags = document.getElementsByTagName('a'); for (var i=0; i < tags.length; i++) { if(tags[i].href.indexOf("GridView1"
    Posted to Data Presentation Controls (Forum) by imran_ku07 on 11/26/2009
  • Re: Return Json obj from C#

    By the way, from the above discussion and with the help of you, i am able to create a simple JSONP application and want to share, may be this will help full for others. I think the example is small and fast because Response is End quickly after the necessary code. Remote WebService : using System; using System.Collections; using System.Linq; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; using System.Xml.Linq; using System.Collections.Generic; using System.Web.Script
    Posted to Client Side Web Development (Forum) by imran_ku07 on 11/24/2009
  • Re: Return Json obj from C#

    [quote user="gt1329a"]That's not a legitimate solution[/quote] But this may be Legtimate which is benificial for both 1.1 application and JSONP without any configuration, using System; using System.Collections; using System.Linq; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; using System.Xml.Linq; using System.Collections.Generic; using System.Web.Script.Services; using System.Web.Script.Serialization; [WebService(Namespace = "http://tempuri
    Posted to Client Side Web Development (Forum) by imran_ku07 on 11/23/2009
  • Re: Return Json obj from C#

    Thanks But I was just answering your this Question gt1329a: Do you have any working example of getting an ASMX web service to serve JSON without the [ScriptService] attribute?
    Posted to Client Side Web Development (Forum) by imran_ku07 on 11/23/2009
  • Re: Return Json obj from C#

    Yes you are right, i was just showing an example of how to return JSON without ScriptService. However there are still some benefits, If you are using .NET 1.1 that always return SOAP. If you want to call cross domain call (JSONP) technique which is avoid by ASP.NET AJAX, http://weblogs.asp.net/scottgu/archive/2007/04/04/json-hijacking-and-how-asp-net-ajax-1-0-mitigates-these-attacks.aspx
    Posted to Client Side Web Development (Forum) by imran_ku07 on 11/21/2009
  • Re: Screen Scraping

    take a Look at this http://www.highoncoding.com/Articles/605_Creating_Dynamic_Page_from_Any_URL.aspx download the sample GeneralDynamicPage.zip
    Posted to Web Forms (Forum) by imran_ku07 on 11/20/2009
Page 1 of 315 (3150 items) 1 2 3 4 5 Next > ... Last »