Sample: Code using for loop to pass each of the array variable value.
string[] names = {"Name1","Name2","Name3"};
for (int ArrayNo = 0; ArrayNo < names.Length; ArrayNo++)
{
string AccountID= names[ArrayNo];
}
For Loop in C# Sample
0 commentsPosted by Unknown at 3/14/2013 02:07:00 pm
Labels: ASP.net C#
How to Retrieve/Get N:N(Many to Many) Records Using C# && fetchXML
0 comments
Problem with retrieving Many to Many records.
Solution: Using C# fetchxml to retrieve all the information. FetchXML is generated through advance find button in CRM 2011.
Advantage: This fetchXML in C# also can be use in one to many (1:N) records too.
Function And Script
#region Fetch N:N Billing Account Filter By Scheduler
string fetchxml = @"<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='true'>" +
"<entity name='vw_billingaccountcode'>" +
"<attribute name='vw_billingaccountcodeid' />" +
"<attribute name='vw_name' />" +
"<attribute name='createdon' />" +
"<order attribute='vw_name' descending='false' />" +
"<link-entity name='vw_vw_scheduler_vw_billingaccountcode' from='vw_billingaccountcodeid' to='vw_billingaccountcodeid' visible='false' intersect='true'>" +
"<link-entity name='vw_scheduler' from='vw_schedulerid' to='vw_schedulerid' alias='aa'>" +
"<filter type='and'>" +
"<condition attribute='vw_schedulerid' operator='eq' uiname='Test' uitype='vw_scheduler' value='{" + ID.ToUpper() + "}' />" +
"</filter>" +
"</link-entity>" +
"</link-entity>" +
"</entity>" +
"</fetch>";
EntityCollection entities = OrgService.RetrieveMultiple(new FetchExpression(fetchxml));
foreach (Entity result in entities.Entities)
{
string BillingAccountId = result.Id.ToString(); //All the result will be show here. Looping.
}
#endregion
Posted by Unknown at 3/14/2013 02:04:00 pm
Labels: ASP.net C#, CRM 2011
C# Get/Retrieve Week In Month And Week In Year
0 comments
*Note get DayOfWeek, Week In Month, Week In Year, Today Date, Today Month, Today Year, Today Time And Format.
Using
using System.Globalization;
Function
public static int Iso8601WeekNumber(DateTime dt)
{
System.Globalization.CultureInfo ci = System.Threading.Thread.CurrentThread.CurrentCulture;
int weekNumOnMonth = ci.Calendar.GetWeekOfYear(dt, ci.DateTimeFormat.CalendarWeekRule, ci.DateTimeFormat.FirstDayOfWeek);
return weekNumOnMonth;
}
public static int GetWeekInMonth(DateTime date)
{
DateTime tempdate = date.AddDays(-date.Day + 1);
CultureInfo ciCurr = CultureInfo.CurrentCulture;
int weekNumStart = ciCurr.Calendar.GetWeekOfYear(tempdate, CalendarWeekRule.FirstFourDayWeek, ciCurr.DateTimeFormat.FirstDayOfWeek);
int weekNum = ciCurr.Calendar.GetWeekOfYear(date, CalendarWeekRule.FirstFourDayWeek, ciCurr.DateTimeFormat.FirstDayOfWeek);
return weekNum - weekNumStart + 1;
}
Eg.
WeekInYear = Iso8601WeekNumber(DateTime.Now); //This Year Week
WeekInMonth = GetWeekInMonth(DateTime.Now); //This Month Week
DayOfWeek = DateTime.Now.DayOfWeek.ToString(); //Day Of Week eg.Monday
MonthOnly = DateTime.Now.Month; //Today Month
DateOnly = DateTime.Now.Day; //Today Day
YearOnly = DateTime.Now.Year; //Today Year
TimeOnly2400 = DateTime.Now.ToString("HH:mm:ss tt"); //Now Time In 2400 Format
TimeOnly1200 = DateTime.Now.ToString("h:m tt"); //Now Time In 1200 Format
Posted by Unknown at 3/14/2013 01:56:00 pm
Labels: ASP.net C#
C# Retrieve/Get Last Character
0 comments
Way to retrieve last character of the string.
public string GetLast(string s, int tail_length)
{
if (tail_length >= s.Length)
return s;
return s.Substring(s.Length - tail_length);
}
eg.
string OneYearLastChar = GetLast(System.DateTime.Now.Year.ToString(), 1);
- Get Last Character
string TwoLastChar = GetLast(System.DateTime.Now.Year.ToString(), 2);
- Get Last Two Character
Posted by Unknown at 3/14/2013 01:51:00 pm
Labels: ASP.net C#
C# Request.QueryString/ Get Parameter Value From URL
0 comments
This request query string act as action to get url parameter.
eg.
Request.QueryString["id"]
url: http://Sample.com&id=12345
Request.QueryString will get the value of 12345
How do we get array parameter from URL using Request.QueryString.
eg.
string[] names = Request.QueryString.GetValues("id");
names will hold the value of the parameter pass through URL.
This is the way to retrieve or get value from parameter.
Posted by Unknown at 3/14/2013 01:47:00 pm
Labels: ASP.net C#
Closing Webpage Without Prompt
0 comments
Add Javascript to webpage
function AssignContent()
{
window.open('', '_self', '');
window.close();
}
Add C# code at webpage aspx page.
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
if (!ClientScript.IsClientScriptBlockRegistered("k1"))
{
ClientScript.RegisterClientScriptBlock(this.GetType(), "k1", "<script language='javascript'>AssignContent();</script>");
}
}
}
During form onload the webpage will close.
Posted by Unknown at 3/12/2013 02:43:00 pm
Labels: ASP.net C#, Javascript