What is the difference between URL and URI?

December 17th, 2009 | No Comments | Posted in ASP .NET Controls

URI(Uniform Resource Identifier):  This is an string and needs to identify the resource using meta information and about one resource.

URL(Uniform Resource Locator):  This is used to identify the resource by using protocols on the net.

Tags: ,

C#.NET Keywords

November 7th, 2009 | No Comments | Posted in Uncategorized

These are the keywords used in C#. Unfortunately, they are organized alphabetically, instead of categorically.

abstract event new struct
as explicit null switch
base extern object this
bool false operator throw
break finally out true
byte fixed override try
case float params typeof
catch for private uint
char foreach protected ulong
checked goto public unchecked
class if readonly unsafe
const implicit ref ushort
continue in return using
decimal int sbyte virtual
default interface sealed volatile
delegate internal short void
do is sizeof while
double lock stackalloc
else long static
enum namespace string
Tags:

Operators used in C#.NET

November 7th, 2009 | No Comments | Posted in Advanced C#

C# has a large number of operators, some will be used in every single program or module, while others you may not ever use.

The most common of the operators are the arithmetic and logic operators. These will be very familiar to you is you know other programming languages, or mathematics.

Arithmetic

Operator

Action

Example

Result

+ Addition z = 1 + 2 z = 3
- Subtraction z = 1 – 2 z = -1
* Multiplication z = 2 * 2 z = 4
/ Division z = 22 / 7 z = 3.142857
% Modulus z = 22 % 7 z = 1
The modulus operator (%) computes the remainder after dividing its first operand by its second.

Logic

Operator

Action

Example

Result

&& Logical AND true && false
true && true
false && false
false
true
false
|| Logical OR true || false
true || true
false || false
true
true
false
! Logical NOT true && !false true

Increment and Decrement

Operator

Action

Example

Result

++ Increment a=1;
a++;
a = 2
Decrement a=1;
a–;
a = 0;

Relational

Operator

Action

Example

Result

== Equals x = 1;
x == 1
true
!= NOT Equals x = 1;
x != 1
false
< Less than x = 1;
x < 2;
true
> Greater than x = 1;
x > 0;
true
<= Less than or equal to x = 1;
x <= 0
false
>= Greater than or equal to x = 1;
x >= 5
false

Assignment

Operator

Action

Example

Result

= Assignment x = 1
+= Incremental Addition a=1;
a += 3;
a = 4;
-= Incremental Decrement a=1;
a -= 3;
a = -2;
*= Multiply by a=2;
a *= 4;
a = 8;
/= Divide by a=8;
a *= 2;
a = 4;
%= Modulus or Remainder a=8;
a %= 3;
a = 2;
&= Logical AND “x &= y” is equivalent to “x = x & y”
|= Logical OR “x |= y” is equivalent to “x = x | y”
<<= Left Shift “x <<= y” is equivalent to “x = x << y”
>>= Right Shift “x >>= y” is equivalent to “x = x >> y”

Others

Operator

Action

Example

Result

& Logical AND if (false & ++i == 1) false
| Logical OR true | false
false | false
false
true
^ Logical Exclusive XOR false ^ false
false ^ true
true ^ true
false
true
false
~ Bitwise Complement x = ~0×00000000 x = 0xffffffff
<< Left Shift 1 << 1 2
>> Right Shift -1000 >> 3 -125
?? Default Value int y = x ?? -1; if x = null y = -1 else y = x
Conditional Operator condition ? expression if true : expression if  false
Tags:

Mobile Phone Community & Resource

October 19th, 2009 | No Comments | Posted in Mobile Technology
  1. Apple.HowardForums.com
  2. Motorola.HowardForums.com
  3. RIM (Research in Motion)
  4. LG.HowardForums.com
  5. SonyEricsson.HowardForums.com
  6. Nokia.HowardForums.com
  7. Japanese Phones

Training-Centres for PHP

