Search

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

Matching Posts

  • Re: Session Counter counting fast

    Hi you got it solved?? What was the actual problem?
    Posted to State Management (Forum) by anzer on 11/4/2009
  • Re: Setting the Default Button

    You can do it easily using jQuery.. Refer this link http://greatwebguy.com/programming/dom/default-html-button-submit-on-enter-with-jquery/ What the code in the above link do is call the click event of submit button in your form if user click on ENTER key while on any input elsemnt.. You may need to change the line $( 'button[type=submit] .default' ).click(); to suit with your code You can use the follwoing code istead of the above line $("input[id$=' searchButton ']")
    Posted to Web Forms (Forum) by anzer on 11/1/2009
  • Re: Search Engine

    If you simply wanted to have a search facility in your website without writing an entire search crawling logic, try the free Bing search widget http://www.microsofttranslator.com/Widget/ or google custom search http://dotnetslackers.com/articles/aspnet/Implementing-Search-in-ASP-NET-with-Google-Custom-Search.aspx
    Posted to Free For All (Forum) by anzer on 11/1/2009
  • Re: Calling postback or a server side function from javascript

    Change the code $( '#<%= btnUpdateStudy.ClientID %>' ).click(); to document.getElementById ( '<%= btnUpdateStudy.ClientID %>' ).click(); That $ synatx will work only if you included jQuery in your page..
    Posted to Client Side Web Development (Forum) by anzer on 10/30/2009
  • Re: How can I compile user control to dll

    If you want all the above requirements satisified you may need to rewrite the control as Custom server control.. But if you are ok with the ugly name, you can still do the steps explained in the posted link.. The option "Allow this precompiled site to be updatable" is available in the Publish web site dialogue.. Click on Visual studio's Build Menu and then Publish Web site to find it. See this video also if you needed http://aspalliance.com/1696_Video_Converting_a_User_Control_Into_a_Reusable_Custom_Server_Control
    Posted to Configuration and Deployment (Forum) by anzer on 10/29/2009
  • Re: Calling postback or a server side function from javascript

    [quote user="geetib"]I show a modal box. If user clicks YES, a string "Yes" is returned to function. Now in function, if returned string is "Yes", I need to call aserver side method (the one which is called on clicking on button "Save Changes" ie its On_Click method).[/quote] Simply call javascript click() function for the button.. $( '#<%= btnSave.ClientID %>' ).click(); see this link for a similar implementation http://www.clientsideasp.net
    Posted to Client Side Web Development (Forum) by anzer on 10/29/2009
  • Re: how to remove the current row in the repeater

    If button is not in the repeater what do you mean by current row? is there any way to find the current like a checkbox or the buttons CommandArgument or something?
    Posted to Data Presentation Controls (Forum) by anzer on 10/29/2009
  • Re: how to get data in the form of tree using LiNQ??

    Here is an implemnetion of this using dataset.. http://www.clientsideasp.net/2009/03/27/aspnet-tree-dropdownlist-listbox/ http://www.clientsideasp.net/2009/03/31/database-driven-aspnet-jquery-tree/ Get all the data to and loop through them in recursion, filter to findout the child nodes and print them..
  • Re: Listbox.SelectedIndex Property

    Make sure you are loading the Listbox inside if(! IsPostback) condition.. and also check whther something is happening for the Lisbox in the Page_Load by putting a break point
    Posted to State Management (Forum) by anzer on 10/29/2009
  • Re: how to remove the current row in the repeater

    I still couldn't understand whats your requirement.. By pointer if you mean the mouse pointer, I think its not possible easily.. Why cant you add the button inside repeater itself.. so that you can easily meet your requirement..
    Posted to Data Presentation Controls (Forum) by anzer on 10/29/2009
Page 1 of 122 (1211 items) 1 2 3 4 5 Next > ... Last »