Wednesday, September 1, 2010

మహా నేత

మన గుండెల్లో గూడుకట్టుకున్న వైయెస్ ను ఈ తోలి వర్దంతి మల్లి మొలకేత్తిస్తుంది
జ్ఞాపకాల గర్బం నుంచి వైయెస్
ఆశయాలకు ఊపిరిపోస్తుంది
ఈ మహానేత తోలి వర్దంతికి ఘన నివాళి ని అర్పిద్దాం!
ప్రవీణ

Sunday, June 20, 2010

Asp.Net page life cycle




http://spazzarama.files.wordpress.com/2009/02/aspnet_page-control-life-cycle.jpg

Wednesday, June 9, 2010

Telephonic Interview

1. What is ref, Out parms?
A.
2. What is app domain?
3. What is constant, Read only?
4. What is static constructor?
5. What is static object?
6. How u will consume web services?
7. What is use of Ajax?
8. How to create usercontrol dynamically?
A. 1.First , you need to add a directive on webform telling the webform that you are going to load the usercontrol dynamically.
2.load the actual control in the webform. You can load the control anywhere in the form. A good place will be the Page_Init event.(by using page.LoadControl()), by creating instance of that control.
3.Add the instance control name.

More Detail....

Sunday, June 6, 2010

3rd Interview(TCS)

1. What is view_State?
A. The View_State is a client side state management. which maintain or stores the information of page controles with unique ID in encrypted formate.When the page is processed, the current state of the page and controls is hashed into a string and saved in the page as a hidden field, or multiple hidden fields

2.Write The query for fallowing table salary field null values filled with 10000, with out using Update?
Emp_ID Salary
A 5000
B Null
C 3000
D Null
E Null
A.

3.What is serialization?
A.Serialization is a process of converting an object into a stream of data so that it can be is easily transmittable over the network or can be continued in a persistent storage location. This storage location can be a physical file, database or ASP.NET Cache.
Serialization can be defined as the process of storing the state of an object instance to a storage medium. During this process, the public and private fields of the object and the name of the class, including the assembly containing the class, is converted to a stream of bytes, which is then written to a data stream. When the object is subsequently deserialized, an exact clone of the original object is created.

4. what advantages of stored procedures?
A. 1.Execution plan retention and reuse
2.Query auto-parameterization
3.Encapsulation of business rules and policies
4.Application modularization
5.Sharing of application logic between applications
6.Access to database objects that is both secure and uniform
7.Consistent, safe data modification
8.Network bandwidth conservation
9.Support for automatic execution at system start-up
10.Enhanced hardware and software capabilities
11.Improved security
12.Reduced development cost and increased reliability
13.Centralized security, administration, and maintenance for common routines

5.What type of Execeptions used in ur application?
A.An exception is an error condition or unexpected behavior encountered by an executing program during runtime.
System.OutOfMemoryException
System.NullReferenceException
Syste.InvalidCastException
Syste.ArrayTypeMismatchException
System.IndexOutOfRangeException
System.ArithmeticException
System.DevideByZeroException
System.OverFlowException
Sql Exception.

6. Where you will set your connection string?How to Access through your page?
A. IN Web.config File, we can access this conn through configuration manager.

7.What is ajax?
A.Ajax (shorthand for asynchronous JavaScript and XML[1]) is a group of interrelated web development techniques used on the client-side to create interactive web applications. With Ajax, web applications can retrieve data from the server asynchronously in the background without interfering with the display and behavior of the existing page.

7.What is a view?
A A view is a virtual table contails columns of one or more tables. a view contains logical information of physical tables.

8.WHAT IS TRIGGER?
A. Creates a DML, DDL, or logon trigger. A trigger is a special kind of stored procedure that automatically executes when an event occurs in the database server. DML triggers execute when a user tries to modify data through a data manipulation language (DML) event. DML events are INSERT, UPDATE, or DELETE statements on a table or view. These triggers fire when any valid event is fired, regardless of whether or not any table rows are affected.

DDL triggers execute in response to a variety of data definition language (DDL) events. These events primarily correspond to Transact-SQL CREATE, ALTER, and DROP statements, and certain system stored procedures that perform DDL-like operations. Logon triggers fire in response to the LOGON event that is raised when a user sessions is being established. Triggers can be created directly from Transact-SQL statements or from methods of assemblies that are created in the Microsoft .NET Framework common language runtime (CLR) and uploaded to an instance of SQL Server. SQL Server allows for creating multiple triggers for any specific statement.
Trigger