October 13th, 2009 | No Comments | Posted in Training Centers
  1. PHP Training Centres in Chennai – Part 2
  2. PHP with MySql Training Centres in Chennai – Part 3
  3. PHP with MySql Training Centres in Chennai – Part 1
Tags:

.Net Training Center in Chennai

October 13th, 2009 | No Comments | Posted in Advanced C#

i).  Core Mind Technologies

Providing Real Time Projects, Training  N certifications for the following platforms in :

1.         DOTNET with atlas

2.         Software Testing Tools Manual testing, automation testing (Silk Test, Rational Robot,   QTP,WIN RUNNER,LOAD RUNNER,TEST DIRECTOR)

3.         JAVA N J2EE with ajax, hibernate, springs

4.         Oracle and dataware housing

5.         Php n mysql

6.         RIA, web technology

We are into Software Development with overseas Clients

Consultancy with 100+ clients

Software Training with Interview Assurance

We are Providing 10% Offer for all courses.

Contact Person : Nithya

Mobile : 9281339970

Email:  nithya@coremindtechnologies.com

Contact Address :

Y213,2nd avenue,

Annanagar,

Near by Hotel Saravanabhavan,

Chennai-40

(landmark: Bluestar, opp to universal mobile show room.)

Website : http://www.coremindtechnologies.com

ii). Top Leading training center for .NET

Providing Real Time Projects, Training and certifications in:

•    .NET with atlas

•    SOFTWARE TESTING with automation project

•    JAVA N J2EE with Ajax, hibernate, springs

•    Oracle and Dataware Housing

•    PHP & MYSQL

•    RIA, Web Technology

•    We are into Software Development with overseas Clients

•    Consultancy with 100+ clients

•    Software Training with Interview Assurance

Provided. with 10% Offer for all courses.

Related to : Top Leading training center for DOTNET

Contact Person : Ammu Chandra sekar
Mobile : 9281339970

Tags:

How to Implement Accordion Control?

September 28th, 2009 | No Comments | Posted in AJAX Tutorial

Accordion control is used in .Net(web) which is implemented for showing multiple panes and display one pane at a time. This is being constructed with several collapsiblepanels with that one pane only expanded at a time.

There is each AccordionPane control has a template for its Header and its Content.

For the above example source code given shortly..

<%@ Page MasterPageFile=”~/Sample/MasterPage.master” Title=”HelpPage Help”%>

<%@ Register Assembly=”CommonClassLibrary” Namespace=”CommonClassLibrary” TagPrefix=”ccl”  %>

<%@ Register Assembly=”AjaxControlToolkit” Namespace=”AjaxControlToolkit” TagPrefix=”cc1″ %>

<%@ Register Assembly=”System.Web.Extensions” Namespace=”System.Web.UI” TagPrefix=”asp” %>

<%–<%@ Register Assembly=”CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304″

Namespace=”CrystalDecisions.Web” TagPrefix=”CR” %>–%>

<script runat=”server”>

</script>

<asp:Content ContentPlaceHolderID=”maincontent” Runat=”Server” EnableViewState=”true”>

&nbsp; &nbsp;

&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;

<asp:ScriptManager runat=”server”>

</asp:ScriptManager>

<fieldset style=”width: 1235px; height: 566px; z-index: 103; left: 6px; position: absolute; top: 200px; overflow:scroll;”>

<!– add H2 here and hide it with css since you can not put h2 inside a legend tag –>

<%–<h5>Help Result:</h5> –%>

&nbsp;&nbsp;

<ajaxToolkit:Accordion runat=”server” SelectedIndex=”-1″  HeaderCssClass=”accordionHeader”

ContentCssClass=”accordionContent” FadeTransitions=”true” RequireOpenedPane =”false”  FramesPerSecond=”40″

TransitionDuration=”250″ AutoSize=”None” SuppressHeaderPostbacks=”true” HeaderSelectedCssClass=”accordionHeaderSelected” style=”z-index: 100; left: 0px; position: absolute; top: 0px”>

<Panes >

<ajaxToolkit:AccordionPane runat=”server”>

