gv-ramesh.blogspot.com
Knowledge Gain: March 2013
http://gv-ramesh.blogspot.com/2013_03_01_archive.html
Leader can always walk the talk. Wednesday, March 6, 2013. Read csv file and import its data into List(object) with Linq. Var arrTitle = File.ReadAllLines(csvFileFolderPath). Select(x = x.Split(','). LstUser = File.ReadAllLines(csvFileFolderPath). Select(x = x.Split(','). USERID = x[0],. LASTNAME = x[1],. FIRSTNAME = x[2],. Read csv file and import its data into Datatable with Linq. DataTable dt = new DataTable();. Var c1 = File.ReadAllLines(csvFileFolderPath). Select(x = x.Split(','). Public byte[] ret;.
gv-ramesh.blogspot.com
Knowledge Gain: May 2011
http://gv-ramesh.blogspot.com/2011_05_01_archive.html
Leader can always walk the talk. Monday, May 16, 2011. Temp Tables in Sql Server. Four kinds of temp tables. 1 Local Temp Table:. Local temp tables are only available to the current connection for the user; and they are automatically deleted when the user disconnects from instances. CREATE TABLE #CRSTYPES(COURSETYPEID TINYINT,COURSETYPENAME VARCHAR(32). DECLARE @MYSCHEDULE TABLE(SCHEDULEID INT PRIMARY KEY). 3 Global Temp Table:. Global Temporary tables name starts with a double hash ("# "). If you do not...
gv-ramesh.blogspot.com
Knowledge Gain: January 2013
http://gv-ramesh.blogspot.com/2013_01_01_archive.html
Leader can always walk the talk. Tuesday, January 8, 2013. Dynamically create ListView and thier templates at runtime. I have created a Composite control, which contains a listview to display a table of items. I am using a ListView in Asp.NET and define the templates in the code-behind. Using System.Web;. Using System.Web.UI;. Public partial class Report1 : System.Web.UI.Page. Protected void Page Load(object sender, EventArgs e). Protected override void CreateChildControls(). ViewID = "view";. Int i1 = 0;.
gv-ramesh.blogspot.com
Knowledge Gain: December 2008
http://gv-ramesh.blogspot.com/2008_12_01_archive.html
Leader can always walk the talk. Saturday, December 13, 2008. The 10 best IT certifications. Microsoft Certified IT Professional credential. Enterprise messaging administrator, and. Microsoft Certified Technology Specialist. SQL Server 2008 Business Intelligence. SQL Server 2008 Database Development. SQL Server 2008 Implementation and Maintenance. Microsoft Certified Professional Developer. Windows Developer 3.5. ASPNET Developer 3.5 and. Enterprise Applications Developer 3.5. Select Google task) Option.
gv-ramesh.blogspot.com
Knowledge Gain: October 2012
http://gv-ramesh.blogspot.com/2012_10_01_archive.html
Leader can always walk the talk. Monday, October 29, 2012. IBATIS consists of two separate frameworks. 1 Data Mapper framework. Specifically for OR mapping, Executes your SQL and maps the results back to .Net domain objects. 2 DAO (Data Access objects) framework. Gives your application a clean and consistent way to access underlying data. Labels: .net orm. Thursday, October 25, 2012. Post data via Jquery ajax and response as Json in asp.net. Jquery script to be include in the page. Var listItems = [];.
gv-ramesh.blogspot.com
Knowledge Gain: September 2008
http://gv-ramesh.blogspot.com/2008_09_01_archive.html
Leader can always walk the talk. Monday, September 29, 2008. The Global.asax file (also known as the ASP.NET application file) is an optional file that is located in the application's root directory and is the ASP.NET counterpart of the Global.asa of ASP. This file exposes the application and session level events in ASP.NET and provides a gateway to all the application and the session level events in ASP.NET. Fired when the security module has verified that a user can access resources. Fired when the ASP...
gv-ramesh.blogspot.com
Knowledge Gain: January 2008
http://gv-ramesh.blogspot.com/2008_01_01_archive.html
Leader can always walk the talk. Thursday, January 24, 2008. Scheduling to run a page automatically. Const HOST = "url of that .net page". Const FORMAT = "Raja". Create the HTTP object. Set xmlhttp = CreateObject("Microsoft.XMLHTTP"). Xmlhttp.open "GET", HOST and "/GetYourTime? Format=" and FORMAT, false. Send the request synchronously. Labels: scheduling in .net. Friday, January 11, 2008. Call an executable from a .NET code. Using System.Diagnostics;. Process.Start("notepad.exe");.
gv-ramesh.blogspot.com
Knowledge Gain: February 2008
http://gv-ramesh.blogspot.com/2008_02_01_archive.html
Leader can always walk the talk. Wednesday, February 27, 2008. The relational database management system from Oracle Corporation, is arguably the most powerful and feature rich database on the market. In 1984, Oracle version 4 was released which supported read consistency. Starting 1985, Oracle began supporting the Client-Server model, with networks becoming available in the mid 80s. Oracle version 5.0 supported distributed querying. In 1988, Oracle entered the products market and developed its ERP produ...
gv-ramesh.blogspot.com
Knowledge Gain: Generate class and properties at runtime
http://gv-ramesh.blogspot.com/2013/07/generate-class-and-properties-at-runtime.html
Leader can always walk the talk. Monday, July 1, 2013. Generate class and properties at runtime. To generate a class and properties at run-time. System.Collections.Generic;. Method2 - Generate class and properties alone at runtime". WriteLine( " n- -Method2 - Generate class and properties alone at runtime- - - - - - - n". The below combination will return all non-public instance properties on the type. Props = type.GetProperties(flags);. I = 0; i props.Length; i ). Write( " t{0} t". Write( " t{0} t".
gv-ramesh.blogspot.com
Knowledge Gain: March 2008
http://gv-ramesh.blogspot.com/2008_03_01_archive.html
Leader can always walk the talk. Thursday, March 13, 2008. Is a variable that is accessible in every scope. New Class with Class Name: GlobalVars. Private static string cstmAccId;. Public static string strcstmAccountId. Get { return cstmAccId; }. Set { cstmAccId = value; }. Assigning value to Global variable. GlobalVars. strcstmAccountId=”10”. Accessing value of Global variable. String strId= GlobalVars. strcstmAccountId;. Monday, March 10, 2008. Convert RGB to CMYK in Delphi script. RgbColor : TRGBColor;.