9.What is indexing?How many indexes we can create on a table?if we have more indexes it will degrade the performance of a table?
A.An index is a database object created and maintained by DBMS.An index is an on-disk structure associated with a table or views that speed retrieval of rows from the table or view. An index contains keys built from one or more columns in the table or view”. These keys are stored in a structure (B-tree) that enables SQL Server to find the row or rows associated with the key values quickly and efficiently.”
SQL Server has two major types of indexes:

1.Clustered
2.Non-Clustered
A table can have only one clustered index
and 249 non clustered index.
The performance: If a table has too many indexes associated with it, the updates or inserts or deletes on it would slow down.

10.What is paging in gridview?How to set first 20 records in grid view?What are the properties of gridview>
A. Paging is the property of gridview, which allows you to navigate the next records.
See link Grid view Properties
In page size property of grid view we will set

11.How to set the check Box control in Gridview?
A.

12. What is cookies?
A.Most browsers support cookies of up to 4096 bytes.
A Cookie is a small text file that the browser creates and stores on the hard drive of your machine. Cookie is just one or more pieces of information stored as text strings. A Web server sends you a cookie and the browser stores it. The browser then returns the cookie to the server the next time the page is referenced.
Creating cookies with ASP.NET is simple and straight forward. The System.Web namespace offers a class called HttpCookie to create cookies

Friday, June 4, 2010

2nd Interview

In this interview mostly interviewer asked about early satages of project implimentation
Tell me About your-self?
1.What is catching?where caching data will store?
A.It is a way to store the frequently used data into the server memory which can be retrieved very quickly. And so provides both scalability and performance. For example if user is required to fetch the same data from database frequently then the resultant data can be stored into the server memory and later retrieved in very less time (better performance). And the same time the application can serve more page request in the same time (scalability).At Server side

2.What is polymorphism, What are the types?
A. Refer First Interview Questions.

3.When Team Leader Given a task What steps You fallow to do do that task?
A.

4.When i Clicked a button in a page, How your event process will happen in your code(MVC-Model-View-Controller)?
A.MVC Framework

5.In database design what steps you will take to better performance?
A.Query Optimization. See below Link
How to do

6.What are the Collection Objects Used in ur Project?
A.The .NET Framework provides specialized classes for data storage and retrieval. These classes provide support for stacks, queues, lists, and hash tables.
See below link
Collections

7.Code Optimization?
A. program optimization or software optimization is the process of modifying a software system to make some aspect of it work more efficiently or use fewer resources.[1] In general, a computer program may be optimized so that it executes more rapidly, or is capable of operating with less memory storage or other resources, or draw less power.

8.What is Temporary table in sql server?
A.In a stored procedure, you often have a need for storing a set of data within the procedure, without necessarily needing that data to persist beyond the scope of the procedure. If you actually need a table structure, there are basically four ways you can "store" this data: local temporary tables (#table_name), global temporary tables (##table_name), permanent tables (table_name), and table variables (@table_name).
More...?Temporary Table

9.Do you have testing Team?, How they will deliver project fails to you?
A.

10.What are the parameters of connection string?
A. Server, Intial catalog, DataBase, User id , Password, Integrated Security.

11.do you used hash tables?
A.Dictionaries or Hash Tables also let you store any type of object but you store them in key/value pairs.A key cannot be a null reference (Nothing in Visual Basic), but a value can be.
//
// Instantiate a hashtable.
//
Hashtable hshData = new Hashtable();
//
// Add key/value pairs to the hashtable.
//
for (int i = 0; i < 10; i++)
{
hshData.Add(i, "Item" + i.ToString());
}
//
// See if we have items in the hashtable.
// Get the first item by specifying its key.
//

Friday, May 28, 2010

My First Interview Questions

1. Explain about ASP.NET Page Life Cycle?
Ans:When an ASP.NET page runs, the page goes through a life cycle in which it performs a series of processing steps. These include initialization, instantiating controls, restoring and maintaining state, running event handler code, and rendering.
2. What is Ajax
3. We have to do 2 things Before using ajax What are they
4. What is interface?
Ans: Inheritance enables you to create new classes that reuse, extend, and modify the behavior that is defined in other classes. The class whose members are inherited is called the base class, and the class that inherits those members is called the derived class.
5. What is oops
6. What is encapsulation
7. What is Stored Procedure
8. What is command for Knowing List of tables in sql server
Ans: sp_tables(which display all tables and their associated constraints information)
select * from sys.Tables(which display in more detail with how many colomuns in the table , when it was created..etc)
9. What is command for opening stored procedure query
10.Tell me about ur projects
11.What data controles used for data display
12.What is diff b/w GridView and FormView
13.The fallowing program will execute?
interface intf1
{
private void meth();
}
14.What is inheritance?
15.What is Polymorphism?
Ans.Poly means many and morph means form. Thus, polymorphism refers to being able to use many forms of a type without regard to the details.
Types of polymorphism
1.Compile-time polymorphism(Static polymorphism/Overloading/Early Binding)
Method Overloading is using same method name with different parameters
Ex:
public class AddingNumbers
{
public int Add(int a, int b)
{
return a+b;
}

public int Add(int a, int b, int c)
{
return a+b+c;
}

}

2.Run-time polymorphism*Dynamic polymorphism/Overriding/Late Binding)
Runtime time polymorphism is done using inheritance and virtual functions. When overriding a method, you change the behavior of the method for the derived class. Overloading a method simply involves having another method with the same prototype.