<Header>

<a href=”" ><b>1. TIMESHEET</b></a>

<br />

<br />

</Header>

<Content>

<table border=”0″ >

<tr> <th colspan=”3″ bgcolor=”#99CCFF”>Project1</th> </TR>

<tr><td>  <br /> <ol>

<p><font face = “Verdana” size = “2″><span style = “font-size: 10pt; font-family: Verdana”><li>——Statement1——</p>

<p><font face = “Verdana” size = “2″><span style = “font-size: 10pt; font-family: Verdana”><li>>—–Statement2——</p>

<p><font face = “Verdana” size = “2″><span style = “font-size: 10pt; font-family: Verdana”><li>——Statement3——</p>

<p><font face = “Verdana” size = “2″><span style = “font-size: 10pt; font-family: Verdana”><li>——Statement4——</p>

<p><font face = “Verdana” size = “2″><span style = “font-size: 10pt; font-family: Verdana”><li>——Statement5——</p> <br />

</ol>

</td>

<td>

<asp:Image runat=”server” ImageUrl=”~/Sample/HelpFiles/images/User/HelpPage.jpg” AlternateText=”Help Contents” Width=”150″ Height=”100″/>

<ajaxtoolkit:AnimationExtender runat=”server” TargetControlID=”Image1″>

<Animations>

<OnHoverOver>

<Parallel Duration=”.2″ fps=”50″>

<Resize Width=”900″ Height=”550″  />

</Parallel>

</OnHoverOver>

<OnHoverOut>

<Parallel Duration=”.2″ fps=”50″>

<Resize Width=”150″ Height=”100″  />

</Parallel>

</OnHoverOut>

</Animations>

</ajaxtoolkit:AnimationExtender>

</td>

</table>

</Content>

</ajaxToolkit:AccordionPane>

<div style=”height: 560px; left: -214px; top:200px; width: 1240px; position: absolute;” >

</div>

</asp:Content>

Tags: ,

ISRO launches 7 satellites in 1200 seconds

September 23rd, 2009 | No Comments | Posted in News Board

The Indian Space Research Organisation (ISRO) launched PSLV C-14 which carried 7 satellites into the outer space.

Rs.70-crore PSLV rocket carried the Rs.130-crore Oceansat2 — India’s remote sensing satellite on Wednesday afternoon from Satish Dhawan Centre in Sriharikota.

The PSLV carried six other nano satellites. PSLV will place India’s OCEANSAT 2 satellite in orbit.

and for more information click on this link to study..

President’s son gets Congress ticket, sitting MLA rebels

President Pratibha Patil’s son Rajendra Shekhawat has finally got a Congress ticket for the Maharashtra assembly polls. Sources say he will contest from Amravati.

The decision comes despite much discontentment in the party over election tickets for sons and daughters of senior leaders. Shekhawat’s is one of 159 names that Congress president Sonia Gandhi has now cleared; others include sons of Vilasrao Deshmukh, Vilas Muttemmwar, Narayan Rane and Patangrao Kadam, and the daughter of Sushil Kumar Shinde…

and for the more info click on this link given below..

http://www.ndtv.com/news/india/presidents_son_gets_congress_ticket.php

Tags: , , , ,

Definition: Database

September 16th, 2009 | No Comments | Posted in SQL Tutorial

Hi,

Here is the links given to study about the Database concepts, which is fully integrated about the topic

What is a database?

A database is a collection of records which is stored in a particular loaction,so that it could easily accessed, managed, and updated. In one view, databases can be classified according to types of content: bibliographic, full-text, numeric, and images.

for Oracle Database related information can be find through following links given here..

http://en.wikipedia.org/wiki/Database

http://www.oracle.com/technology/products/oracle9i/index.html

Tags: , ,

.Net Tutorial

September 16th, 2009 | No Comments | Posted in Uncategorized

Guys,

For .Net Tutorial many websites are hosted in the net, which are the top most websites listed here..

Tags: , , ,