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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
S

srinandan

@srinandan
About
Posts
81
Topics
45
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Synchronising number of disconnected databases to a central DB.
    S srinandan

    Can we achieve this using Microsoft sync framework or some framework?

    Database database

  • Synchronising number of disconnected databases to a central DB.
    S srinandan

    There are number of laptops installed a window application connected with local database and all these machines works in remote area where no internet connectiviy is there. we have another web application connected to a central db.the Idea to synchroze database is that every machines export there data at the end of day and save the exported file in removable disk and place all the exported file to a specific location using FTP. My requirement is to import all the exported files into central database and vice-versa. there are around 15 table out of 100 on which need to keep the synchronization. Please suggest.

    Database database

  • infragistics numeric editor+ alllow user to input the value max
    S srinandan

    Hi all, I am very new to windows form and facing a problem with infragistics numeric editor. I need to allow user to input the value max "100.00%" or below (like 45.78, 99.00, 99.99). I am setting following propety for this: MaskDisplayMode =IncludeBoth MastInput= {LOC}nn.nn% MaxValue= 100 MinValue = 0 It allows user to input 100.99% but i need to restrict so that user cann't input more than 100.00 Help really appreciated.

    Thanks, Sri

    Windows Forms help

  • Webpart is not visible in browser
    S srinandan

    Hi All, I have created a webpart and deploy on the webpart page and published it. but the webpart contents are not visible on browser but if I see the in browser source code, all the content are appearing there. Please let me know whats wrong I am doing.

    Thanks, Nandan

    SharePoint

  • Need to remove the legend from the <chartingToolkit:PieSeries >
    S srinandan

    Hi, Is there any way to remove(or hide) the legend from the charting control(PieSeries) and bind the ItemKey instead of ItemValue to display the ItemKey on mouseover . As I have the following colloection: ItemKey ItemValue Delhi - 5 UP - 4 MP - 3 I am binding the following way: <chartingToolkit:PieSeries IndependentValueBinding="{Binding ItemKey}" DependentValueBinding="{Binding ItemValue}" AnimationSequence="Simultaneous" IsSelectionEnabled = "true">

    Thanks, Sri

    WPF wpf wcf

  • Gridview total number of rows
    S srinandan

    Hi Prasant, I am doing the following things: protected void Button1_Click(object sender, EventArgs e) { GridView1.AllowPaging = false; Response.Write(GridView1.PageCount.ToString()); GridView1.AllowPaging = true; } Still getting 10 rows as rows on current page. Thanks, Sri...

    ASP.NET

  • Gridview total number of rows
    S srinandan

    Thanks Nishant, You code is fine but we need to find the number of rows in the page of gridview to calculate the total number of rows in grid view. Any idea to find the number of rows in the last page?? Thanks, Sri...

    ASP.NET

  • Gridview total number of rows
    S srinandan

    I am doing the following thing protected void Button1_Click(object sender, EventArgs e) { int recordCount; DataSet ds=(DataSet)GridView1.DataSource; recordCount = ds.Tables[0].Rows.Count; Response.Write(recordCount); } get error "Object reference not set to an instance of an object." stating ds.Tables[0] is null. I am not getting why this is happing even i am binding the gridview in page load under if(!IsPostBack). Thanks, Sri...

    ASP.NET

  • Gridview total number of rows
    S srinandan

    Thanks Abhijit, This one is an interview question as per interviewer I have only the gridview to get the total number of rows. I know we find same using the Datasource of gridview. But i don't have this option. I have to use only n only gridview Thanks, Sri...

    ASP.NET

  • Gridview total number of rows
    S srinandan

    Hi all, I need to get the total number of records into GridView outside the any event of gridview. If I use GridView1.Rows.Count, then it just returns me the total number of rows on the page. But if I have, 5 pages having 10 records per page and 45 records total, Rows.Count will return me 10 on the first 4 pages, and 5, on the last page. But I need to get total number of record without using the gridview1's datasource like dataset or dataview etc. I need to use only n only gridview1 property. Thanks, Sri...

    ASP.NET

  • session objects get lost when republish the page
    S srinandan

    Thanks for ur reply, But i did not make any change in the web.config I am uploading only the dlls and aspx pages. but session expired. Any idea. Thanks, Sri...

    ASP.NET help

  • session objects get lost when republish the page
    S srinandan

    I am having some problem when trying to re-publish the website. My website a live and there are millions of user logged-in. I did some changes in our project and again when i am trying to uploading the published page (only updated single .aspx) and all dlls. The session of existing user get lost. as I want to maintain the existing user's session . Can anyone tell me how I can handle the problem. thanks, Sri...

    ASP.NET help

  • query to find engineering student
    S srinandan

    Thanks Biswas, Its working fine Thanks, Sri...

    Database database game-dev help

  • query to find engineering student
    S srinandan

    I am having problem to build a query. I have following data in a table. NAME SUBJECT ------------------ sri physics sri chemistry sri math amit physics amit bio amit math sanjay Phsysics sanjay chemistry sanjay math Ritu physics Ritu Chemistry Ritu bio i need to find the name of student (engineering) who are studying physics, Chemistry and math. in above table output should be as follows: NAME -------- sri sanjay Can anyone tell the sql query. Thanks, Sri...

    Database database game-dev help

  • Insert without primary key
    S srinandan

    Thanks Andreas,:) Its working fine. its good, we can set the primary key on the entity level not in the database. thanks, Sri...

    LINQ csharp database linq

  • Insert without primary key
    S srinandan

    hi Navaneeth, thanks for making reply. I am getting following error "Can't perform Create, Update or Delete operations on 'Table(TestTable)' because it has no primary key. " Code is as follows:

    TestTable test = new TestTable();
    test.NAME = txtNametest.Text;
    test.ADDRESS = txtaddrtest.Text;
    db.GetTable<TestTable>().InsertOnSubmit(test);
    db.SubmitChanges();

    I google the problem but did not find any solution as per different forum we need to add a addition column (may identity) to set as primary key. but I don't think Its good practice to add extra column. Please suggest how should i go ahead. Thanks, Sri...

    LINQ csharp database linq

  • Insert without primary key
    S srinandan

    I am very new to the linq to sql getting proble when I am tryig to insert the record in a table as the table do not have any primary key. Thanks Sri...

    LINQ csharp database linq

  • callback problem in mozilla...
    S srinandan

    thanks for reply, there is no one error message in mozilla. just callback is not working Thanks, Sri...

    ASP.NET help

  • callback problem in mozilla...
    S srinandan

    Hi All, I am facing problem with callback event. It is working fine in IE and safari but not in mozilla. any help will really appreciable. Thanks, Sri

    ASP.NET help

  • URL Rewriting
    S srinandan

    Hi all, I have many pages in my website. as follows I want to rewrite the url as follows http://www.test.com/site/jewelrycategory.aspx?iCategoryId=1&amp;minPrice=500&maxPrice=1000&amp;strOption=G As http://www.test.com/jewelry/ ----------------------- http://www.test.com/site/certified-wholesale-diamonds-diamondsearch.aspx?iCategoryId=3 As http://www.test.com/diamonds/signature-diamonds.aspx Pls help. Thanks Sri

    ASP.NET com help question
  • Login

  • Don't have an account? Register

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