Sitecore XM Cloud, Ordercloud, CDP, Personalize, ContentHub and Send
Wednesday, October 15, 2014
Sitecore :- How to deploy/install TDS package
Sitecore :- How to reset the cookies and clear cache in Sitecore
Monday, November 25, 2013
Generic functionality and sample program.
Generics refers to a technique of writing code for a class
without specifying the data type that the class works with.
First we should now why we required generic
Earlier in C# 1.1 we have object programming and there
we can create object and in case of typesafe and performace we were
creating another classes.
In generic basically we are defining the datatype.
Let say.
class Generic
{
T[] itemsType;
public static string Name ="test";
}
}
Calling the generic function
String nameValue = "";
nameValue = Generic<string>.Name;
Simple generic program:-
Create a class below
class Address {
public int SrNo { get; set; }
public string Name { get; set; }
public
Address(int srNoInput, string
NameInput)
{
this.SrNo
= srNoInput;
this.Name
= NameInput;
}
}
Use this class through generic functionality
List<Address> Addresslist = new
List<Address>();
Addresslist.Add( new Address(1,"Fist"));
Addresslist.Add( new Address(2,"Second"));
Addresslist.Add( new Address(3,"Third"));
foreach(
Address Add in
Addresslist)
{
Console.WriteLine("Address Number:- " +
Add.SrNo);
Console.WriteLine("Address Name r:- " + Add.Name);
}
Wednesday, October 16, 2013
Converting time zone in asp.net,C# and vb.net through framework 3.5.
First add below references.
Namespace: System
Assembly: System. Core (in System. Core. dell)
Sample function that works for all of you.
Create below function in common classes.
Public Function GmtToPacific (ByVal dateTime As DateTime) As DateTime
Return TimeZoneInfo. ConvertTimeFromUtc (dateTime, TimeZoneInfo. FindSystemTimeZoneById ("Pacific Standard Time"))
End Function
Calls this function and pass input date in UTC/GMT format.
Dim objName as new CommonClassName
objName .GmtToPacific(sinceDate.ToUniversalTime.ToString())
Namespace: System
Assembly: System. Core (in System. Core. dell)
Sample function that works for all of you.
Create below function in common classes.
Public Function GmtToPacific (ByVal dateTime As DateTime) As DateTime
Return TimeZoneInfo. ConvertTimeFromUtc (dateTime, TimeZoneInfo. FindSystemTimeZoneById ("Pacific Standard Time"))
End Function
Calls this function and pass input date in UTC/GMT format.
Dim objName as new CommonClassName
objName .GmtToPacific(sinceDate.ToUniversalTime.ToString())
How to consume RaaS service( Report as a service), details and sample code
Dim webRequest As HttpWebRequest = DirectCast(Net.WebRequest.Create("URL of Raas service"), HttpWebRequest)
webRequest.Method = "GET"
webRequest.ContentType = "application/x-www-form-urlencoded"
webRequest.Credentials = New NetworkCredential("URL of RaaS service", "token")
Dim httpResponse As HttpWebResponse
Dim contentReader As StreamReader
Try
httpResponse = DirectCast(webRequest.GetResponse(), HttpWebResponse)
contentReader = New StreamReader(httpResponse.GetResponseStream())
Dim readToEnd As String = contentReader.ReadToEnd()
Catch ex As Exception
'' Log the exception here
End Try
webRequest.Method = "GET"
webRequest.ContentType = "application/x-www-form-urlencoded"
webRequest.Credentials = New NetworkCredential("URL of RaaS service", "token")
Dim httpResponse As HttpWebResponse
Dim contentReader As StreamReader
Try
httpResponse = DirectCast(webRequest.GetResponse(), HttpWebResponse)
contentReader = New StreamReader(httpResponse.GetResponseStream())
Dim readToEnd As String = contentReader.ReadToEnd()
Catch ex As Exception
'' Log the exception here
End Try
Monday, October 14, 2013
Zip facility (Zip compression) with .NET Framework
This is very simple to create a zip file and extract this through .net framework,Many developers where using third party components like DotnetZip
Zip is one of the most accepted archive file formats. Zip format is supported in almost all operating systems with some built-in name.
The first step is you need to reference two namespaces:
If you wish to unzip, you can use the
Zip is one of the most accepted archive file formats. Zip format is supported in almost all operating systems with some built-in name.
- In Windows operating system it’s implemented by the name “Compressed folders”.
- In MAC OS it’s implemented by the name “Archive utility”.
System.IO.Compression.The first step is you need to reference two namespaces:
System.IO.Compression.FileSystemSystem.IO.Compression
CreateFromDirectory function as shown below.ZipFile.CreateFromDirectory(@"D:\data",@"D:\data.zip");
ExtractToDirectory
function as shown in the below code.ZipFile.ExtractToDirectory(@"D:\data.zip", @"D:\data\unzip");
Subscribe to:
Posts (Atom)


