This is the code to trigger dialog box before you exit the application in android.
private void ShowMessageExit(String Message){
new AlertDialog.Builder(this)
.setMessage(Message)
.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
android.os.Process.killProcess(android.os.Process.myPid());
System.exit(0);
}
})
.setNegativeButton(android.R.string.no,...
Wednesday, 4 November 2015
Saturday, 3 October 2015
How to make request to webservice with soap message - asp.net /C#
If you have webservice and want to call the web service from your c# code, you can try to use this method example.
Code Behind
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(<web service address>);
request.Headers.Add("SOAPAction", "http://tempuri.org/" + <web service method>);
request.ContentType = "text/xml;charset=\"utf-8\"";
request.KeepAlive = false;
request.Timeout = 300000; // - in millisecond. (5 minit)
request.Method = "POST";...
Method snippet to remove space between words - asp.net
This is the method that can use in c# application or asp.net to remove space between words.
Example :
Hello World --> HelloWorld
Method
/// <summary>
/// Method to remove space in a string example : Hello world --> HelloWorld
/// </summary>
/// <param name="data"></param>
/// <returns></returns>
public static string removeSpace(string data)
{
Regex r = new Regex(@"\s+");
string _temp = "";
_temp...
Check web config file either encrypt or not.
This is example how to check if web.config file is encrypt or not. refer this article to encrypt and decrypt web config file.
The example will check web config file for 3 section which is ConnectionString, AppSetting, and system.web/authentication .
Code Behind
private static string[] sectionName = { "connectionStrings", "appSettings", "system.web/authentication" };
public static string[] SectionName
{
get
{
return sectionName;
}
set
{
sectionName...
Kentico 8.xx - Snippet to check if page type have alternative form name
This is the snippet for Kentico version 8.xx to check if page type have alternative form.
Code Behind
public bool CheckIfPageTypeHaveAlternativeForm(string EditFormName,string classID)
{
bool haveForm = false;
string strEditFormName = ValidationHelper.GetString(EditFormName, "");
if (classID != "")
{
if (CMS.DocumentEngine.CMSDataContext.Current.AlternativeForms.GetSubsetWhere("FormClassID = " + classID).Count > 0)
{
...
delete top N rows mssql
This example show how to delete top N rows in mssql, where N is dynamic number. It could be 1000, 100, or 10 .
;WITH CTE AS
(
SELECT TOP 1000 *
FROM [table_name]
ORDER BY a1
)
DELETE FROM CTE
1000 is the example number.
[table_name] is the table you want to delete
a1 is just a example of sort by column a1
Tanks to stack overflow for this help :
http://stackoverflow.com/questions/8955897/how-to-delete-the-top-1000-rows-from-a-table-using-sql-server-2008
By Mohd Zulkamal
NOTE : – If You have...
How to read JSON Data and convert to DataTable - asp.net / c#
This is example how to read JSON Data using c# code.
First before you start coding, please read this post on how to convert json data to c# class.
How to convert JSON data to Class - C#
After finish convert json data to c# class, write this code to read your json data.
Example JSON Data
{
"name":"swengineercode",
"email":
[
"swengineercode@gmail.com","swengineercode@gmail.com"
],
"websites":
{
"home_page":"http:\/\/swengineercode.blogspot.com",...
How to convert JSON data to Class - C#
Today i found one very good tools to convert JSON data to c# class.
Please go to this link : http://json2csharp.com/
You just paste the json data, and it will give you the class for each element in the json data.
Example JSON Data :
Note : This example JSON data from TripAdvisor API.
{
"address_obj": {
"street1": "Lot PTB22819 ",
"street2": "Jalan Skudai",
"city": "Johor Bahru",
"state": "Johor",
"country": "Malaysia",
"postalcode": "80200",
"address_string": "Lot PTB22819...
|
Mohd Zulkamal Founder of developersnote.com, love programming and help others people. Work as Software Developer. Graduated from UiTM and continue study in Software Engineering at UTMSpace. Follow him on Twitter , or Facebook or Google+ . |
Powered by Blogger.