0
Posted on 7:02 AM by Softminer and filed under ,

Create Your Own Test Certificate and add it to your solution (key certificate)
http://msdn.microsoft.com/en-us/library/ff699202.aspx



How to run application in startup in registry
Microsoft.Win32.RegistryKey key = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
key.SetValue("sysadmin", Application.ExecutablePath.ToString());


Get Current Directory of running application
System.Reflection.Assembly.GetExecutingAssembly().Location;
0
Posted on 5:08 AM by Softminer and filed under

Domain backordering refers to a service that most domain registrars offer which will allow you to register a domain name that will soon be expiring in hopes of capturing the rights to that domain name before someone else grabs it.

to read more:
http://www.mikeindustries.com/blog/archive/2005/03/how-to-snatch-an-expiring-domain

http://www.registercompass.com/wiki/domains/backorder.aspx

these three services are recommended.

Pool.com
Namejet.com
Snapnames.com
0
Posted on 3:36 AM by Softminer and filed under

For security its recommended to encrypt web.config after deploy.

MSDN article is here
Encrypting and Decrypting Configuration Sections


cmd should run as Administrator in Windows Server 2008

Example:

Encrypt:
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -pe "connectionString" -app "/appname"

Decryption:
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -pd "connectionString" -app "/appname"
0
Posted on 6:24 AM by Softminer and filed under

Nominal Value
The stated value of an issued security that remains fixed, as opposed to its market value, which fluctuates.


Book Value
1. It is the total value of the company's assets that shareholders would theoretically receive if a company were liquidated.

2. By being compared to the company's market value, the book value can indicate whether a stock is under- or overpriced.

3. In personal finance, the book value of an investment is the price paid for a security or debt investment. When a stock is sold, the selling price less the book value is the capital gain (or loss) from the investment.

Watch this Video

Market Value

In the context of securities, market value is often different from book value because the market takes into account future growth potential. Most investors who use fundamental analysis to pick stocks look at a company's market value and then determine whether or not the market value is adequate or if it's undervalued in comparison to it's book value, net assets or some other measure.
0
Posted on 5:40 AM by Softminer and filed under

i you want to make a wireless lan which use your lan internet follow the instruction:
go to
  • Control Panel\Network and Internet\Network Connections
  • right click on your local area connection and share the connection.
  • allow you wlan connection with name "Microsft Virtual WiFi Mniport Adaptor" which is usually Wireless network Connection 2
run command prompt as administrator and type
  • netsh wlan set hostednetwork mode=allow ssid=mylan key=typepassword
and then
  • netsh wlan start hostednetwork
when you run second command then your wireless lan will be enable and you can start using it.
to disable it
  • netsh wlan set hostednetwork mode=disallow ssid=mylan key=typepassword
dont forget to enable your wlan adaptor.