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
G

Ganesh KP

@Ganesh KP
About
Posts
9
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Need help
    G Ganesh KP

    Hi Dutch, As many people said, need an architect will be costlier. Probably go for some freelancing sites like elance, freelancer.com, peopleperhour (suits mostly), fierv and some other. You need to provide some more information regarding your location and what kind of application does you need.

    Regards, Ganesh

    Design and Architecture database design help

  • how to transfer the values of textboxes from one form to another form in datagridviw control without using database
    G Ganesh KP

    This is so simple to do. Create a class which contains 3 properties for all three text boxes. Say for example here is the sample code

    public class Form1Class
    {
    public string TextBox1Value { get; set; }

    public string TextBox2Value { get; set; }

    public string TextBox3Value { get; set; }

    }

    Now say for example you have a button named Button1 and on the click even, you need to open Form2 and bind the textbox values to datagridview. For this, first you have to create an object of Form1Class which will take these three textbox values into my object (here it is Form1Class). Once you created an object, you need to pass the object to Form2 Here, you have to think about data passing mechanism from one form to another form (Form1 to Form2). There are many methods that we can pass data from one form to another. 1. You can use sessions, querystring etc... For detailed view of how to pass data from one form to another form in asp.net , have a look at below links MSDN article or this article also gives you an idea Null Skull link Once you pass the data from From1 to Form2 and the receiver side (i.e Form2) you need to receive the data and bind it to the datagridview. As you are passing a single object from Form1 to Form2 and you need to see how to bind an object to datagridivew. here is the stackoverflow answer on how to bind an object or a list of object(s) to a datagridview. Stack Overflow answer Once you are bind the data to a datagrid view, you can able to see the data that you enter in textbox(es) in Form1. Try this and let us know, if it is working or else facing any issues. Happy coding :)

    Regards, Ganesh

    C# database tutorial question

  • What sites do people use to find jobs?
    G Ganesh KP

    How about linkedin @Feng? I have used many sites for search in job, right now point I forgot those. Once I got remember it I will post it back again. I think linkedin is good source for many developers. And I am a .Net developer actively looking for a change. If you have a position for me, feel free to send JD to my official mail id - ganeshcse@live.com

    Regards, Ganesh

    Work Issues csharp css visual-studio sysadmin tutorial

  • Looking for urgent career/freelance advice
    G Ganesh KP

    Hi Conway, after reading your story, I understood that you need a job near by your home town or else you want to do a freelancing job. Well, let me explain you one thing here as you said, you are just a graduate passed out. Freelancing on your own is a little difficult. Freelancing is the thing that people will do who has got a good experience. I am not going to discourage you in this point. I am telling what a freelancing is. Even if you said to some one that you want to do freelancing, the first question that comes from them is "How many years of IT experience do you have?" So trying for a own freelancing is really a tough at this point of time. rather I suggest you can go work under some one who does freelancing. I wanted to know - Where do you stay? Why can't you go for a job search as you are fresher - No one is going to ask you to write a program on how a nuclear reactor works? My real suggestion is go and search a good job - once you got a good job you can bring your mom to your living place. Yes, I would agree you have own a good home. But people who works need to travel from one place to another place. The scenario works for an experienced freelancer as they will have a lot of projects in hand and they can work from home (in their own decent home). But as you are a fresher and I think you opinion on living in your village and asking that you wanted to do or wanted to achieve seems to be not a right track that your are in actually. There are many freelancing sites available in internet. Just do a simple google search - freelancing websites list. That's it you will find a hundred's of pages giving a list of freelancing web sites. Here are the some of the top most list 1. Elance 2. oDesk 3. Freelancer.com 4. Guru.com 5. PeoplePerHour.com 6. freelancermap.com 7. Fiverv many many are there... only thing we must have enough knowledge on how to bid on projects and how to mange the projects once it is assigned. Might be delivering the projects in right time or some other key factors. If you need any more help, feel free to ask us.

    Regards, Ganesh

    Work Issues career design business sales help

  • what is actual in business layer ?
    G Ganesh KP

    No problem Djay...

    Regards, Ganesh

    Design and Architecture question business

  • How to develop my communication skills needed for a software project development
    G Ganesh KP

    Very poor communication skils also puts you in difficult situation. But it is not true always. One must be good at both communication as well s technical skills. Yes, especially as you are into requirements gathering then you must have to understand their business perspective. Especially when you speak with foreign clients, you must able to understand their accent and also business terms. Try to read more articles on requirement gathering or else read about requirements of specific product what you are dealing now. This is atleast give you a rough idea of what needs to be done and also helps you to get a quick idea if clients speaks any of the words that you read. And don't worry much about it. Its just a part of work life :)

    Regards, Ganesh

    Work Issues tutorial business

  • Architecture advice needed for upgrading a classic .ASP web app
    G Ganesh KP

    Hi mham, yes running an application on old technologies will not only degrade the application performance also your application cannot compete with new technologies. As long as your clients are happy, you will be happy, but once they ask you with latest technology. Yes, you need to do that. You are on the right track for developing with right tools like MVC. Or else you can do one more thing like have two different layers like client and server and write a web service separately where you will have all db related logic. Its like a Client Server architecture. So if you develop a separate service. later you can use the same service in your android, iOS or windows or some other service. So it becomes like a "Write once and Use else where". If you have a large data sets which will degrade the application performance, there are many alternative ways that you can do in order to increase the performance of application with less effort. One good thing is Paging or Data virtualization. Using AJAX based controls, queries and now a days there are lot of java script frameworks available and can choose any one of them to implement the best for your needs. Well, I don't know MVC so I can't help on it, but if you asked me on how to do with classic ASP.Net with Sql Server and WCF service then I can help you.

    Regards, Ganesh

    Design and Architecture database html design architecture workspace

  • what is actual in business layer ?
    G Ganesh KP

    Business layer can be placed in two locations 1. On client side and 2. On server side. Client side business layer will does all client side logic before sending to service (think the application has both Client and Service) and Server side business layer will deal with logic that is after retrieving data from db or before saving to db. Layer is nothing but a code/project to do certain actions. Also remember a Business Layer must not have any UI related things. If it has, then it is not a business layer. We have to move those UI related things to some other place most probably to Presentation Layer. Also on the other hand, if we have only one Client which deals with DB, then there will be only one BL (a business layer) which goes all logic in here. Hope you understand.

    Regards, Ganesh

    Design and Architecture question business

  • Web Service is not seen after hosted in site
    G Ganesh KP

    Hi friends, I have one web service it works fine in localhost when I uploaded in server I got tested I am unable to see that and I got Internal Server Error 500. What may be the fault? I just published the WebService and hosted in server through FTP and later I checked I am getting above error. Please help me. Ganesh

    .NET (Core and Framework) help sysadmin 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