Aklımda Kalası Kelimeler

* давайте работать вместе
* Zarf ve Mazruf, Zerafet(xHoyratlık) ile aynı kökten(za-ra-fe) gelir
* Bedesten
* Suç subuta ermiştir - Suç sabit olmuştur
Path etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
Path etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

16 Nisan 2015 Perşembe

JScript dosyalarınızı nasıl çalıştırırsınız?

JScript kodlarını derlemek için:
PATH ortamına dizini ekleyeceksiniz ki jsc derlenecekDosyaAdi.js dediğinizde jsc.exe dosyasını leb demeden bulsun sisteminiz.
  1. Use the Windows search feature to find jsc.exe on your drive. The exact name of the directory where jsc.exe is located depends on the name and location of the Windows directory and the version of the .NET Framework that is installed. If you have more than one version of the .NET Framework installed, you must determine which version to use (typically the latest version).
    For example, the compiler might be located at C:\Windows\Microsoft.NET\Framework\v2.0.50727.
  2. To display the System Information dialog box, right-click Computer or My Computer on the desktop, and then click Properties.
  3. If you are using Windows Vista or Windows 7, click Advanced System settings in the resulting Control Panel window.
  4. On the Advanced tab of the System Properties dialog box, click the Environment Variables button.
  5. Under System variables, select Path from the list and click Edit.
  6. In the Edit System Variable dialog box, move the cursor to the end of the string in the Variable Value box and type a semicolon (;) followed by the full directory name that you found in Step 1.
    For example, if the compiler is at the location specified in the example in Step 1, you would type the following:
    ;C:\Windows\Microsoft.NET\Framework\v2.0.50727
  7. Click OK to confirm your edits and close the dialog boxes.
  8. Open a new command prompt.

Yukarıda size .Net Framework 2.0 için yol göstermiş ama bende 4 versiyonu için yolu ve aradığımız jsc.exe dosyasını göstereyim. Böylece kimse bir daha PATH ne iş yapara Environment Variables ne iş yapar diye düşünmesin ;)

Kodumuz şu olsun:
print("Bu yazı bir exeden çıkacak");
Çıktımız ise şu:

22 Şubat 2010 Pazartesi

ASP.NET Web Site Paths

http://msdn.microsoft.com/en-us/library/ms178116.aspx

An absolute URL path. An absolute URL path is useful if you are referencing resources in another location, such as an external Web site.


<img src="http://www.contoso.com/MyApplication/Images/SampleImage.jpg" />



A site-root relative path, which is resolved against the site root (not the application root). Site-root relative paths are useful if you keep cross-application resources, such as images or client script files, in a folder that is located under the Web site root.

This example path assumes that an Images folder is located under the Web site root.


<img src="/Images/SampleImage.jpg" />



If your Web site is http://www.contoso.com, the path would resolve to the following.


http://www.contoso.com/Images/SampleImage.jpg



A relative path that is resolved against the current page path.


<img src="Images/SampleImage.jpg" />



A relative path that is resolved as a peer of the current page path.


<img src="../Images/SampleImage.jpg" />