May 10, 2016
Posted in Asp.net,C#,Ajax,MVC
In this article I have given some combination of Regular Expressions along with ASP.Net RegularExpression Validators, so that it will help users implement different sorts of Password Policy in their websites
|
March 14, 2016
Posted in Asp.net,C#,MVC
Its because of :
None of your inputs have a name attribute. No name = not in the FormCollection.
|
March 07, 2016
Posted in Asp.net,C#,MVC
One way to accomplish
this is to append a query string on the image URL that changes when the
image changes. A drop dead simple one is using:
"image.jpg?" + new Date().getTime()
That would give me a URL like this:
"image.jpg?1321626971855"
Now
you could this more intelligently in your JavaScript by only changing
the timestamp (or adding the timestamp) when the image is changed.
|
February 04, 2014
Posted in Asp.net
Web .Config
<system.webServer> <httpCompression> <scheme name=”gzip” dll=”%Windir%\system32\inetsrv\gzip.dll”/> <dynamicTypes> <add mimeType=”text/*” enabled=”true”/> <add mimeType=”message/*” enabled=”true”/> <add mimeType=”application/javascript” enabled=”true”/>
|
January 15, 2014
Posted in Asp.net
Solution:
You can use use ~/img/myImage.png instead of ../img/myImage.png to avoid this error in ASP.NET pages.
|
June 04, 2013
Posted in Asp.net
Use
ClientScript.RegisterStartupScript(this.GetType(), “alert”, “alert(‘Test Alert’)”, true);
|
May 10, 2013
Posted in Asp.net
A potentially dangerous Request.Form value was detected from the client (ctl00$ContentPlaceHolder1 ....
|
May 10, 2013
Posted in Asp.net,C++
Default Constructors
A default constructor is a constructor that either has no parameters,
or if it has parameters, all the parameters have default values.
If no user-defined constructor exists for a class A and one is needed, the compiler implicitly declares a constructor A::A(). This constructor is an inline public member of its class. The compiler will implicitly define A::A() when the compiler uses this constructor to create an object of type A.....
|
February 06, 2013
Posted in Asp.net
Once I was assigned a task to create a map for the stockist list in a trade site.
The basic aim behind creation of this project is to have a location
for all stockist for the particular brand, and provide end user with
integrative google map services so that they visualize real-time.
|