Reference:
http://stackoverflow.com/questions/3142495/deserialize-json-into-c-sharp-dynamic-object
var json = new WebClient().DownloadString(
string.Format("http://maps.googleapis.com/maps/api/geocode/json?address={0}&sensor=false"
, "1600+Amphitheatre+Parkway,+Mountain+View,+CA"));
var serializer = new JavaScriptSerializer();
serializer.RegisterConverters(new[] { new DynamicJsonConverter() });
dynamic obj = serializer.Deserialize(json, typeof(object));
if (obj.status == "OK")
{
var lat = obj.results[0].geometry.location.lat;
var lng = obj.results[0].geometry.location.lng;
}
public sealed class DynamicJsonConverter : JavaScriptConverter
{
public override object Deserialize(IDictionary dictionary, Type type, JavaScriptSerializer serializer)
{
if (dictionary == null)
throw new ArgumentNullException("dictionary");
return type == typeof(object) ? new DynamicJsonObject(dictionary) : null;
}
public override IDictionary Serialize(object obj, JavaScriptSerializer serializer)
{
throw new NotImplementedException();
}
public override IEnumerable SupportedTypes
{
get { return new ReadOnlyCollection(new List(new[] { typeof(object) })); }
}
#region Nested type: DynamicJsonObject
private sealed class DynamicJsonObject : DynamicObject
{
private readonly IDictionary _dictionary;
public DynamicJsonObject(IDictionary dictionary)
{
if (dictionary == null)
throw new ArgumentNullException("dictionary");
_dictionary = dictionary;
}
public override string ToString()
{
var sb = new StringBuilder("{");
ToString(sb);
return sb.ToString();
}
private void ToString(StringBuilder sb)
{
var firstInDictionary = true;
foreach (var pair in _dictionary)
{
if (!firstInDictionary)
sb.Append(",");
firstInDictionary = false;
var value = pair.Value;
var name = pair.Key;
if (value is string)
{
sb.AppendFormat("{0}:\"{1}\"", name, value);
}
else if (value is IDictionary)
{
new DynamicJsonObject((IDictionary)value).ToString(sb);
}
else if (value is ArrayList)
{
sb.Append(name + ":[");
var firstInArray = true;
foreach (var arrayValue in (ArrayList)value)
{
if (!firstInArray)
sb.Append(",");
firstInArray = false;
if (arrayValue is IDictionary)
new DynamicJsonObject((IDictionary)arrayValue).ToString(sb);
else if (arrayValue is string)
sb.AppendFormat("\"{0}\"", arrayValue);
else
sb.AppendFormat("{0}", arrayValue);
}
sb.Append("]");
}
else
{
sb.AppendFormat("{0}:{1}", name, value);
}
}
sb.Append("}");
}
public override bool TryGetMember(GetMemberBinder binder, out object result)
{
if (!_dictionary.TryGetValue(binder.Name, out result))
{
// return null to avoid exception. caller can check for null this way...
result = null;
return true;
}
result = WrapResultObject(result);
return true;
}
public override bool TryGetIndex(GetIndexBinder binder, object[] indexes, out object result)
{
if (indexes.Length == 1 && indexes[0] != null)
{
if (!_dictionary.TryGetValue(indexes[0].ToString(), out result))
{
// return null to avoid exception. caller can check for null this way...
result = null;
return true;
}
result = WrapResultObject(result);
return true;
}
return base.TryGetIndex(binder, indexes, out result);
}
private static object WrapResultObject(object result)
{
var dictionary = result as IDictionary;
if (dictionary != null)
return new DynamicJsonObject(dictionary);
var arrayList = result as ArrayList;
if (arrayList != null && arrayList.Count > 0)
{
return arrayList[0] is System.Collections.Generic.IDictionary? new List(arrayList.Cast>().Select(x => new DynamicJsonObject(x))):new List(arrayList.Cast()); } return result; } } #endregion }
Add a reference to System.Web.Extensions
Although JavaScriptSerializer namespace is: System.Web.Script.Serialization
There are reasons to cause this problem. For my case is I make a new class inherit from RequriedAtribute, but not resister in the Application_Start event.
protected void Application_Start()
{
DataAnnotationsModelValidatorProvider.RegisterAdapter(
typeof(i18n.DataAnnotations.RequiredAttribute), typeof(RequiredAttributeAdapter));
}
namespace i18n.DataAnnotations
{
public class RequiredAttribute : System.ComponentModel.DataAnnotations.RequiredAttribute, ILocalizing
{
private readonly I18NSession _session;
public RequiredAttribute()
{
_session = new I18NSession();
}
public virtual IHtmlString _(string text)
{
return new HtmlString(_session.GetText(HttpContext.Current, text));
}
public virtual string TT(string text)
{
return _session.GetText(HttpContext.Current, text);
}
public override string FormatErrorMessage(string name)
{
var formatted = base.FormatErrorMessage(name);
return _(formatted).ToHtmlString();
}
}
}
CDATA stands for (Unparsed) Character Data, and tell XML parser NOT to parse enclosed data (Javascript).
Reference:
Definition from W3C
http://www.w3.org/TR/REC-xml/#dt-cdsection
return System.Text.RegularExpressions.Regex.IsMatch(email, @"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$");
1. Download to local
2. Upload to another folder
Detail error message:
Could not load file or assembly 'MySql.Web, Version=6.7.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config line 258)
Solution:
Modify Machine.config in
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config
Comment all of lines related MySql
Like following:
How to solve problem "Cannot start Microsoft Outlook. Cannot open the Outlook window. The set of folders cannot be opened. You must connect to Microsoft Exchange with the current profile before you can synchronize your folders with your Outlook data file (.ost)."
Start Microsoft Exchange RPC Client Access service on Exchange Server box
Exchange Web Services URL is wrong.
How to solve problem "Incoming Status: Failure - The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. The remote certificate is invalid according to the validation procedure."?
Install valid certificate on CRM box
Goto
Setting -> Administration -> Users -> Client Access License (CAL) Information
Change:
Access Mode: Read-Write
License Type: Full
1. How to create a queue
Settings -> Business Management -> Queues
2. How to assign a queue to team or user
Settings -> Business Management -> Queues
3. How to assign items to a queue
Workplace -> Activities-> Tasks -> Save -> Add to Queue
4. How to assign queue item to an user
Who is working on: Workplace -> Queues -> Item -> Queue Item Detail
5. How to enable an entity to a queue
Settings -> Customizations -> Customize the System -> Entities -> Queues checkbox
Queues are places in organizing, prioritizing, and monitoring the progress of your working items in CRM.
In CRM following entities are enabled for Queues by default:
Appointment
Campaignactivity
CampaignResponse
Email
Fax
Incident
Letter
PhoneCall
RecurringAppointmentMaster
ServiceAppointment
Task
Reference:
http://msdn.microsoft.com/en-us/library/gg328459.aspx
First of all, check the url if correct. If wrong url, will get this error.(http://{}/{orgName}/XRMServices/2011/Organization.svc)
If cannot find the problem, run CrmSvcUtil with enabled tracing information by
CrmSvcUtil.exe.config
Will get detailed error information
int numberOfObjectsPerPage = 5001;
int pageNumber = 1;
var queryResultPage = acountlist
.Skip(numberOfObjectsPerPage * pageNumber)
.Take(numberOfObjectsPerPage).ToList();
How to solve problem "EntityState must be set to null, Created (for Create message) or Changed (for Update message)" while to try to update earlying binding entity?
There is one method in OrganizationServiceContext object calls: UpdateObject
Do not use the one in OrganizationServiceProxy. If use, the get the error message
context.UpdateObject(en);
//serviceProxy.Update(en);
You: What is name?
JavaScript: name? What's a name? I don't know what you're talking about. You haven't ever mentioned any name before. Are you seeing some other scripting language on the (client-)side?
name = null;
You: What is name?
JavaScript: I don't know.
In short; undefined is where no notion of the thing exists; it has no type, and it's never been referenced before in that scope; null is where the thing is known to exist, but it's not known what the value is.
One thing to remember is that null is not, conceptually, the same as false or "" or such, even if they equate after type casting, i.e.
name = false;
You: What is name?
JavaScript: Boolean false.
name = '';
You: What is name?
JavaScript: Empty string
http://stackoverflow.com/questions/801032/why-is-null-an-object-and-whats-the-difference-compared-to-undefined
1. Generate CRM entity by CrmSDvcUtil.exe tool in folder of crm\sdk\bin
Reference:
http://msdn.microsoft.com/en-us/library/gg327844.aspx
CrmSvcUtil.exe /url:http://ServerName/OrganizationName/XRMServices/2011/Organization.svc /out:CSFileName.cs /username:usernamewithDomain /password:password /namespace:namespace /serviceContextName:contexName
2. Add following code in console app (Copy generate cs file into project and add it into)
var _credentials = new ClientCredentials();
_credentials.Windows.ClientCredential = (NetworkCredential)CredentialCache.DefaultCredentials;
string CRM_SDK_URL = "http://ServerName/OrganizationName/XRMServices/2011/Organization.svc";
OrganizationServiceProxy proxy = new OrganizationServiceProxy(new Uri(CRM_SDK_URL), null, _credentials, null);
proxy.EnableProxyTypes();
Account account = new Account { Name = "Sample Parent Account" };
var _parentAccountId = proxy.Create(account);
public void Execute(IServiceProvider serviceProvider)
{
Microsoft.Xrm.Sdk.IPluginExecutionContext context = (Microsoft.Xrm.Sdk.IPluginExecutionContext) serviceProvider.GetService(typeof(Microsoft.Xrm.Sdk.IPluginExecutionContext));
if (context.InputParameters.Contains("Target") && context.InputParameters["Target"] is Entity)
{
Entity entity = (Entity)context.InputParameters["Target"];
if (entity.LogicalName == "account")
{
// Obtain the organization service reference.
IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);
//Get current account id (accountid)
var currentAccountid = entity["accountid"];
Microsoft.Xrm.Sdk.Query.QueryByAttribute querybyattribute = new Microsoft.Xrm.Sdk.Query.QueryByAttribute("account");
querybyattribute.ColumnSet = new Microsoft.Xrm.Sdk.Query.ColumnSet("accountnumber", "accountid", "emailaddress1");
querybyattribute.Attributes.AddRange("parentaccountid");
querybyattribute.Values.AddRange(currentAccountid);
EntityCollection retrieved = service.RetrieveMultiple(querybyattribute);
int count = 0;
foreach (var en in retrieved.Entities)
{
count += 1;
en.Attributes["accountnumber"] = count.ToString();
service.Update(en);
}
}
}
0. Tried Visual Studio 2010, failed. 32 bit VS not working with 64 bit remote debugger.
Error message:
Unable to attach to the process. The 32-bit version of the Visual Studio Remote Debugging Monitor (MSVSMON.EXE) cannot be used to debug 64-bit processes or 64-bit dumps. Please use the 64-bit version instead.
Certainly, you can not connect 2010 remote debugger with 2012
Unable to connect to the Microsoft Visual Studio Remote Debugging Monitor named 'CHATHAM\rwang@CRM'. The Microsoft Visual Studio Remote Debugging Monitor (MSVSMON.EXE) does not appear to be running on the remote computer. This may be because a firewall is preventing communication to the remote computer. Please see Help for assistance on configuring remote debugging.
1. Remote tools for Remote Tools for Visual Studio 2012 Update 2
http://www.microsoft.com/en-my/download/details.aspx?id=38184
2. Run and Get Tcp/ip port number
3. Copy plugin pdb file into CRM box folder:
C:\Program Files\Microsoft Dynamics CRM\Server\bin\assembly
4. In VS2012, Debug -> attach, put
mahine_name@port_number in the qualifier box
5. Then attach to w3p process.
The user account must exist in the Deployment Administrators group of Deployment Manager.
The Whole error message:
Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: Action failed for assembly 'SamplePlugins, Version=0.0.0.0, Culture=neutral, PublicKeyToken=829f574d80e89132': Assembly must be registered in isolation.
Refenrence:
http://blogs.msdn.com/b/crminthefield/archive/2011/08/17/error-message-assembly-must-be-registered-in-isolation-when-registering-plugins-in-microsoft-dynamics-crm-2011.aspx
Once you use self-tracking entities, if want to add new one.
Please keep using same type.
In one assembly, entity framework only allow one kind
mapping. If more than one mapping type, will get above weird error message.
In command line, go to .Net Framework folder:
C:\Windows\Microsoft.NET\Framework\v4.0.30319
Run following line:
installutil C:\folder name\ServiceHost.exe
Uninstall:
installutil /u C:\folder name\ServiceHost.exe
If want to install service with different display name:
sc create "Your Service Name" binpath= "fullpath of your exe file"
using MySql.Data.MySqlClient;
public class MySQLDBConnector
{
private MySqlConnection connection;
private string server;
private string database;
private string uid;
private string password;
//Constructor
public MySQLDBConnector()
{
Initialize();
}
//Initialize values
private void Initialize()
{
server = "10.0.x.x"; // "otrs.chatham.teksavvy.ca";
database = "otrs";
uid = "xxxx";
password = "xxxx";
string connectionString = "SERVER=" + server + ";Port=3306;" + "DATABASE=" +
database + ";" + "UID=" + uid + ";" + "PASSWORD=" + password + ";";
connection = new MySqlConnection(connectionString);
}
//open connection to database
public bool OpenConnection()
{
try
{
connection.Open();
return true;
}
catch (MySqlException ex)
{
switch (ex.Number)
{
}
return false;
}
}
public int Count()
{
string query = @"select count(*) from ticket inner join queue on ticket.queue_id= queue.id inner join ticket_state on ticket_state.id = ticket.ticket_state_id
where queue.name ='Junk' and ticket.ticket_state_id = 4";
;
int Count = -1;
//Open Connection
if (this.OpenConnection() == true)
{
//Create Mysql Command
MySqlCommand cmd = new MySqlCommand(query, connection);
//ExecuteScalar will return one value
Count = int.Parse(cmd.ExecuteScalar() + "");
//close Connection
connection.Close();
return Count;
}
else
{
return Count;
}
}
}
select count(*) from ticket
inner join queue on ticket.queue_id= queue.id
inner join ticket_state on ticket_state.id = ticket.ticket_state_id
where queue.name ='Postmaster' and ticket.ticket_state_id = 4
SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'tableName'
In command line as administrator, run following command:
netsh advfirewall firewall add rule name="MySQL Server" action=allow protocol=TCP dir=in localport=3306
Reference:
http://www.activeservers.com/page3610203.aspx
public ActionResult Process(id)
{
if (Condition)
{
return View ('SpecialView')
}
else
{
return View (); //Default view
}
}
In property window for that culumn:
set the "Default value or binding" getdate()
In Visual Studio, project property page
Change Target Framework from Client profile to the full framework
[OutputCache(Duration = 0, VaryByParam = "None")]
public ActionResult ActionName()
{
}
Onbeforeunload
Reference: https://developer.mozilla.org/en-US/docs/Web/API/window.onbeforeunload
window.onbeforeunload = function(e) {
return 'Dialog text here.';
};
Add a condition like:
if $(ConfigurationName) == Debug "$(TargetDir)i18n.PostBuild.exe" "$(ProjectDir)"
Implement IValidatableObject interface inside model :
public System.Collections.Generic.IEnumerable Validate(ValidationContext validationContext)
{
if(true)
{
yield return new ValidationResult("error message", new string[] { "Validated Object Name" });
}
}
http://msdn.microsoft.com/en-us/library/system.componentmodel.dataannotations.ivalidatableobject.validate.aspx
RouteData routeData = RouteTable.Routes.GetRouteData(new HttpContextWrapper(HttpContext.Current));
if (routeData == null) return;
string action= routeData.GetRequiredString("action");
If use i18n for ASP.NET MVC, need to add a lot of surroundings for strings.
A CodeSnippet could help a little bit:
In VS, Tools menu, click Code Snippets Manager. then import following xml file:
i18n
i18n
Code snippet for @_
Microsoft Corporation
Expansion
SurroundsWith
expression
Exception type
SimpleTypeName(global::System.Exception)
There are normally two reasons to cause this problem:
1. Lost reference of needed JavaScript library.
2. The reference JavaScript library is not loaded when your script run.
Set selected value:
var selectstring = 'select option[value="' + selectedValue + '"]';
$(selectstring).attr('selected', true);
Get selected value:
$("#dropdownlistId").change(function () {
alert($("#dropdownlistId").val());
});
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
Reference:
http://www.quirksmode.org/js/cookies.html
PO file is the file format to save message for internationalization and localization (I18n, L10n)
It is from a open source project: gettext
http://www.gnu.org/software/gettext/
The format like:
# translator-comments
#. extracted-comments
#: reference...
#, flag...
#| msgid previous-untranslated-string
msgid untranslated-string
msgstr translated-string
Example:
#: lib/error.c:116
msgid "Unknown system error"
msgstr "Error desconegut del sistema"
It is very friendly for developer and translator working together, and also make code more readable. To ASP.NET developer is another choice than resource file.
System.Web.Mvc.WebViewPage
http://msdn.microsoft.com/en-us/library/gg402107(v=vs.98).aspx
Could change this setting from
to customized one
in
~\Views\Web.config
var variable = "top-level";
function parentFunction() {
var variable = "local";
function childFunction() {
print(variable);
}
childFunction();
}
parentFunction();
Closure:
A Javascript function is defined inside another function, its local environment will be based on the local environment that surrounds it instead of the top-level environment.
Reference:
http://eloquentjavascript.net/chapter3.html
public ActionResult ExportToExcel(int id)
{
string sb = "html table tag in here";
byte[] buffer = System.Text.Encoding.UTF8.GetBytes(sb.ToString());
return File(buffer, "application/vnd.ms-excel");
}
protected string RenderPartialViewToString(string viewName, object model)
{
if (string.IsNullOrEmpty(viewName))
viewName = ControllerContext.RouteData.GetRequiredString("action");
ViewData.Model = model;
using (StringWriter sw = new StringWriter())
{
ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(ControllerContext, viewName);
ViewContext viewContext = new ViewContext(ControllerContext, viewResult.View, ViewData, TempData, sw);
viewResult.View.Render(viewContext, sw);
return sw.GetStringBuilder().ToString();
}
}
Yes
@Html.RadioButtonFor(model => model.TermsAndConditions, "True")
No
@Html.RadioButtonFor(model => model.TermsAndConditions, "False", new { Checked = "checked" })
Only one. All numbers in Javascript are 64bit (8 bytes) floating point numbers
<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
<iframe src="
http://google.com/ " frameborder="0" scrolling="no" id="iframe" onload='javascript:resizeIframe
(this);' />
Need to make sure the references for javascript and css in following order:
From ViewContext
string action = ViewContext.RouteData.Values["action"].ToString();
string controller = ViewContext.RouteData.Values["controller"].ToString();
http://jsbooks.revolunet.com/
By new class in Bootstrap 2.2.1: navbar-fixed-bottom
http://www.codeproject.com/Articles/404633/Transform-ASP-NET-MVC3-Default-Template-with-Twitt
Download different themes from
http://bootswatch.com/
By nuget package:
PM> Install-Package UpgradeMvc3ToMvc4
https://nuget.org/packages/UpgradeMvc3ToMvc4
UPDATE myTable
SET theBlobField =
(SELECT BulkColumn FROM OPENROWSET (BULK 'C:\logo.png, SINGLE_BLOB) a)
WHERE [ID] = 1
DECLARE @SQLIMG VARCHAR(MAX),
@IMG_PATH VARBINARY(MAX),
@TIMESTAMP VARCHAR(MAX),
@ObjectToken INT
DECLARE IMGPATH CURSOR FAST_FORWARD FOR
SELECT csl_CompanyLogo from mlm_CSCompanySettingsLocalizations
OPEN IMGPATH
FETCH NEXT FROM IMGPATH INTO @IMG_PATH
WHILE @@FETCH_STATUS = 0
BEGIN
SET @TIMESTAMP = 'd:\' + replace(replace(replace(replace(convert(varchar,getdate(),121),'-',''),':',''),'.',''),' ','') + '.bmp'
PRINT @TIMESTAMP
PRINT @SQLIMG
EXEC sp_OACreate 'ADODB.Stream', @ObjectToken OUTPUT
EXEC sp_OASetProperty @ObjectToken, 'Type', 1
EXEC sp_OAMethod @ObjectToken, 'Open'
EXEC sp_OAMethod @ObjectToken, 'Write', NULL, @IMG_PATH
EXEC sp_OAMethod @ObjectToken, 'SaveToFile', NULL, @TIMESTAMP, 2
EXEC sp_OAMethod @ObjectToken, 'Close'
EXEC sp_OADestroy @ObjectToken
FETCH NEXT FROM IMGPATH INTO @IMG_PATH
END
CLOSE IMGPATH
DEALLOCATE IMGPATH
Reference:
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=101754
If turn on lazy loading in entity framework by:
Configuration.ProxyCreationEnabled = false;
Will get null reference exception problem when try to get navigation properties.
Need to do eagerly loading for navigation property by include clause
using (var context = new BloggingContext())
{
// Load all blogs and related posts
var blogs1 = context.Blogs
.Include(b => b.Posts)
.ToList();
}
public abstract class Person
{
public int PersonID { get; set; }
public string Name { get; set; }
}
public class StaffMember : Person
{
public string BadgeNumber { get; set; }
[ForeignKey("StaffMemberID")]
public virtual ICollection Appointments { get; set; }
}
public class Client : Person
{
[ForeignKey("ClientID")]
public virtual ICollection Appointments { get; set; }
}
public class MyContext : DbContext
{
public DbSet People { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
}
public void Seed(MyContext context)
{
Client c1 = new Client { Name = "Steve Client" };
StaffMember sm1 = new StaffMember { Name = "Staff 1", BadgeNumber = "1234" };
StaffMember sm2 = new StaffMember { Name = "Staff 2", BadgeNumber = "5678" };
context.People.Add(c1);
context.People.Add(sm1);
context.SaveChanges();
}
public MyContext()
{
Database.SetInitializer(new DropCreateDatabaseAlways());
this.Seed(this);
}
}
http://sgordondeveloper.blogspot.ca/2013/02/model-inheritance-with-relationship-in.html
Frameset is dead and long live iframe :)
Frameset replace body elment. And ifeame can be anywhere in the body. Also frameset is NOT supported in HTML 5
http://www.w3.org/TR/html401/frameset.dtd
SELECT ThumbnailPhoto.*, null, null, N'tricycle_pink.gif'
FROM OPENROWSET
(BULK 'c:\images\tricycle.jpg', SINGLE_BLOB) ThumbnailPhoto
@Scripts.Render("~/bundles/jquery")
- Press F4 on the MVC project to open project property window
- Change "Windows Authentication" from "Disabled" to "Enabled"
Error message
Server Error in '/' Application.
Access is denied.
Description: An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL.
Error message 401.2.: Unauthorized: Logon failed due to server configuration. Verify that you have permission to view this directory or page based on the credentials you supplied and the authentication methods enabled on the Web server. Contact the Web server's administrator for additional assistance.
No, you can't. MAC address is not included in request IP header.
http://odetocode.com/articles/162.aspx
private void Button5_Click(object sender, System.EventArgs e)
{
// first, request the login form to get the viewstate value
HttpWebRequest webRequest = WebRequest.Create(LOGIN_URL) as HttpWebRequest;
StreamReader responseReader = new StreamReader(
webRequest.GetResponse().GetResponseStream()
);
string responseData = responseReader.ReadToEnd();
responseReader.Close();
// extract the viewstate value and build out POST data
string viewState = ExtractViewState(responseData);
string postData =
String.Format(
"__VIEWSTATE={0}&UsernameTextBox={1}&PasswordTextBox={2}&LoginButton=Login",
viewState, USERNAME, PASSWORD
);
// have a cookie container ready to receive the forms auth cookie
CookieContainer cookies = new CookieContainer();
// now post to the login form
webRequest = WebRequest.Create(LOGIN_URL) as HttpWebRequest;
webRequest.Method = "POST";
webRequest.ContentType = "application/x-www-form-urlencoded";
webRequest.CookieContainer = cookies;
// write the form values into the request message
StreamWriter requestWriter = new StreamWriter(webRequest.GetRequestStream());
requestWriter.Write(postData);
requestWriter.Close();
// we don't need the contents of the response, just the cookie it issues
webRequest.GetResponse().Close();
// now we can send out cookie along with a request for the protected page
webRequest = WebRequest.Create(SECRET_PAGE_URL) as HttpWebRequest;
webRequest.CookieContainer = cookies;
responseReader = new StreamReader(webRequest.GetResponse().GetResponseStream());
// and read the response
responseData = responseReader.ReadToEnd();
responseReader.Close();
Response.Write(responseData);
}
Need to change routing setting in Global.asax.cs file like following:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.html/{*pathInfo}");
}
window.history.pushState('page2', 'Title', '/page2');
string htmlstring ="adsasd
";
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(htmlstring);
foreach (var script in doc.DocumentNode.Descendants("script").ToArray())
script.Remove();
foreach (var style in doc.DocumentNode.Descendants("style").ToArray())
style.Remove();
string ExtractedText = doc.DocumentNode.InnerText;
Call constructor with connection string parameter like:
var db = new dbContext(connectionstring);
http://blogs.msdn.com/b/varunm/archive/2013/04/23/remove-unwanted-http-response-headers.aspx
Server - Specifies web server version.
X-Powered-By - Indicates that the website is "powered by ASP.NET."
X-AspNet-Version - Specifies the version of ASP.NET used.
Goto master page
Add two events in body tag like following
<body onbeforeunload="document.body.style.cursor = 'wait';" onunload="document.body.style.cursor = 'default';">
@Html.ActionLink("buttontext", "actionName", "controllerName", null, new { @class="alinkimage" })
CSS definition:
a.classname
{
background: url(../Images/image.gif) no-repeat top left;
display: block;
width: 150px;
height: 150px;
}
HttpContext.Current.Server.UrlEncode(text)
textarea.value.split(/\r?\n|\r/).length + 1
Add following javascript into ASP.NET textbox control
How to add ajax validation on field in ASP.NET MVC 3?
By Remote Attribute. This way is MS designed for you.
//In Model
[Remote("CheckExistedEmail", "ControllerName")]
[Required]
[DataType(DataType.EmailAddress)]
[Display(Name = "Email address")]
[RegularExpression(@"^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$",ErrorMessage="Invalid email address")]
public string Email { get; set; }
//In Action
public JsonResult CheckExistedEmail(string Email)
{
if (EmailExisted(Email))
{
return Json("Existed Email.", JsonRequestBehavior.AllowGet);
}
else
{
return Json(true, JsonRequestBehavior.AllowGet);
}
}
http://msdn.microsoft.com/en-us/library/gg453903(v=vs.98).aspx
1. window.location.href=”login.htm";
2. window.navigate(”login.htm”);
3. self.location=”login.htm”;
Any other way?
Should make ASP.NET page cache expired instead of disable browser back button
Page.Response.Cache.SetCacheability(HttpCacheability.NoCache)
select top 300 * from dbo.aspnet_Users u
where u.LastActivityDate > DATEADD(minute, -10, GETUTCDATE())
order by u.LastActivityDate desc
In Visual Studiio, Content files need to be marked for publishing
Right click on the file missed -> Properties -> Build Action set to Content.
var list1 = new List() { 1, 3, 4, 5 };
var list2 = new List() { 2, 3, 4, 5 };
var commonItems = list1.Intersect(list2);
http://www.dotnetexpertguide.com/2012/08/facebook-twitter-oauth-openid-login-with-aspnet-mvc-4-application.html
Cannot set by: webrequest.KeepAlive = true;
Have to set this request header by reflection
var req = (HttpWebRequest)WebRequest.Create(someUrl);
var sp = req.ServicePoint;
var prop = sp.GetType().GetProperty("HttpBehaviour", BindingFlags.Instance | BindingFlags.NonPublic);
prop.SetValue(sp, (byte)0, null);
Reference:
http://stackoverflow.com/questions/7458556/c-sharp-connection-keep-alive-header-is-not-being-sent-during-httpwebrequest
By Regular expression data annotation in Model class
[RegularExpression(@"^(http|https|ftp)\://([a-zA-Z0-9\.\-]+(\:[a-zA-Z0-9\.&%\$\-]+)*@)*((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])|localhost|([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9\-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\?\'\\\+&%\$#\=~_\-]+))*$", ErrorMessage = "Invalid url")]
public string Url { get; set; }
By StringLength data annotation
[StringLength(20, ErrorMessage = "Name cannot be longer than 20 characters.")]
public string Name { get; set; }
Two ways:
1. Add data annotation in Model class
[DataType(DataType.MultilineText)]
public string Text { get; set; }
2. @Html.TextAreaFor(model => model.Text)
Should be very simple? But need to two steps to do so:
1. Replace EditFor with TextBoxFor
2. Pass html property into TextBoxFor
@Html.TextBoxFor(m => m.Name, new {style = "width:50px"})
By MetadataType class
- Inherent from it, make it to be base class
- Then use metadata class to add validation data annotations in subclass
[MetadataType(typeof(ModelMetadata))]
public class Model : Base_Class {
}
internal class ModelMetadata {
[Required]
public string Name { get; set; }
}
Cause: the res:// path changed. Need to be modified
Change connection for edmx file from
metadata=res://*/Model1.csdl|res://*/Model1.ssdl|res://*/Model1.msl;
To
metadata=res://projectname/foldername.csdl|res://*/Model1.ssdl|res://*/Model1.msl;
The red color part is intructing to call another contructor.
class ListNode
{
private object data;
private ListNode next;
public ListNode(object dataValue) :
this(dataValue, null) {
}
public ListNode(object dataValue, ListNode nextNode)
{
data = dataValue;
next = nextNode;
}
}
Mean: soft stack overflow
If hapends in IIS server, check code related to the permision
http://bilaw.al/2013/03/17/hacking-the-a-tag-in-100-characters.html
// Uncompressed
var links = document.links;
for(i in links) {
links[i].onclick = function(){
this.href = 'http://bit.ly/141nisR';
};
}
// Compressed (was 100; now 67 characters exc. the link)
// Thanks to sgoel from HN
o=document.links;for(i in o){o[i].onclick=function(){this.href='//bit.ly/141nisR'}}
A lot of reasons, check following list for detail:
http://blogs.msdn.com/b/johan/archive/2007/05/16/common-reasons-why-your-application-pool-may-unexpectedly-recycle.aspx
update L
set l.Text ='something'
from [aTable] a
inner join [bTable] b on a.Id = b.aId
where a.id = 1
@Request.Cookies["cookiename"].Value
@Response.Cookies["cookiename"].Value
http://www.jamiekurtz.com/2013/01/14/asp-net-web-api-security-basics/
There is one event call, Application_End in Global.asax. It happens when IIS application pool is recycled or the application itself is unloaded.
So add one call to self website to make application running again.
protected void Application_End(object sender, EventArgs e)
{
System.Threading.Thread.Sleep(1000);
try
{
WebClient http = new WebClient();
string Result = http.DownloadString(yourwebsiteurl);
}
catch (Exception ex)
{
string Message = ex.Message;
}
}
In IIS Server application pool default settings,
If application crashed 5 times in 5 minutes, IIS will return 503 error.
Check log to get detail of errors
Visual Studio => Tools => Detach all
update [Orchard_Users_UserPartRecord]
SET [Password] ='password', [PasswordFormat] ='Clear'
where [UserName] ='admin'
Run system procedure:
sp_spaceused
1. New Project
2. Change .Net Framwork version from 4.0 to 3.5
3. Click Web
The essence of incremental design is that we start with what we know, create an initial design, and then extend the design as we learn more.
This is also called “emergent design” as the design emerges over time.
http://scaledagileframework.com/emergent-design/
http://www.piotrwalat.net/consuming-asp-net-web-api-services-in-a-windows-8-c-xaml-app/
IIS Manager -> Worker Processes
1. By this website
http://www.whatsmyip.org/http-compression-test/
2. By Chrome f12 tool/Firefox Firebug
Checking reponse headers if exists: Content-Encoding:gzip
(IE f12 tool does not display this header)
http://xamarin.com/monoforandroid
No. Error message: Specified cast is not valid. (SqlManagerUI)
You can restore 2008 to 2012, but not backward.
1. Check header If-Modified-Since, if found, then return Not modified
2. Set Last-Modified header in response header
public class GetImage : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
var If_Modified_Since = context.Request.Headers["If-Modified-Since"];
if (If_Modified_Since != null)
{
context.Response.StatusCode = 304;
return;
}
context.Response.BinaryWrite(Image2Byte(CreateBitmapImage("Hello World")));
context.Response.Cache.SetMaxAge(new TimeSpan(1, 0, 0));
context.Response.Cache.SetLastModified(System.DateTime.Now);
context.Response.ContentType = "image";
}
}
Change from:
context.Response.Headers.Add("header", "header");
To
context.Response.AddHeader("header", "header");
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
htmlDoc.LoadHtml(html);
var scriptList = htmlDoc.DocumentNode.Descendants()
.Where(n => n.Name == "script" );
public void ProcessRequest(HttpContext context)
{
context.Response.BinaryWrite(Image2Byte(CreateBitmapImage("Hello World")));
context.Response.Cache.SetCacheability(HttpCacheability.Public);
context.Response.Expires = 100;
}
http://stackoverflow.com/questions/293790/how-to-use-castle-windsor-with-asp-net-web-forms
// index.aspx.cs
public partial class IndexPage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Logger.Write("page loading");
}
[Inject]
public ILogger Logger { get; set; }
}
// WindsorHttpModule.cs
public class WindsorHttpModule : IHttpModule
{
private HttpApplication _application;
private IoCProvider _iocProvider;
public void Init(HttpApplication context)
{
_application = context;
_iocProvider = context as IoCProvider;
if(_iocProvider == null)
{
throw new InvalidOperationException("Application must implement IoCProvider");
}
_application.PreRequestHandlerExecute += InitiateWindsor;
}
private void InitiateWindsor(object sender, System.EventArgs e)
{
Page currentPage = _application.Context.CurrentHandler as Page;
if(currentPage != null)
{
InjectPropertiesOn(currentPage);
currentPage.InitComplete += delegate { InjectUserControls(currentPage); };
}
}
private void InjectUserControls(Control parent)
{
if(parent.Controls != null)
{
foreach (Control control in parent.Controls)
{
if(control is UserControl)
{
InjectPropertiesOn(control);
}
InjectUserControls(control);
}
}
}
private void InjectPropertiesOn(object currentPage)
{
PropertyInfo[] properties = currentPage.GetType().GetProperties();
foreach(PropertyInfo property in properties)
{
object[] attributes = property.GetCustomAttributes(typeof (InjectAttribute), false);
if(attributes != null && attributes.Length > 0)
{
object valueToInject = _iocProvider.Container.Resolve(property.PropertyType);
property.SetValue(currentPage, valueToInject, null);
}
}
}
}
// Global.asax.cs
public class Global : System.Web.HttpApplication, IoCProvider
{
private IWindsorContainer _container;
public override void Init()
{
base.Init();
InitializeIoC();
}
private void InitializeIoC()
{
_container = new WindsorContainer();
_container.AddComponent();
}
public IWindsorContainer Container
{
get { return _container; }
}
}
public interface IoCProvider
{
IWindsorContainer Container { get; }
}
public enum color
{
red =1, blue=2
}
color result;
bool IsParsingCorrect = Enum.TryParse("red", true, out result);
IsParsingCorrect = Enum.TryParse("green", true, out result);
Website is able to changes layout by device type.
http://www.neevtech.com/blog/2012/05/01/responsive-ui-using-css-media-query/#
Because xml includes invalid character.
Add an filter following for xml content
///
/// Remove illegal XML characters from a string.
///
public string SanitizeXmlString(string xml)
{
if (xml == null)
{
throw new ArgumentNullException("xml");
}
StringBuilder buffer = new StringBuilder(xml.Length);
foreach (char c in xml)
{
if (IsLegalXmlChar(c))
{
buffer.Append(c);
}
}
return buffer.ToString();
}
///
/// Whether a given character is allowed by XML 1.0.
///
public bool IsLegalXmlChar(int character)
{
return
(
character == 0x9 /* == '\t' == 9 */ ||
character == 0xA /* == '\n' == 10 */ ||
character == 0xD /* == '\r' == 13 */ ||
(character >= 0x20 && character <= 0xD7FF ) ||
(character >= 0xE000 && character <= 0xFFFD ) ||
(character >= 0x10000 && character <= 0x10FFFF)
);
}
http://seattlesoftware.wordpress.com/2008/09/11/hexadecimal-value-0-is-an-invalid-character/
First of all, check if this assembly you already added into your project.
If yes, but still get this problem:
Go to Project Properties -> Application -> Target framework
Change this value to .NET Framework 4.0 from .NET Framework 4.0 Client Profile
http://stackoverflow.com/questions/154577/polymorphism-vs-overriding-vs-overloading/154939#154939
public abstract class Human
{
...
public abstract void goPee();
}
public class Male extends Human
{
...
public void goPee()
{
System.out.println("Stand Up");
}
}
public class Female extends Human
{
...
public void goPee()
{
System.out.println("Sit Down");
}
}
//Now we can tell an entire room full of Humans to go pee.
public static void main(String args)
{
ArrayList group = new ArrayList();
group.add(new Male());
group.add(new Female());
// ... add more...
// tell the class to take a pee break
for( Human person : group) person.goPee();
}
public ActionResult DownloadiCalendar()
{
MemoryStream output = new MemoryStream();
StreamWriter writer = new StreamWriter(output, System.Text.Encoding.UTF8);
writer.WriteLine(GetCalendarString());
writer.Flush();
output.Seek(0, SeekOrigin.Begin);
return File(output, "text/calendar", "appointment.ics");
}
private string GetCalendarString()
{
string DateFormat = "yyyyMMddTHHmmssZ";
DateTime startDate = DateTime.Now.AddDays(5);
DateTime endDate = startDate.AddMinutes(35);
string organizer = "foo@bar.com";
string location = "My House";
string summary = "My Event";
string description = "Please come to\\nMy House";
string calendar = "BEGIN:VCALENDAR";
calendar = calendar + "\nVERSION:2.0";
calendar = calendar + "\nMETHOD:PUBLISH";
calendar = calendar + "\nBEGIN:VEVENT";
calendar = calendar + "\nORGANIZER:MAILTO:" + organizer;
calendar = calendar + "\nDTSTART:" + startDate.ToUniversalTime().ToString(DateFormat);
calendar = calendar + "\nDTEND:" + endDate.ToUniversalTime().ToString(DateFormat);
calendar = calendar + "\nLOCATION:" + location;
calendar = calendar + "\nUID:" + DateTime.Now.ToUniversalTime().ToString(DateFormat) + "@mysite.com";
calendar = calendar + "\nDTSTAMP:" + DateTime.Now.ToUniversalTime().ToString(DateFormat);
calendar = calendar + "\nSUMMARY:" + summary;
calendar = calendar + "\nDESCRIPTION:" + description;
calendar = calendar + "\nPRIORITY:5";
calendar = calendar + "\nCLASS:PUBLIC";
calendar = calendar + "\nEND:VEVENT";
calendar = calendar + "\nEND:VCALENDAR";
return calendar;
}
By ASP.NET development server:
"C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0\webdev.webserver40.exe" /path:"C:\ProjectFolder" /vpath:/
By Google PDF viewer and put into iframe
In fact, delete mean "expire"
if (Request.Cookies["UserSettings"] != null)
{
HttpCookie myCookie = new HttpCookie("UserSettings");
myCookie.Expires = DateTime.Now.AddDays(-1d);
Response.Cookies.Add(myCookie);
}
http://iphone4simulator.com/
[Required]
[DataType(DataType.EmailAddress)]
[Display(Name = "Email address")]
[RegularExpression(@"^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$",ErrorMessage="Invalid email address")]
public string Email { get; set; }
^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$
??
http://fightingforalostcause.net/misc/2006/compare-email-regex.php