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
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
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
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
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
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
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
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
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
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
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
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
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
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
Language is not english so i could not understand content of this articl http://dotnetforeveryone.blogspot.com/
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
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
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
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
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
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