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

sarvesh upadhyay

@sarvesh upadhyay
About
Posts
23
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • consuming a wcf service from classic asp application
    S sarvesh upadhyay

    Hi I want to consume wcf service from classic asp application. Please guide me. thanks

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    WCF and WF csharp wcf tutorial

  • DataTable / DataRow / someDataTable.Select() Issue
    S sarvesh upadhyay

    I think instead of using DataRow[] filteredRowsArray = table.Select(filterString); and adding the above row to another table. You should use DataView objdv = table.DefaultView; and then Use objdv.RowFilter = filterstring. It is more easy and fast compared to your above steps. You can get more example on codeproject and google on it. I think it will help u and may solve ur problem.

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# database csharp help css question

  • Datagrid Problem
    S sarvesh upadhyay

    Use google for this also in codeproject you can get multiple articels Keyword to search DataGrid+databind

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# help csharp database

  • How to create global variable
    S sarvesh upadhyay

    You can use singleton class object. It will help in state maintainance in the application.

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# tutorial

  • Exporting html data to Excel [modified]
    S sarvesh upadhyay

    You can try this link http://www.codersource.net/csharp_screen_scraping.html[^]

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# csharp html tutorial question

  • Avoid having more than 5 arguments in the Method:'{0}'
    S sarvesh upadhyay

    here you can get a working example. http://www.binarycoder.net/fxcop/html/index.html[^]

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# help tutorial

  • Pass the text box value from one form to other
    S sarvesh upadhyay

    Can u write down whether you are working on web forms or window forms?

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C#

  • Avoid having more than 5 arguments in the Method:'{0}'
    S sarvesh upadhyay

    Hi you can check this link http://weblogs.asp.net/pglavich/archive/2005/07/19/419869.aspx[^]

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# help tutorial

  • How to check This Whole Number ?
    S sarvesh upadhyay

    Use Regex for this.You can get many example in c#, javascript just search in google.

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# help tutorial question

  • Lazy Insert Query
    S sarvesh upadhyay

    Hi syed, You can check 1. whether over indexing is used in the table. 2. use stored procedure. 3. whether u r inserting multiple records at a time? 4. please give complete picture of your work.

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# database sql-server sysadmin

  • How can I ?????????????
    S sarvesh upadhyay

    Suppose create table TestBirth ( UserId int identity(1,1) ,UserName varchar(50) ,birthday datetime ) is the table which contains the records UserId UserName birthday 1 Manoj Singh 2008-02-02 00:00:00.000 2 Manoj singh2 1894-07-03 00:00:00.000 4 Anshu singh 1894-07-04 00:00:00.000 5 Garima singh 1894-07-13 00:00:00.000 6 Rajan singh 1894-07-14 00:00:00.000 7 Garima chaudhary 1894-07-03 00:00:00.000 8 Pankaj chaudhary 2008-03-03 00:00:00.000 Below query will help you Select UserName from testbirth where Month(birthday) = month(getdate())

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    Database database question

  • How to use COM components in .net application
    S sarvesh upadhyay

    You have to explicitly clean the com object in your code. Use override dispose function in class where you are using the com class and after using the com object clean it in your dispose function.

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# question csharp com tutorial

  • Writing an html file from a form application
    S sarvesh upadhyay

    do u want to develop a CMS type application where user can design his own page.

    Sarvesh Upadhyay Senior Software Engineer Birlasoft India Ltd. Microsoft Certified Professional Developer in Dotnet 2.0 Enterprise Application

    C# csharp html question career

  • DAL and BLL communication
    S sarvesh upadhyay

    Language is not english so i could not understand content of this articl http://dotnetforeveryone.blogspot.com/

    Sarvesh Upadhyay

    C# csharp database sysadmin business architecture

  • DAL and BLL communication
    S sarvesh upadhyay

    Hi I am developing 4 tier architecture in dotnet 2.0. Presentation Layer is hosted on different machine. Business Layer is hosted on different machine and DAL is also hosted on different machine and database server is also different i.e. all applications parts are hosted on different machines. Now Presentation layer and Business layer communicate through Web Service. What is the suitable way of communication between DAL and BLL. Business Layer and DAL machines have window XP Operation Systems. 1. Remoting 2. Web Service 3. Any other Please suggests all the options.

    Sarvesh Upadhyay

    C# csharp database sysadmin business architecture

  • Disadvanatage Of HTML Control
    S sarvesh upadhyay

    1. single map: if we write in web page when it will render on the browser same will appear means 1. one to many tag render as is web control Now if we write on the web page and when it will rendered on the browser you can see more than one html tags this means we write one tag and gets multiple tag on the browser. so if same has to do in html then we have to write alot of codes so using webcontrol we scape from writing multiple tags. :)

    Sarvesh Upadhyay

    ASP.NET html sysadmin question learning

  • ASP.NET 1.1: Chart Image is not visible on client page from Reporting Services 2005
    S sarvesh upadhyay

    Hi All Please help me quickly. I am working on reporting serive 2005 but my client application is in asp.net 1.1 and report rdl is in SQLServer reporting services 2005. Now the chart created on the report server is not appearing on client page thougn data are coming correctly. But Chart Image is visible in report manager so what are the problem please help me to find out or any article regarding this please suggest. thanks in advance!

    Sarvesh Upadhyay

    ASP.NET help csharp asp-net sysadmin

  • Can I create a class from a string name??
    S sarvesh upadhyay

    Yes we can using Reflection. 1. suppose you have added reference of a class 'clsTest' in your project. 2. then add namespace System.Reflection using System.Reflection; now in your code write Type tpClsTest = Type.GetType("clsTest"); object objTest = Activator.CreateInstance(tpClsTest); now objTest represents the instance of your clsTest. sarvesh C

    C# csharp tutorial question

  • difference between htmlserver control and webservercontrol
    S sarvesh upadhyay

    Hi, I want to know 1--when to use htmlserver control and when to use webserver controls? 2--what are the basic differences when these controls are processed on server? thanks in advance. sarvesh upadhyay

    ASP.NET sysadmin question

  • select query and group by in sqlserver
    S sarvesh upadhyay

    hi, have a problem i want to select all records from left table and corresponding records from right table using group by clause. my tsqlstatement is select A.CatId,A.CategoryName,A.CategoryImage, Count(B.ProductId),count(B.SubCatId) from Tbl_Category as A Left outer join Tbl_CategoryWiseProduct as B on A.CatId=B.CatId group by A.CatId,A.CategoryName,A.CategoryImage but is does not working properly help

    ASP.NET help database
  • Login

  • Don't have an account? Register

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