EX:
Class Test
{
Public virtual void show()
{
Console.WriteLine(“From base class show method”);
}
}
Public Class DynamicPolyDemo : Test
{
Public override void show()
{
Console.WriteLine(“From Derived Class show method”);
}
Public static void main(String args[])
{
DynamicPolyDemo dpd=new DynamicPolyDemo();
Dpd.show();

}
}

వై. యెస్. రాజశేకర్ రెడ్డి

Thursday, May 27, 2010

మహాత్మునికి కవితల నీరాజనం


రాజన్న !
కవిగా నేనొక కావ్యం రాద్దామని ఎప్పటినుండో కకౄత్తి పడేవాడ్ని
కాని కదిలే కావ్యంగా నువ్వున్నంత కాలం
ఆ సాహసం చెయ్యలేక పోయాను.
నీ తెల్లని పంచ కట్టులో మా చీకటి బతుకులు సైతం
తెల్లవారుతాయని తేట తెల్లం చేసిన నీ తెల్లని
నవ్వుకున్నా చల్లని కావ్యం ఎలా పుడుతుంది ?
గ్యాసు విషయాన గ్యాసు మనుషులంతా
గ్యాసు కొడుతుంటే
నువ్వు కళ్ళు చిట్టించగా వచ్చి పడ్డ మెరుపుకన్న , నీ తెలుగు పౌరుషంకన్నా
వాడి వేడైన కావ్యం ఎలా పుడ్తుంది ?

రాజన్నా !
నువ్వు అర్ద దశాబ్దమే పరిపాలించావని అర్దాంతంగా పోఆవని
కొందరు భ్రమ పడుతున్నారు
నువ్వు ఒక శతాబ్ద కాల అభివౄద్దిని
సంక్షేమాన్ని అందించి అంబరానికి ఎగిసి పోయావు.
అక్కడి దేవతల అమరుల స్థాయికి ఎదిగి పోయావు

నేడు బాహుటంగా బయిట పడింది
ప్రజాభిప్రాయాన్ని దిక్కరించి
తిక్క తిక్కగా కలుపు మొక్కలకు నీరు పోసే ఆదిష్ఠానం యొక్క తత్వం
నువెలా భరించావయ్యా ఈ తరహా యాతన
ఒక్కోసారి అక్కడి శిలువ దిగి గాని రాజదానికి చేరేవాడివి కాదేమో
ఆదిష్ఠానానికి దోచి పెట్టావని (పోని లే దాచుకున్నావన్లే) భూచి చూపిన వారి గుమ్మం ముందు చెయ్యి చాచిన వీరా మా రక్షకులు

అందుకే చెప్పేవాడివేమో ? మీరడగ కూడదు
నేను చెప్ప కూడదని

