Search

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

Matching Posts

  • Re: Wrong DataPath of TreeView.SelectedNode

    I am not sure if a better solution is there, but one solution is to add the name of the parent node as the ValueField attribute of the tree node. Like this: <asp:TreeView ID="xmlTreeView" runat="server" AutoGenerateDataBindings="true" OnSelectedNodeChanged="xmlTreeView_SelectedNodeChanged"> <DataBindings> <asp:TreeNodeBinding DataMember="rtp" ValueField="name" /> </DataBindings> </asp:TreeView> This will get
    Posted to Web Forms (Forum) by nishanthnair on 7/7/2009
  • Re: adding DropDownList items from string[] array

    Try this. (( DropDownList )FormView1.FindControl( "DropDownListColors" )).Items.Add(new ListItem(coloritems[i], coloritems[i]));
    Posted to Web Forms (Forum) by nishanthnair on 7/3/2009
  • Re: How can I create submit button that disable when doing SQL method then enable when finished??

    U need to do asynchronous programming to do this if u dont want a post back in between. Use Asp.NET Ajax Client side library to call a webservice method which will execute your SQL operation. This call will be asynchronous via javascript. So on click, you disable the button using JS and then call the webservice method. This call will have a call back event handler which will be called once the webservice method is executed. inside this callback method, enable the button . Reference: http://weblogs
    Posted to Web Forms (Forum) by nishanthnair on 7/2/2009
  • Re: web service to accept multiple records

    I am not sure if I understood your question. Do u mean that the client will send your Webservice the SOAP XML ? or a list of XML strings as input parameters to your web method? if latter is the case, accept inputs as List<string> and each item in the list will be an XML string using which u can recreate your Rows or columns or whatever. So only one webservice call is required to process a bunch of records. Please let me know if I was addressing the wrong issue.
    Posted to XML Web Services (Forum) by nishanthnair on 7/2/2009
  • Re: adding DropDownList items from string[] array

    In which event is the initial values are loaded to the dropdown. Can you check whether the initial load of the dropdownis again called after the method in which new color values you are assigning is executed? Why dont u try Dropdownlist.items.Add(instead of Items.Insert) and coloritems.Length (instead of coloritems.GetUpperBound(0) + 1)
    Posted to Web Forms (Forum) by nishanthnair on 7/2/2009
  • Re: globalization

    Hi can you send your entire code to nair.nishanth@gmail.com . i can take a look at it.
    Posted to Localization (Forum) by nishanthnair on 7/2/2009
  • Re: 2003 vs 2005 vs 2008

    That will be fine for VS2008.
    Posted to Visual Studio 2008 (Forum) by nishanthnair on 5/15/2009
  • Is ASP.NET Dynamic Data really Dynamic at run time?

    Ive seen blogs and tutorials for ASP.NET Dynamic Data mentioning a static approach where the DB, table name etc are know during design time. Can we use Dynamic Data to connect to a DB using runtime Data ? Suppose I am developing an app where I get DB name, connection paramaeters from a webservice or an XML file, can I use ASP.NET Dynamic data in this scenario??? Or is it necessary that the DB and table structures need to be known during design time?
    Posted to ASP.NET Dynamic Data (Forum) by nishanthnair on 5/15/2009
  • Re: 2003 vs 2005 vs 2008

    TFS is a next generation source control.. it has got features like branching, merging, multiple checkouts at the same time etc.. etc... Its way far advanced than SourceSafe. But it will cost you a bomb to buy licence of TFS. Anyway no harm in checking it out.. its super cool product. More reading: http://en.wikipedia.org/wiki/Team_Foundation_Server http://msdn.microsoft.com/en-us/teamsystem/default.aspx
    Posted to Visual Studio 2008 (Forum) by nishanthnair on 5/14/2009
  • Re: 2003 vs 2005 vs 2008

    There wont be any issues if u install all 3. If you are not using any team system functionalities, go with proofessional edition of 2008
    Posted to Visual Studio 2008 (Forum) by nishanthnair on 5/14/2009
Page 1 of 30 (300 items) 1 2 3 4 5 Next > ... Last ยป