Search

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

Matching Posts

  • Workflow designer in Web application

    Can I integrate worklfow designer in my web app?
    Posted to ASP.NET and Windows Workflow Foundation Integration (Forum) by Jovialwhispers on 7/27/2009
    Filed under: workflow designer
  • Re: connect to sql server from visual developer

    Goto (or ADD) the web.config file. Add this entry under (and inside) <configuration> tag : <connectionStrings> <add name="MyDBConnectionString" connectionString="Data Source=192.168.0.11;Initial Catalog=MyDB;User ID=sa;Password=xyz123" providerName="System.Data.SqlClient"/> </connectionStrings> In the data source you can provide the name of your [system or the server]. Initial catalog is for DB's name. And you can call it like this: ConfigurationManager
    Posted to Getting Started (Forum) by Jovialwhispers on 7/9/2009
  • Re: Row Cammand event handler how to access Template Field

    Agree to jagjot. Just add the buttons in your template field. Define a command name for that button. And then on the Gridview's RowCommand event check what button is clicked by matching the command name. If(e.CommandName == "Update") {} else if (e.CommandName =="UpdateChild") {}
  • Re: Multi language in asp.net

    Check ASP.NET resource files multilanguage
    Posted to Web Forms (Forum) by Jovialwhispers on 7/3/2009
  • Re: How to get it

    That is because you are just displaying the lenght of the array. Try this string[] datas = new string[6] { "a", "b", "c" }; for (int i = 0; i <= 2; i++) { Response.Write(datas[i].ToString()); } Response.Write(datas.Length.ToString()); Or you can even remove the hard coded limit (6) for the array like string[] datas = new string[] { "a", "b", "c" };
    Posted to Web Forms (Forum) by Jovialwhispers on 7/3/2009
  • Re: problem getting row value from gridview

    Suppose you have this GridView and you bind it in page load or any where in the page GroupsInfo objAllGroups = new GroupsInfo(); DataTable tblAllGroups = objAllGroups.fnGetAllGroups(); gdvBanks.DataSource = tblAllGroups; gdvBanks.DataBind(); then switch to your ASPX markup. Locate the Gridview defination like this Set the AutoGenerateColumns="false" Then define the tag. Suppose you are binding the bank name and bank address to the gridview which is coming from Database then for those columns
  • Re: DATABASE OPERATION AND VALIDATION CONTROL

    You are plugging in a RequiredFieldValidator and you said " A user may type information and click the INSERT button immediately without pressing the TAB key " So if the user types something then why do you need the validator to fire. It will and should pass through
    Posted to Web Forms (Forum) by Jovialwhispers on 7/3/2009
  • Re: help with <href>

    Try ImageMap if you are working ASP.NET. Below is the sample declaration <asp:ImageMap runat="server" ID="area" HotSpotMode="Navigate"> <asp:CircleHotSpot HotSpotMode="Navigate" Radius="5" X="13" Y="14" /> <asp:PolygonHotSpot /> <asp:RectangleHotSpot /> </asp:ImageMap> You can choose any of the hotspot collection i.e. Circle, Polygon, Rectangle. ----------------------------------------------------
    Posted to Getting Started (Forum) by Jovialwhispers on 7/3/2009
  • Re: Creatuserwizard

    First of all click the smart tag (upper right corner of the control) and click "Convert to Template". After that you will notice that now can select the individual items in the control. Switch to the aspx markup and add your extra control that you may want to present to the user. Like First Name, Last Name, Country, Age etc. You need to define the fields in the web.config in order to make the work properly. Example below <profile enabled="true"> <properties> <add
    Posted to Web Forms (Forum) by Jovialwhispers on 7/3/2009
  • CreateUserWizard to create another user

    I am using ASP.net 2.0 CreateUserWizardControl. On my Complete step I have placed a link button saying "Create another user ". Now is there way to navigate between the steps. I mean what I want is that when the user clicks that button ""create another user", User should be navigated back to the first step and the pervious creation process must commit, obviously. So you can suggest me some different approach or if there is a way to accomplish the desired task. Thankyou
    Posted to Security (Forum) by Jovialwhispers on 6/29/2009
Page 1 of 2 (19 items) 1 2 Next >