అడగ కూడనివి , చెప్ప కూడనివి సైతం దిగ మ్రింగి మా పళ్ళాలను అన్నంతో నింపవు ..విషం తాను మ్రింగి అమౄతం పంచిన రుదౄడిలా
అందుకే నీ ముక్తి స్థలి రుద్ర కొండ అయ్యిందేమో.
హే రాజన్నా !
మనిషిగా పుట్టిన నువ్వు
మహాత్మునిగా ఎలా ఎదిగావయ్య ?
నువ్వు నీ ఆత్మ కథ రచించి ఉంటే అది మరో సత్య శోధన అయ్యేదేమో?
కేవల భూ తర్పణాలకే పరిమితమైన కసాయి గుండెలకేం తెలుసు
ప్రజల గుండెలో ఇంత చోటు ఎంత విలువైందో ?

ప్రేమలో పడ్డాకే అత్త కూతురి కట్టు, బొట్టు తెలిసొచ్చినట్టుగా
2003 పాద యాత్రలోని నీ అడుగులు ప్రజల గుండెకేసే అన్న సత్యం
పసిగట్టాక గాని నీ గతం మాకు అవగతం కాక పోయే

నాయకుడు పుడతాడని కొందరు
కాదు కాదు తనే శిలై, తనే శిల్పి అయ్యి తీర్చి దిద్దుకుంటాడని మరి కొందరు
అంటుంటే తలపట్టుకుంటిని
ఆ ప్రశ్నకు జవాబు ఏ చరిత్రలోను దొరక్క
నీ జీవిత పుస్తకం తెరిచా సమాదానం చూసి మురిసా…
అన్నట్టు జీవిత పుస్తకం ఏంది సిల్లీగా .. అదో చరిత్ర..

నాయకుడు పుడతాడు రేగు చుక్కలా ?
ప్రజల జీవితాలను కారు చీకటి కమ్ముకున్న వేళ
వారి కళ్ళు తమ ఇల వేల్పు కొరకు ఆకాశానికేసి
చూస్తే అప్పుడు కనిపిస్తుంది ఆ రేగు చుక్క !
ఈ ముక్క నాకు తెలిపిన నీ జీవితం ధన్యం
ఆ చుక్క ఎప్పుడో పుట్టింది
ప్రజ కంట మరెప్పుడో పడింది

హే జన హౄదయ నేత !
మా నమ్మకాలను వొమ్ము చేసి
ప్రపంచ బ్యాంకుకు అమ్మ చూస్తే
ఆ అంబ అమ్ముల పొదిలోని ఆగ్నేయాస్త్రంలా అడుగు ముందుకేసావు
కరుణ అడుగంటిన అవకాశ వాదులను చెడుగుడు ఆదించావ్

శల్య సారథ్యాలు, స్వప్స్ఖ దాడులు, పద్మవ్యూహంలో అభిమణ్యువును తలపించావు
అందరు డాక్టర్లు తమ చేతి స్టెత్తు తో రోగి గుండె చప్పుడు వింటారు
కాని నువ్వు రాష్ఠ్ర గుండె చప్పుడు విన్నావు

నాటి హైటెక్ ఇంద్రజాలం పై వాస్తవికతపు మంత్ర జలం చల్లావు
కోడి పిల్ల గుంట నక్కై కనిపించింది.
ఆమ్మో నాటి రోజులు తలుస్తే గుండె లయం తప్పుతుంది
ఆ చీకటి రోజుల్లో రాష్ఠ్ర వ్యవసాయరంగం అహల్యలా బండై పోయుంటే శ్రీరామునివలే నీ పాదం మోపి , ప్రాణం పోసావు.
గుల్బర్గాలో నువ్వు మెడిసిన్ చదువుతున్న రోజుల్లో
నీ అభిమాన కథానాయకుడు ఎన్.టి.ఆర్ .
ఎవరినన్నా ప్రభావితం చెయ్యగల నటుడని నువ్వే కొనియాడిన
అతను రాయల శీమ ప్రాజెక్టులను విశ్మరిస్తే అసెంబ్లీ ముందే నిల బెట్టి నిల దీసావు
ఇది మొన్నటి సత్యం

ఎన్.టి.ఆర్ పేదవానికి కూడు అందించటానికి మొదలు పెట్టిన ప్రయత్నాన్ని నువ్వు పూర్తి చేసావు.
ప్రత్యర్ది పథకం అమలు చేస్తే కీర్తి ఎక్కడ వారిని వరిస్తుందోనని కకౄత్తి
పడక పిల్లి ఏ రంగుదైనా సరే అది ఎలుకలను పట్టాలంతే అంటూ మాసేదుంగ్ లా అమలు చేసావు రెండు రూపాయలకే కిలో భియ్యం

