Search

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

Matching Posts

  • Web Service returning Dataset

    I m new to web services. I can create Hello world application. I was trying to create a web service that returns Dataset. [WebMethod] [System.Web.Script.Services.ScriptMethod(ResponseFormat=System.Web.Script.Services.ResponseFormat.Xml)] public DataSet getEmp(string branch) { return Employee.getAllEmpName(branch) ; } I am calling this from javascript. But not able to use the dataset returned by this. Can someone tell me how to do that. Vinod Suri
    Posted to Client Side Web Development (Forum) by suri_vinod on 11/3/2009
  • add controls at runtime and save data to database

    Hello, What i am trying to do is to add controls, say a textbox, at runtime. Which i can do with javascript. But i my main problem is i am not able to get how to store data entered in that texbox by user to database. Vinod.
    Posted to Web Forms (Forum) by suri_vinod on 10/29/2009
  • Re: add controls at runtime and save data to database

    This is a good way of doing this. But my problem is i dont want to ask user about number of rows or columns. User should be able to click some link, say more, and add as many textboxes they want. Vinod
    Posted to Web Forms (Forum) by suri_vinod on 10/29/2009
  • Multiple forms tag in web.config

    Hello, I have two folders client and emp in my web application. I have two different login pages for both of them. Now what i need is that when client should always be redirected to client login page and employee to employees login page, when ever they log out or in case of any unauthorization or what ever reason. I thought of using the multiple forms tag in web.config but don't know how to. Vinod
    Posted to Web Forms (Forum) by suri_vinod on 7/5/2009
  • encrypting query string

    Hello, I have been trying to encrypt/decrypt query string(integer values). I found few programs on different websites but the problem(not every time) with them is when i encrypt the result have some special characters like /, + that have their own meaning in URL. So when i decrypt that encrypted querystring on next page it gives error. can some body suggest better encryption technique or a solution to get over this problem. Vinod
    Posted to Web Forms (Forum) by suri_vinod on 3/13/2009
  • sitemappath and TreeView Controls

    Hello, I have a tree view control and a sitemappath control on page i want to know if it is possible to use different sitemap files for the tree view control and sitemappath on same page. Vinod
  • Re: sitemap and roles

    I checked the link you mentioned but i don't understand if i am doing anything wrong Here is my sitemap file <?xml version="1.0" encoding="utf-8" ?> < siteMap xmlns= "http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > < siteMapNode url="" title= "Home" description=""> < siteMapNode url="" title= "Admin" description="" roles= "Admin" > < siteMapNode title= "Add
  • sitemap and roles

    I am trying to us site map with roles enabled <siteMap defaultProvider="XmlSiteMapProvider" enabled="true"> <providers> <clear/> <add name="XmlSiteMapProvider" type="System.Web.XmlSiteMapProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" siteMapFile="web.sitemap" securityTrimmingEnabled="true" /> </providers> </siteMap> <roleManager enabled="true" defaultProvider
  • Re: mutually exclusive check box list

    Hello, Try using $get rather then document.getElementById Vinod
    Posted to Client Side Web Development (Forum) by suri_vinod on 12/17/2008
  • Re: mutually exclusive check box list

    Adi, put this code in page load.. CheckBoxList1.Attributes.Add( "onclick" , "return HandleOnCheck()" ) and then use this javascript var objChkd; function HandleOnCheck() { var chkLst = document.getElementById( 'CheckBoxList1' ); if (objChkd && objChkd.checked) objChkd.checked= false ; objChkd = event .srcElement; } It works fine Vinod
    Posted to Client Side Web Development (Forum) by suri_vinod on 11/16/2008
Page 1 of 5 (50 items) 1 2 3 4 5 Next >