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
S

sukesh g

@sukesh g
About
Posts
23
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How does .net runtime bind an assembly at runtime
    S sukesh g

    Hi , .Net provides the Reflection class for loading the assembly at runtime. this is the dynamic binding of assembly. For static binding you can go for the Addreference , to add the assembly at compile time. Regards, Sukesh.g

    .NET (Core and Framework) csharp wpf wcf question

  • How to use COM DLL in ASP.NET using C#
    S sukesh g

    Hi, You just Add References to the COMDLL.dll file. and Just create a object of the class that exists in the COMDLL.dll. and you call the methods existing in classes of COMDLL.dll. Regards, Sukesh.g

    ASP.NET csharp com asp-net tutorial question

  • Datagrid controls
    S sukesh g

    Hi, You can insert the rows into the DataGrid after also if u have binded it with DataSet earlier. What u do is Keep the DataSet as Static or Keep it in Session. Do insert the rows into the DataSet,it automatically added to the DataGrid. Regards, Sukesh.g

    ASP.NET wpf wcf question

  • .NET Opening with 3-4 yrs of Experience
    S sukesh g

    Hi All, I mean that a candidate having 3 to 4 years of experience in Microsoft Technologies. Like VB,ASP,VB.NET,ASP.NET,C# and SQL SERVER. Not that a candidate should have 3 to 4 yrs exp. compulsory in only .NET. Because we have current requirement in .NET that why we kept asking 3-4 yrs exp. Regards, Sukesh.g

    ASP.NET csharp asp-net com

  • .NET Opening with 3-4 yrs of Experience
    S sukesh g

    Dear All, We have immediate openings for .NET Professionals having 3 to 4 years of experience. Mainly on ASP.NET,C#,VB.NET,ADO.NET Expertise. * Good Functional Knowledge. * Good Programming with OOAD Skills. * Good Communication Skills Contact Immediately to Mahender - HR Executive(SOFTPRO SYSTEMS LTD.) Mail Id : mahender.k@softprosys.com Phone No: 23111793/806 Softpro Systems Ltd. Plot No.12, Software Units layout, Cyberabad,HiTech city. Hyderabad,Andhra Pradesh,India - 500081 Sukesh.g

    ASP.NET csharp asp-net com

  • Message Box In ASP.NET
    S sukesh g

    Hi, You can go for ValidationSummary control for showing the Message Boxs. For this set the property "ShowMessageBox" of ValidationSummary control to "True". Regards Sukesh.g

    ASP.NET csharp asp-net help question

  • How can I blink the Message?
    S sukesh g

    hi, Check this below code once...! and Tell me......! function blinkIt() { if (!document.all) return; else { for(i=0;i<document.all.tags('blink').length;i++){ s=document.all.tags('blink')[i]; s.style.visibility=(s.style.visibility=='visible') ?'hidden':'visible'; } } } Am i blinking ? Regards, Sukesh.g

    ASP.NET question

  • need solution for web applications...!
    S sukesh g

    thanks a lot...! Sukesh.g

    ASP.NET csharp asp-net database performance tutorial

  • need solution for web applications...!
    S sukesh g

    Hi All, Any one of you done any big online web applications...? I am developing the Web Applicaion using ASP.NET and C#. If yes, then tell me how to increase the performance and selection of records from the database.commonly, database contains a lakhs of records....! i need the different alogrithms for selecting of records from the database....!! thanks, Sukesh.g

    ASP.NET csharp asp-net database performance tutorial

  • Passing parameters between Java Script and C#
    S sukesh g

    Hi, U mean that from the javascript you need the values to you C# application right....! Tell me whether you are insterested to keep that javascript into the server side code and execute it...! If you are really insterested to keep tha javascript code in to the server side then it will be possible for sending the parameters to your application. .Net provides fexibility to writting the javascript at server side code. tell me your response to this...! regards, Sukesh.g

    ASP.NET csharp java tools question

  • Class Library references
    S sukesh g

    Hi, Another way of doing this is use the Reflection Class,which dynamically Loads the Assembly at run time. and also Unloads the Assembly. So, you use the Assembly when ever you want at Runtime. Regards, Sukesh. Sukesh.g

    Visual Basic question

  • How can i create a DLL from a MODULE in VB.NET
    S sukesh g

    Hi, For this you need to open a new project of Class Library and copy the Methods from the module and place it in this. And complie this solution,it will create a .DLL file then you can add it into refrences of your project and then call the methods. regards, Sukesh. Sukesh.g

    ASP.NET csharp help question learning

  • How to install my assembly in client machine
    S sukesh g

    Hi, Open the Setup Project and then follow the below given steps: Installing an Assembly to the Global Assembly Cache upon Installation You can use the File System Editor to install an assembly to the Global Assembly Cache upon installation. To do so, the assembly must be incorporated in the setup project as a loose file and not compressed with the other project output. To install the assembly to the Global Assembly Cache, you must first sign your assembly with a strong name. Once your assembly has been strongly named, all you need to do is add a Global Assembly Cache folder to the File System Editor and add your assembly to that folder. Upon installation, your assembly will be added to the Global Assembly Cache. To install an assembly to the Global Assembly Cache on installation Sign your assembly with a strong name. After creating your setup project, open the File System Editor. Right-click the left pane and choose Add Special Folder. In the shortcut menu, choose the Global Assembly Cache Folder. In the left pane, right-click the Global Assembly Cache Folder. Choose Add, and then choose Assembly from the shortcut menu. Choose the appropriate assembly or browse to its location and click OK to add the assembly. The assembly will be added to the Global Assembly Cache upon installation. If the assembly was not already a part of your setup project, it is added to it. Regards, Sukesh. Sukesh.g

    .NET (Core and Framework) dotnet csharp help tutorial question

  • Creating TreeView
    S sukesh g

    Hi, Check your mail. Yesterday, i sent you the mail with attachement of two .zip files. If you have still any problem... tell me...! i also worte the steps to follow in the mail itself...! Regards, Sukesh. Sukesh.g

    ASP.NET csharp database sql-server dotnet visual-studio

  • Setting the width of the dropdown list
    S sukesh g

    hi, You can use the String Builder in the .NET. However, I had a loop where I was doing about 1,200 concatinations. Using String Builder reduced the time this took substantially. Use stringbuilder whenever you need to do LOTS of String Manipulations. Hope this will solve your problem.....:) Sukesh.g

    ASP.NET question

  • Creating TreeView
    S sukesh g

    Hi, Can u please give me your mail id. so, that i can send you the code with the treeview component. Regards, sukesh. Sukesh.g

    ASP.NET csharp database sql-server dotnet visual-studio

  • Creating TreeView
    S sukesh g

    Hi, you can download the treeview control from the Microsoft site. its easy to use and understanding. if you still have problem i can send you the code and control.... Sukesh.g

    ASP.NET csharp database sql-server dotnet visual-studio

  • Expandable Items
    S sukesh g

    Hi, Microsoft providing the TreeView control for expanding items like a Tree structure having (+) and (-) symbols. You can download this control from the below URL... http://www.asp.net/ControlGallery/default.aspx?Category=38&tabindex=2 This are the Microsoft IE WebControls... Regards, Sukesh. Sukesh.g

    ASP.NET data-structures xml

  • Database Connection Setting?
    S sukesh g

    Hi, For this you need to provide a User Interface Screen for taking the DataBase Server Connection details like UserId,Password,Server Name. Store this values in a TextFile which is used for connecting to the Database server which User wants. Hope this solution will be solve your problem...... Sukesh. Sukesh.g

    ASP.NET csharp database testing beta-testing

  • ADO.NET updates caching
    S sukesh g

    Hi, If there is a problem of data which is not updated in database are still there in application. You can go for cache the web page using the output caching for specifying some duration of time. <%@ outputcache=5%> --> this take 5 minutes duration of time.after that i getting the refreshed data to display on the page. i think this may work for you.. instead of cache in files. regards, sukesh.g Sukesh.g

    Database question csharp database mysql
  • Login

  • Don't have an account? Register

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