స్వంత అల్లుడు తుంగలో తొక్కిన పథకానికి పునర్జీవం పోసావు
అసలైన వారసుడ్ని నేనని చెప్పక చెప్పావ్.

నాటి రాజులు సైతం తమ కోటల్లో నిల్వ చేసే వారు బియ్యం
కాని సామాన్యులను వెంటాడింది ఆకలి దెయ్యం
దీంతో భూత వైద్యుని అవతారమూ ఎత్తావు
భూతాన్ని భూస్థాపితం చేసావ్

అభిమానాన్ని రాజకీయాన్ని
స్నేహాన్ని వ్యవహారాన్ని
వేరు చేసి అభిమానం చాటావు
స్నేహాన్ని నిల బెట్టావు
ఆ విశాల హౄదయంలోని ఆత్మకు నేల మీదనుండి పైకి ప్రయాణించడం ఇరుకని
నింగికి దగ్గరగా ఉన్న కొండను ఎంచుకున్నావేమో నీ ప్రాణార్పణానికి

నాటి పాలకులు 2 శాతమే ఉన్న నెటిజన్ల కోసం ఇల్లు పీకి పందిరేస్తే
నువ్వేమో 70 శాతం ప్రజానీకాన్ని పోషించే
వ్యవసాయ రంగం పై దౄష్ఠి సారించావు
ఆకలితో ఉన్నవానికి చేపలివ్వకు చేపలు పట్టడం నేర్పు అన్నాడో మేధావి
ఆ పూటకు చేపలిచ్చి , చేపలు పట్టడం కూడ నేర్పాలన్నావ్..
అవును రైతుల విద్యుత్ భకాయిలను రద్దు చేసి ఉచిత విద్యుత్ అందించి ఆ పై
మొదలు పెట్టావు జలయజ్ఞం

ఎడ తెగని కరవుతో, వ్ద్యుత్ భకాయిల వసూలు నిమిత్తం జప్తులు, క్రిమినల్ కేసులతో
వేదించిన పాలనలో ,రైతు గుండెలు చెదిరి పోనున్న తరుణంలో
ఆ అధకారంలో అరుణ కిరణంలా మండుటెండల్లో పాదయాత్ర చేస్తే
భవిష్యత్తు కబ్జల నిమిత్తమే చేసావు సర్వే అని తూలలాడిన కుర్రకార్లు తూలి పడి పుడమి తల్లిను ముద్దాడినప్పుడే అర్థమైంది
సత్యం నిలిచింది నీ వెంటని
నువ్వు క్రైస్తవుడని అన్య మత ప్రచారాన్ని ప్రోత్సహించావని గొంతు చించుకున్నవారు
గుళ్ళో పూజారికి, దేవతకు సైతం కాసుల వర్షం కురిపించిన సంగతిని మాత్రం ఏంచక్కా దాచేరు
దాస్తే దాగేదా సత్యం
ప్రేమే లక్ష్యం సేవే మార్గమని ప్రకటించుకున్నవారు అందించి ఉండాలి ఆ నినాదాన్ని నిజమైన నివాళిగా
నీ తండ్రిని పొట్టన పెట్టుకున్నవారిని సైతం క్షమించిన శాంతి పావురమా
అందుకే నీ ముక్తి స్థలి పావురాల గుట్టైందేమో?

హే ఆశ్రిత కల్ప వౄక్షమా !
ఇంకో శతాబ్ద కాలానికి నా బో(పోటి) కవులకు సైతం కల్ప వౄక్షమయావు నువ్వు
నిన్ను కీర్తించాలని దలచిన అదే క్షణం
సరస్వతి దేవి వారి నాలిక పై ఓంకారం దిద్దినంతగా
ఆసువుగా కవితలు దొరులుతాయి
అశేష ప్రజానీకం సంక్షేమమే సంకల్పంగా నువ్వు ఆశువు బాసినా
మమ్ములను ఆసు కవులు చేసావు

