Search

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

Matching Posts

  • Re: How to find a control in FormView

    Hi, Look at the following example provided on jQuery documentation page for find. It clearly states that it will find child elements of the selected element. So you have to first select your parent, might be that form, then find your element under it, but use the jQuery expression for specifiy the element, that is to find element based on id use #id. http://docs.jquery.com/Traversing/find
    Posted to Component Discussions (Forum) by ziqbalbh on 10/12/2009
  • Re: trying to get label text in Javascript

    Hi, When a control is used in a container such as grid or list. It will have different id for each row. So you need to access it differently. Why not you attach the event in rowdatabound, and pass the client id of that instance of control to the function. That would work then.
    Posted to Component Discussions (Forum) by ziqbalbh on 10/12/2009
  • Re: Integrated Windows Authentication

    You need to do two things. First set your athentication mode to windows, and then go to IIS, locate the directory or website where you want windows authentication enabled, and then open it's properties, directory security, authentication methods, and uncheck all checkboxes except integrated windows authentication. Now it will prompt for username/password for those users who are not authenticated already.
    Posted to Security (Forum) by ziqbalbh on 10/12/2009
  • Re: How to show one record(categories) in a multiple columns (4 columns) in a Datalist

    Hi, It is not a difficult thing too, here is an idea, how you can do that. add a panel, place your list in it, and initialy add the style attribute of "display:none", that will hide that panel. then implement hover effect either using css using following technique or javascript mouseover event of that category link. http://meyerweb.com/eric/css/edge/menus/demo.html Hope this will help.
    Posted to Data Presentation Controls (Forum) by ziqbalbh on 8/21/2009
    Filed under: css
  • Re: How to persist data across multiple requests using the context from an httpmodule....ASP.NET

    Hi, I think you can make that div server side, that would provide you option to manipulate that easily from server side. If you don't want to do that, then you can embed any data using <% = PublicPageVariable %>. You can place your data in session/application variable for later access. And by the way jquery can access server generated ids too, just used following syntax $("id$=divYourName").html() See details here http://docs.jquery.com/Selectors/attributeEndsWith#attributevalue
    Posted to State Management (Forum) by ziqbalbh on 8/19/2009
    Filed under: JavaScript
  • Re: How to show one record(categories) in a multiple columns (4 columns) in a Datalist

    Hi, Just set following three properties of data list, and you will have your desired result. RepeatLayout = Flow RepeatDirection = Vertical RepeatColumns = 4/5 You will get what you were looking for.
    Posted to Data Presentation Controls (Forum) by ziqbalbh on 8/19/2009
  • Re: Multiple emails with Global Friendly Name

    Hi, I don't think there is a way to do that, but you can send separate email to each email address, or you can create a list on your email server, and send to that list. That might help.
    Posted to Web Forms (Forum) by ziqbalbh on 8/19/2009
  • Re: WindowsIdentity without Authentication

    Hi, Whenever you use windows authentication then your user must be in that same intranet domain environment, or if the site is publich then they will always be prompted for username. You can also use following three server variables instead of usual identity or user in your request. AUTH_USER DOMAIN\username LOGON_USER DOMAIN\username REMOTE_USER DOMAIN\username
    Posted to Configuration and Deployment (Forum) by ziqbalbh on 8/19/2009
  • Re: dedicated application pool

    ASP.NET applications are executed in a separate execution environment, so when they crash, they don't take down your web server. IIS 6 and above provide options for creating application pools, basically another execution boundary so that if any application in that pool crashes, it won't take down all other applications on that server. pool could be recycled too, if they are unused or start to get unmanaged, all automatically. If your applications are heavy, you can keep each application on
    Posted to Getting Started (Forum) by ziqbalbh on 7/14/2009
  • Re: CruiseControl .Net

    Hi, Could you give more details about this, its not a big issue. You must know dependecy structure of your projects and then can align these things easily. But I usually use NAnt script for building these complex project dependecies, where I can wait to finish one and then start another.
    Posted to Component Discussions (Forum) by ziqbalbh on 7/22/2008
Page 1 of 36 (359 items) 1 2 3 4 5 Next > ... Last ยป