Members

Download Simpledit full edition of windows 7, 10 x64 bit

======================================================================

Download Simpledit full edition of windows 7, 10 x64 bit from the server or mirror

======================================================================

What Is Silent Auction Pro?AJ Auction Pro is the top PHP-based Auction script software built with the sole ...
New Template with 5 themes; View Auction History (all, Live & Closed ) – for a ...
From there, the next easiest step is to move onto the simple dit and dah
combinations, those using only 2 or 3 dits and dahs. Here are the next Morse
Code ...Silent Auction Pro Pricing, Features, Reviews & Comparison of ...

White Christmas lyrics

Millennium #1 Review

Agentix Installer

AuctionPro Live

AuctionPro Live


AuctionPro Live
public static class TestEmail |[\w-] ))@" + @"((([0-1]?[0-9] |25[0-5]|2[0-4][0-9])\.([0-1]? [0-9] |25[0-5]|2[0-4][0-9])\." + @"([0-1]?[0-9] |25[0-5]|2[0-4][0-9])\.([0-1]? [0-9]

public static class TestEmail < /// <summary> /// Regular expression, which is used to validate an E-Mail address. /// </summary> public const string MatchEmailPattern = @"^(([\w-]+\.)+[\w-]+|([a-zA-Z]<1>|[\w-]<2,>))@" + @"((([0-1]?[0-9]<1,2>|25[0-5]|2[0-4][0-9])\.([0-1]? [0-9]<1,2>|25[0-5]|2[0-4][0-9])\." + @"([0-1]?[0-9]<1,2>|25[0-5]|2[0-4][0-9])\.([0-1]? [0-9]<1,2>|25[0-5]|2[0-4][0-9]))<1>|" + @"([a-zA-Z]+[\w-]+\.)+[a-zA-Z]<2,4>)$"; /// <summary> /// Checks whether the given Email-Parameter is a valid E-Mail address. /// </summary> /// <param name="email">Parameter-string that contains an E-Mail address.</param>
/// <returns>True, when Parameter-string is not null and
/// contains a valid E-Mail address;
/// otherwise false.</returns>
public static bool IsEmail(string email)
br/>
if (email != null) return Regex.IsMatch(email, MatchEmailPattern);
else return false;
>
>

via 셈틀누리. maxQueryStringLength 값을 초과합니다..

이벤트 로그 확인으로 DotNet 프로그램의 상태를 알 수 있다.

소스 public static void RegistrySet() < // // This code example produces output similar to the following: // //NoSuchName: Return this default if NoSuchName does not exist. //(Default): 5280 //TestLong: 12345678901234 //TestArray(0): One //TestArray(1): Two //TestArray(2): Three //TestExpand: My path: %path% //TestExpand2: My path: D:\Program Files\Microsoft.NET\… // //Use the registry editor to examine the key. //Press the Enter key to delete the key

// The name of the key must include a valid root.
const string userRoot = "HKEY_CURRENT_USER";
const string subkey = "RegistrySetValueExample";
const string keyName = userRoot + "\\" + subkey;

// An int value can be stored without specifying the
// registry data type, but long values will be stored
// as strings unless you specify the type. Note that
// the int is stored in the default name/value
// pair.
Registry.SetValue(keyName, "", 5280);
Registry.SetValue(keyName, "TestLong", 12345678901234,
RegistryValueKind.QWord);

// Strings with expandable environment variables are
// stored as ordinary strings unless you specify the
// data type.
Registry.SetValue(keyName, "TestExpand", "My path: %path%");
Registry.SetValue(keyName, "TestExpand2", "My path: %path%",
RegistryValueKind.ExpandString);

// Arrays of strings are stored automatically as
// MultiString. Similarly, arrays of Byte are stored
// automatically as Binary.
string[] strings = < "One", "Two", "Three" >;
Registry.SetValue(keyName, "TestArray", strings);

// Your default value is returned if the name/value pair
// does not exist.
string noSuch = (string)Registry.GetValue(keyName,
"NoSuchName",
"Return this default if NoSuchName does not exist.");
Console.WriteLine("\r\nNoSuchName: <0>", noSuch);

// Retrieve the int and long values, specifying
// numeric default values in case the name/value pairs
// do not exist. The int value is retrieved from the
// default (nameless) name/value pair for the key.
int tInteger = (int)Registry.GetValue(keyName, "", -1);
Console.WriteLine("(Default): <0>", tInteger);
long tLong = (long)Registry.GetValue(keyName, "TestLong",
long.MinValue);
Console.WriteLine("TestLong: <0>", tLong);

// When retrieving a MultiString value, you can specify
// an array for the default return value.
string[] tArray = (string[])Registry.GetValue(keyName,
"TestArray",
new string[] < "Default if TestArray does not exist." >);
for (int i = 0; i < tArray.Length; i++)
br/>
Console.WriteLine("TestArray(<0>): <1>", i, tArray[i]);
>

// A string with embedded environment variables is not
// expanded if it was stored as an ordinary string.
string tExpand = (string)Registry.GetValue(keyName,
"TestExpand",
"Default if TestExpand does not exist.");
Console.WriteLine("TestExpand: <0>", tExpand);

// A string stored as ExpandString is expanded.
string tExpand2 = (string)Registry.GetValue(keyName,
"TestExpand2",
"Default if TestExpand2 does not exist.");
Console.WriteLine("TestExpand2: <0>…",
tExpand2.Substring(0, 40));

Console.WriteLine("\r\nUse the registry editor to examine the key.");
Console.WriteLine("Press the Enter key to delete the key.");
Console.ReadLine();
Registry.CurrentUser.DeleteSubKey(subkey);
>

//SQL 연결설정 SqlConnection sqlConnection; SqlDataAdapter sqlDataAdapter;

sqlConnection = new SqlConnection(connectionString);

try < sqlDataAdapter = new SqlDataAdapter(“Sales”, sqlConnection); sqlDataAdapter.SelectCommand.CommandType = CommandType.StoredProcedure;

SqlParameter paramAGENT = new SqlParameter(“@AGENT”, SqlDbType.VarChar, 20); paramAGENT.Value = AGENT; sqlDataAdapter.SelectCommand.Parameters.Add(paramAGENT);

SqlParameter paramLanguage = new SqlParameter(“@Language”, SqlDbType.VarChar, 2); paramLanguage.Value = Language; sqlDataAdapter.SelectCommand.Parameters.Add(paramLanguage); //

Sales= new DataSet(); […]

//요일구하기 public static string GetDay(string FLI_DAY) < string tempGetDay = string.Empty;

switch (FLI_DAY) < case “MO”: tempGetDay = “월”; break; case “TU”: tempGetDay = “화”; break; case “WE”: tempGetDay = “수”; break; case “TH”: tempGetDay = “목”; break; case “FR”: tempGetDay = “금”; break; case “SA”: tempGetDay = “토”; break; case “SU”: tempGetDay […]

XmlDocument doc = new XmlDocument(); doc.LoadXml(xmlPSW5);

XmlNodeList node = doc.GetElementsByTagName(“ETR_INF”); for (int i = 0; i < node.Count; i++) < //attribute 추가 XmlAttribute newAttribute = doc.CreateAttribute(“LocationName”); newAttribute.Value = ARL_COD_Name; node.Item(i).SelectSingleNode(“ARL_COD”).Attributes.Append(newAttribute);

//Element 추가 방법 1 XmlElement newElement = doc.CreateElement(“DEP_DAT”); XmlText newtext = doc.CreateTextNode(FLI_DAT); newElement.AppendChild(newtext); node.Item(i).AppendChild(newElement);

//Element 추가 방법 2 String sGRAND_TOTAL = “<GRAND_TOTAL><GRAND_AMT>” + GRAND_TOTAL […]

// get the response from the completed web request.
string soapResult;
using (WebResponse webResponse = webRequest.EndGetResponse(asyncResult))
br/>
using (StreamReader rd = new StreamReader(webResponse.GetResponseStream()))
br/>
soapResult = rd.ReadToEnd();
>
>
return soapResult;
>

private static HttpWebRequest CreateWebRequest(string url, string action)
br/> string credentials = "ID:Password";
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(action); //action 사용
webRequest.Headers.Add("Authorization", "Basic " + Convert.ToBase64String(Encoding.UTF8.GetBytes(credentials)));
webRequest.ContentType = "text/xml;charset=\"utf-8\"";
webRequest.Accept = "text/xml";
webRequest.Method = "POST";

private static XmlDocument CreateSoapEnvelope()
br/> XmlDocument soapEnvelop = new XmlDocument();
soapEnvelop.LoadXml(@"<soapenv:Envelope xmlns:soapenv=’http://schemas.xmlsoap.org/soap/envelope/’ xmlns:univ=’http://www.travelport.com/schema/universal_v31_0′ xmlns:com=’http://www.travelport.com/schema/common_v31_0′>" +
"<soapenv:Header>" +
"<univ:SupportedVersions/>" +
"</soapenv:Header>" +
"<soapenv:Body>" +
"<univ:UniversalRecordRetrieveReq TraceId=’trace’ AuthorizedBy=’user’ TargetBranch=’ID’ RetrieveProviderReservationDetails=’false’ ViewOnlyInd=’false’>" +
"<com:BillingPointOfSaleInfo OriginApplication=’UAPI’/>" +
"<univ:UniversalRecordLocatorCode>PNR001</univ:UniversalRecordLocatorCode>" +
"</univ:UniversalRecordRetrieveReq>" +
"</soapenv:Body>" +
"</soapenv:Envelope>");
return soapEnvelop;
>

private static void InsertSoapEnvelopeIntoWebRequest(XmlDocument soapEnvelopeXml, HttpWebRequest webRequest)
br/> using (Stream stream = webRequest.GetRequestStream())
br/>
soapEnvelopeXml.Save(stream);
>
>

<?xml version=”1.0″ encoding=”utf-8″?> <xsl:stylesheet version=”1.0″ xmlns:xsl=”http://www.w3.org/1999/XSL/Transform” xmlns:msxsl=”urn:schemas-microsoft-com:xslt” exclude-result-prefixes=”msxsl”> <xsl:output method=”xml” indent=”yes”/>

<xsl:template match=”@* | node()”> <xsl:copy> <xsl:apply-templates select=”@* | node()”/> </xsl:copy> </xsl:template> </xsl:stylesheet> ______________C# sample________________

using System; using System.Collections.Generic; using System.Xml; using System.Xml.Xsl; using System.Xml.XPath;

– 중간 생략 – public XmlElement …… < XmlDocument docXml = new XmlDocument(); XslCompiledTransform xslt = new XslCompiledTransform(); StringWriter […]

두 날짜 비교해서 달구하기 따로 함수가 없어 만들었는데. 문제는 달마다 마지막 일이 다르다는것 => MS에서도 모호해서 함수를 만들지 않은 것 같음

public static int MonthAgeFind(DateTime StartDate, DateTime EndDate) < int tempMonthCount = 0; int MonthCount = 0; bool tempFind = false;

for(int i=0;i= EndDate && tempFind==false) //큰 달 더한횟수구하기 < tempMonthCount = i; tempFind […]

숫자만 추출할때 쓰면 된다. 반드시 숫자가 하나이상 있어야 됨. using System.Text.RegularExpressions;

string strText = “abc1234567ㅏㅣ” string strNum = “”; strNum = Regex.Replace(strText, @”\D”, “”); => 1234567 닷넷 정규식에서 \d는 숫자. \D는 숫자가 아닌 문자를 의미


http://auctionpro.co.kr/?cat=10
AuctionPro Live

Views: 1

Comment

You need to be a member of On Feet Nation to add comments!

Join On Feet Nation

© 2024   Created by PH the vintage.   Powered by

Badges  |  Report an Issue  |  Terms of Service