నువ్వూ ఓ తల్లి కడుపునే పుట్టావ్
మరి దేవుడివి ఎలా అయ్యావయ్యా ?
అమరలోకంలోని దన్వంత్రి ఆత్మ నీలో ప్రవేశించిందా ?
ఆరోగ్య శ్రీతో మమ్మాదుకున్నావు
అన్న దాతలకోశం, అన్నార్తుల కోశం నువ్వు చేపట్టిన పాద యాత్రతో ఆ అన్న పూర్ణేశ్వరి గుండె కరిగి పోయి
శివుని ఆకలి తీర్చిన గరటిని నీకిచ్చిందేమో ?

భిన్న రుచులు కలిగిన లోకులను మురిపించి వారి అహం మరిపించి ఎలా దగ్గరయ్యావయ్యా ఇన్ని కోట్ల మందికి ?
40 సం.ల వయస్సుకే తేజస్సు క్షీణించి అబధ్రతకు లోనయ్యే ఈ తరం యువతరం పుట్టుకతో వౄద్దులై బతికేస్తుంటే
60 సం.ల వయస్సుకి నువ్వు కలలు కన్న ఉషస్సు కొరకు
పరుగులు తీసి యెనలేని యశస్సును కూడ కట్టుకున్న
నిత్య యవ్వనం నీకెలా సంప్రాప్తించింది
నిస్వార్థమే నిన్ను అమౄతమై పరుగులు తీయించిందేమో ?

కాస్త పెద్ద పదవి వరించగానే పేదవాని జీవణ్మరణ సమస్య చీమకాన్న చిన్నదై కనబడే ఈ కలిలో
అంత పెద్ద పదవిలో ఉన్నా పీడిత ప్రజానీకం సమస్యలను ఎలా గుర్తుపెట్టుకో గలిగావు
సరస్వతి ఆకు తిన్నావా ? పండిన ఆకుల్లా వనికి పోతున్న వౄద్దుల ముఖాలు తలచావా ?
********************************
కాలం ఎన్.టి.ఆర్ లేని లోటును వై.ఎస్ తో పూడ్చినట్టే , వారిరువురు లేని లోటును జగన్ తో పూడ్చనుందా అన్న ఆశాకిరణం నాలో మెరుస్తుంది. ఇదేమిటి అసంబంధ పోలికలని నామీద రెచ్చి పోవడానికి ఎందరో సిద్ద పడతారు. అది వారి కర్మ.

Wednesday, May 26, 2010

C#.net constants, readonly members

const and readonly perform a similar function on data members, but they have a few important differences.
Constants:
1. A constant members defined at compile time and they can't be changed at runtime
2. We must initialize when they are declared
Ex: public const double intrest=3.1056;
3.The above declared variable cannot be changed in the application anywhere else in the code as this will cause a compiler error.



Readonly :
A read only member is like a constant in that it represents an unchanging value. The difference is that a readonly member can be initialized at runtime, in a constructor as well being able to be initialized as they are declared.

For example:
public class MyClass
{
public readonly double PI = 3.14159;
}


public class MyClass
{
public readonly double PI;

public MyClass()
{
PI = 3.14159;
}
}

Tuesday, May 25, 2010

.net Framework Versions

In this PDF Documetn includes all the .Net Versions and their new enhancements....Net Framework Versions

Linq - SqlMetal

We can generate sql metal file or Linq to sql clasess(.dbml) to our project by going into add new items. It will just add file, we have to drag drop the tables from server explorer and we have to configure our sql table clasess design. If any changes in database are made we have to change the entire structure of the .dbml file.
To avoid this problem we can generate our own SQL Metal file......
The sql metal tool is located under the following directory
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\SqlMetal.exe
Fallow this steps to generate sql metal file
1.Open the command prompt
2.Go into the C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\SqlMetal.exe by typing cd program files....
3. it will Execute the SqlMetal.exe file and generate some lines gow to create sql metal file.
.................
Now we will create our own sql Metal file where ever we want..
1. Create an empty folder for SQLMetal output file E.g : D:\MyProject

2. Then open a Command Window and navigate to the directory (see location) where SqlMetal is located.

3. Then use the following command for generating a single file called NorthWind.dbml.

SqlMetal.exe /server:localhost /database:NorthWind /dbml:C:\MyProject\NorthWind.dbml /namespace:NorthWind.DAL/Context:NorthWindDataContext /provider:SQL2005 /pluralize

How to Learn WPF

