Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
Z

zeego

@zeego
About
Posts
37
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Validation groups with jQuery validation plugin on ASP.NET webforms?
    Z zeego

    I'm sorry I thought the fellows at javascript would answer better. :(

    JavaScript question csharp javascript asp-net design

  • Validate jQuery Modal ?
    Z zeego

    I have different jQuery UI Modal dialogs on a webform. I need to emulate validation groups on each UI Modal so I was trying server side validators because I could not emulate validation groups with jQuery. I did not knew about page_validate previously. What do you suggest ? Should I just fire the server validation groups with Page_Validate or do I use a separate plugin ? :sigh:

    ASP.NET question javascript design sysadmin

  • Validation groups with jQuery validation plugin on ASP.NET webforms?
    Z zeego

    How can I emulate validation groups on jQuery UI Modal dialogs on asp.net webforms? I am using multiple modals on my webform but can't get this to work. :wtf:

    JavaScript question csharp javascript asp-net design

  • Validate jQuery Modal ?
    Z zeego

    Actually the problem was modal being attached outside of

    tag. Can you suggest any other jquery validation plugin which emulates validation groups on asp.net webforms ?

    ASP.NET question javascript design sysadmin

  • Validate jQuery Modal ?
    Z zeego

    How can I get server side validators to work with JQuery UI Modal with validation groups ? :(

    ASP.NET question javascript design sysadmin

  • How to find application URL while using separate script file in asp.net ?
    Z zeego

    I am trying to find the url of webservice from a page inside a subdirectory in my website. I am using a separate script file referenced in my page. This does not work in the script file

    var pgUrl='<%= ResolveUrl("~/assets/WebServices/Admin/UsrRoleService.asmx") %>';

    How do I find the application url in the script file ?

    ASP.NET question csharp asp-net tools tutorial

  • JSON Parser for asp.net 2 ?
    Z zeego

    Thank you so much. I am using JSON.net for asp.net 2. Does using .net's own namespaces have any advantage in my scenario. Please advice. :-O :doh:

    ASP.NET question csharp asp-net business json

  • JSON Parser for asp.net 2 ?
    Z zeego

    I want to parse/break json response sent by ajax.post into a class inside my business logic ? How do I do this with ASP.net 2.0 ?:~

    ASP.NET question csharp asp-net business json

  • summary classes for gridview
    Z zeego

    how about using a data transfer object ? Do you have any example ?:~

    ASP.NET help wpf wcf json oop

  • summary classes for gridview
    Z zeego

    Yes I know but what is recommended, using inheritance with the superclass or a new class overall ? Thanks, Mike.

    ASP.NET help wpf wcf json oop

  • summary classes for gridview
    Z zeego

    hello all, I have a object list(Customers) which I am binding to a gridview. Problem is that the Customers object has 30 fields/attributes & I am binding only 6 in the gridview columns, the rest are wasted. Should I make another class to deal with gridview only,but that would mean a lot of classes for gridviews alone ? Is there a way I can do this with inheritance making a child class or something ? Please help me. Thanks, Mike.

    ASP.NET help wpf wcf json oop

  • Checkbox list (Select/ Deselect) datatable/dataset.
    Z zeego

    Anybody ? :doh:

    ASP.NET tutorial question

  • Data set Filter
    Z zeego

    Would'nt it be study_uid_mask=your_value; DataRow[] foundRows=ds.Tables[0].Select("myid ="+study_uid_mask); ? More on filter expressions here http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx[^]

    ASP.NET database tutorial

  • Capturing Session value before session expire
    Z zeego

    Hi check this link http://aspalliance.com/520_Detecting_ASPNET_Session_Timeouts.all[^]

    ASP.NET database csharp asp-net sql-server sysadmin

  • Data set Filter
    Z zeego

    You can either filter with a SQL query or use datatable's 'Select' method like DataRow[] dr=ds.Tables[0].Select("id="+yourid);

    ASP.NET database tutorial

  • Checkbox list (Select/ Deselect) datatable/dataset.
    Z zeego

    Hi I want to bind checkbox list with a datatable with select/deselect function corresponding in datatable rows deletion(deselect) insertion(select with duplicate row avoidance). Anyone has a working example ?

    ASP.NET tutorial question

  • Filter 2 datatables in dataset
    Z zeego

    Thanks for the reply. I only want to filter out records in table3 which have zero id in table2 and have a non zero id in table1. The records with zero id in table 2 and not existing in table1 are to be included in table3. Actual problem is that, 1) On a webform, there is a list of records returned from datatabase (table 1) 2) In edit form, user can edit these records from a checkbox list 3) Now for the newly selected records, I am having a zero id (all operation is done in datable) 4) For previously selected records they have a non zero id. 5) Table 1 is original records, table2 is new list after selection 6) Now on form update button I have to find which records to insert into database and which ones to drop, update etc Hope you get my point. Can you help a little bit more ?:~

    ASP.NET

  • Filter 2 datatables in dataset
    Z zeego

    Hi I have a dataset with 2 datatables, I want to filter/compare the 2 tables and get results in way like Datatable1 ------------------ ID | Name ------------------ 1 XYZ 2 ZZZ Datatable 2 ------------------ ID | Name ------------------ 0 XYZ 0 ZZZ 0 PPP Now in datatable 3, I want results whose id is not zero in datable 2 and these records should come from datatable 1 and any new entries not existing in datatable1 as well which are in datatable2. So datatable 3 becomes, Datatable 3 (result) ------------------ ID | Name ------------------ 1 XYZ 2 ZZZ 0 PPP

    ASP.NET

  • Convert generic list into datatable
    Z zeego

    Hi, I have a generic list of objects returned and I want to store it in a datatable in viewstate as I have to do some in memory operations on the list (edit,update,delete) How to go about this task ? Mike.

    ASP.NET performance tutorial question announcement

  • Compare Datatables and get changed rows.
    Z zeego

    Hi I have a gridview which has some records (recordID is being fetched from database) I load the results in datatable which has columns like -------------------------------------- RecordID | EmployeeID | Name | Address -------------------------------------- 1 4 John xyz 2 5 Smith xyz Now user can edit the records with a checkbox list (problem is that he can reselect the existing checked items again, so the recordID is null for reselected items, I set it to zero to distinguish all new records) So the new datatable becomes -------------------------------------- RecordID | EmployeeID | Name | Address -------------------------------------- 0 4 John xyz (reselected rows with 0 id) 0 5 Smith xyz (reselected rows with 0 id) 0 8 Evans xxx (new record) Now I am on form update button, I am trying to figure out how to find which records to insert and how to find records to do nothing with ? The reselected records already existing in database are creating problem for me. Mike.

    ASP.NET database help tutorial question announcement
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups