How to convert original text to hash text using md5 and sh1 Algorithms in asp.net c#

By // 1 comment:
Introduction:- Hashing is secure and helpful concepts to convert original text to hash text.It is a cryptography Technology.There are many cryptography technology such symmetric and asymmetric but here we will learn only hashing concepts (md5 and sh1).If you want to discuss more details about cryptography ,you can contact me(holiday only).
  • A Hash function is an Algorithm which creates a digital representation or 'fingerprint' in the form of a "hash value" of a standard length.
  • Hash value is usually much smaller than the message.
  • It is one way function.
3

How to use ObjectDataSource control in asp.net applications

By // No comments:
Hi friend,Today we will learn how to configure and use ObjectDataSource control in asp.net applications .This control represents the business objects and allow you to use the objectDataSource control in conjunction with a data-bound control to display ,edit and sort the data on a web page with little or no code .The control is used to create web applications that rely on the middle-tier objects to manage data. I have already explained following data source as given below :-
There are some steps to implement the whole concepts as given below:-
3

WPF Interview questions and answers part 6

By // No comments:
1. ) What are the sibling libraries in WPF ?                                                                           
There are three types of sibling libraries in WPF.
  1.  Windows Communication Foundation (wcf)
  2. Windows Workflow Foundation (WWF)
  3. CardSpace 
2. ) Why does we use CardSpace in WPF ?                                                                            
  • CardSpace provides a common identification syatem.
  • Cardspace can be used on Desktop applications ,Websites, etc.                                
3. ) Which languages can be used  as a common medium for Designers and Developers both ?
  • XAML
  • HTML
4. ) What is difference between a XAML File and code behind file in WPF ?           
There are following differences between XAML file and Code behind file.
  • The XAML File contains the XAML Markup.
  • The Code Behind file is associated with a XAML File and contains C# or VB Codes. 
5. ) Why does we use x:Name attribute XAML in WPF ?                                                  
  • x:Name is used to allow you to uniquely Identify an instance of an object in XAML.
  • The value of this attribute can be referenced in the associated c#.
3

How to access the database using XmlDataSource Control in asp.net

By // No comments:
Hi friend ,Today we will learn about the XmlDataSource Control in asp.net. The XmlDataSource Control allows a data bound control to bind the data from a XML document.This control also supports Xpath expressions that allow you to return only certain nodes from the XML document.In our previous post ,i have already explained some database controls with examples.
There some steps to implement this whole concepts as given below:- 
Step 1:- First open Your visual studio-->Create an Asp.net Empty website-->Add  a Default.aspx page -->drag and drop  XmlDataSource and Gridview controls on the page as shown below:-
3

How to Access Microsoft Access database through AccessDataSource control easily

By // No comments:
Hi Friend,Today we will learn about AccessDataSource control in asp.net.The AccessDataSource control is used to access the data from the Microsoft Access Database File in asp.net.This control is very helpful to configure the connection with Microsoft Access Database . There is no need to write the c# or html codes for connections.This control creates the connection codes automatically.So you have to no worry about the c# codes.You can see the connection codes in Source file.
Here i have already configure the SqlDataSource Control as given in below link.
There are some steps to implement this whole concepts as given  below:-
3

How to draw different charts graphs using the chart control on asp.net website

By // No comments:
Hi Friend, Today,we will learn "how to display the database records on chart control".This chart includes different type of charts as pie,line,bar ,area etc.Here you can display your database records in different charts (pie,line,bar ,area etc).You can choose your chart type ,in which you want draw your graph.I have already displayed the records in different charts using Ajax Technology.You can learn it by following links as given below:-
There are some steps to implement this whole concepts as given below:-
Step 1:-First create a table(Goods Details) in your sql database and insert some values also as show below:-
3
Powered by Blogger.