Now a Days Many people getting strain by rounding trips around Ameerpet institutes, asking friends.... for learning new technologies in best inistitute, Before we get through in to this they are releasing new versions and new technologies.....all this process is waste of money and time....
The better way is learn through internet. This is our Biggest Inistitute. In this inistitute master is Google search engine, it will show multiple answers for single question...u feel this also...blaaaaa..blaaaa

ok..Come to point
Here i am giving Link how to learn WPF quick and finely...
How to learn wpf in 2 weeks

Thursday, May 20, 2010

String Palindrome, Number Palindrome using c#.net

//string palindrome
string revstr = "";
public string palindrome(string s)
{

for (int i = s.Length - 1; i >= 0; i--)
{

revstr += s[i];

}
return revstr;

////string palindrome using c# predefined methods
//char[] chstr = s.ToCharArray();
//Array.Reverse(chstr);
//string str = new string(chstr);
//return str;
}
////number palindrome
public int NumPalindrome(int n)
{
int r;
int num=0;
while (n > 0)
{
r = n % 10;
n = n / 10;
num = num * 10 + r;
}
return num;
}

Wednesday, May 19, 2010

Fibonacci Series in c#.net

public void Fibonacci(int i)
{
int j = 0;
int k = 1;
int Temp;
int n = 0;
for (int m = 0; m <= i; m++)
{
Temp = j + k;
Console.Write(j);
j = k;
k = Temp;

}
////Using While Loop
//while (n < i)
//{
// Console.Write(j);
// Temp = j + k;
// j = k;
// k = Temp;
// n++;
//}
Console.WriteLine();
}

Tuesday, May 18, 2010

చందమామ కథలు

ఒక అప్పటి రోజుల్లో ఇంట్లోని పిల్లలకు నాయనమ్మ తాతయ్యలు ఎన్నో కథలు చెప్పేవాళ్ళు అందులో బేతల కథలు ఎంతో ప్రాచుర్యం పొందాయి. కాలం పోకడ వల్ల ఇప్పటి పిల్లలకి ఆ కథలు చెప్పేవాళ్ళే లేరు. క్షమించండి లేరు కాదు కథలువారికీ రావు.నా చిన్నప్పుడు మా తాతయ్య ప్రతి సాయంకాలం నన్ను తన పక్కన కూర్చోపెట్టుకొని ఎన్నో పద్యాలూ , కథలు వాళ్ళ చిన్నప్పటి రోజులు గురించి చెప్పేవాళ్ళు. ఇప్పటి మనుషులకి అంత తిరికలు లేవు. ఉన్నాచెప్పరు. మన సంస్కృతి సంప్రదాయాలను మనమే కాపాడుకోవాలి. అందుకే మీ కోసం ఈ బేతాళకథల లింకు కింద ఇస్తున్నాను.
http://www.greatertelugu.com/telugu-books/Pustakalu/baalananda/bhetalakadhalu.pdf

బారిష్టర్ పార్వతీశం

బారిష్టర్ పార్వతీశం తెలుగు హాస్య నవల. హాస్యాన్ని ఇష్టపడే ప్రతి తెలుగు వారు చదవవలిసిన నవల. ఇందులోని పాత్ర కర్త ఉపయోగించే పదాలు అతను పడే ఇబ్బందులు మనకు ఎంతో నవ్వు తెప్పించుతాయి. ఈ పుస్తకం నేను పడవ తరగతి లో ఉన్నప్పుడు చదివాను . తరువాత మళ్ళి దాదాపు తొమ్మిది సవత్సరాలుతరువాత చదివాను . ఇది మనం ఏదైనా టెన్షన్ lo ఉన్నపుచదివితే ఎంతో ఉపసమనం పొందుతాము.
ఇది బారిష్టర్ పార్వతీశం నవల link, చదవి ఆనందించండి
బారిష్టర్ పార్వతీశం నవల

Saturday, May 15, 2010

Gridview Background color setting based on Data

Protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if(e.Row.RowType==DataControlRowType.DataRow)
{
//Retives the DataItem value from row into Marks variable
//Total_Marks is Grdview database coloumn name
int Marks=(int)DataBinder.Eval(e.Row.DataItem, "Total_Marks");
if(Marks>500)
e.Row.BackColor=System.Drawing.Color.Red;
else
e.Row.BackColor=System.Drawing.Color.Blue;
}
}