Search

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

Matching Posts

  • Regular Expression Required

    i have gidview with template texbox and checkbox. I required required field validator only on the text box whose crossponding checkbox is selected. I think i can do this through regular expression if so then plz let me know how to write expression for that particular situation . Or if there is any other option. Thanks
    Posted to Web Forms (Forum) by klorder on 11/21/2009
    Filed under: validation, regular experssion, required feild validator
  • Re: Display only date part in the GridView control

    You can do this by setting html encode property is equal to false. and data format strings like For just date only = {0:d} 11/16/2009 For just date only = {0:D} Tuesday, June 23, 2009 For just date only = {0:T} 12:00:00 <asp:BoundField DataField="Date" HeaderText="Date Of Birth" HtmlEncode="False" DataFormatString = "{0:d}" ReadOnly="True" /> For Long Date, <asp:BoundField DataField="Date" HtmlEncode="False" DataFormatString
    Posted to Data Presentation Controls (Forum) by klorder on 11/20/2009
  • Re: How to write a Query Oppisite to inner join

    [quote user="whatispunk"] You should use the NOT EXISTS statement. SELECT * -- Don't use * though, list your columns! FROM Purchase_Requisition pr WHERE NOT EXISTS ( SELECT 1 FROM Purchase_Order po WHERE po.RequisitionId = pr.RequisitionId ) [/quote] This really worked for me thanks alot ! and regarding other solution of left join , The left join query works at database level for me but it gave some error when i try to use that query with a gridview. I would also like to thank all other
  • How to write a Query Oppisite to inner join

    I have two related tables Purchase_Requisition and Purchase_Order If a Purchase_Order table contain primary key of Purchase_Requisiton So what i want to create a query that feth all data from Purchase_Requisition table for which there is no reference at Purchase Order table. i.e i want to feth purchase requisiton with no purchase orders
    Posted to SQL Server, SQL Server Express, and SqlDataSource Control (Forum) by klorder on 11/13/2009
    Filed under: Dataa access, SQL 2000 Server, querry
  • Re: Unable to open page from menu control

    [quote user="cnranasinghe"] Which page your menu control is placed? This where the navigation destination is look for. Need to know the folder hierachy. [/quote] Default page-> SAP(directory)-> default.aspx login.aspx masterpage.master(contains menu control) usermanagment(directory) Admin.aspx createuser edit user
  • Unable to open page from menu control

    i am creating a menu control dynamically from data base the url which i store inside databse is like that usermanagment/Admin.aspx This is is url of page from where i click the menu for above page http://localhost:1960/Final%20Project/SAP/default.aspx It redirects me to this page The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following
    Posted to Master Pages, Themes and Navigation Controls (Forum) by klorder on 11/3/2009
    Filed under: menuControl, navigation
  • Re: Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints

    Check your query u may using field from another column. some time we add fields in our query by adding table in query builder but some time we delete table in query builder this action only delete join statment inside query not the field which we selected from another table check if you are making this mistake. If this solves your problem mark it as answer
    Posted to Data Access and ObjectDataSource Control (Forum) by klorder on 11/1/2009
    Filed under: unique, or foreign-key constraints, Failed to enable constraints. One or more rows contain values violating non-null
  • Access menucontrol on from master page

    1. i want to access menu control from my page . 2. And then i want to build this menu based on entries form database. i have pageurl,page title,Caption stored in database. and i can access them on my page. Please tell me how can i access the menu control and can build menu based on these or i need anything else
    Posted to Master Pages, Themes and Navigation Controls (Forum) by klorder on 10/23/2009
    Filed under: menuControl, masterpageg
  • Re: How to access CheckBoxField value of gridview control

    i am having similar problem but i am doing coding C# so if some on can give me c# version of this code
    Posted to Data Presentation Controls (Forum) by klorder on 9/27/2009
    Filed under: grivd view
  • Validation on Listbox

    I am transfering values form on list box to ohter so i want that second listbox should not contain duplicate items. Is there any validation control available or some sort of regualar expression Or i have to loop thrhough the second list box for each entry in order to check duplicate
    Posted to Web Forms (Forum) by klorder on 9/20/2009
    Filed under: Listbox Item color
Page 1 of 5 (41 items) 1 2 3 4 5 Next >