Posts Tagged ‘asp net’

Integrating FCKEditor with ASP.Net

This item was filled under [ .Net ]

FCK editor is a good Rich Text Editor for ASP.Net web pages but its documentation lacks few final steps. Adding a little to it:

Download the FCK editor package as well integration DLL from: http://www.fckeditor.net/download
Follow the installation steps of FCK editor official Docs
Now, I hope you have added reference and created your ASPX page. If [...]

Continue reading...

IIS Performance Monitor

This item was filled under [ .Net ]

Sitting a little idle at my office desk today (waiting for my manager to arrive), I was trying to figure out some way through which IIS performance can be monitored. And like always, next step was ‘Google‘. Found a small easy-to-use application which is quite handy! Check out the snap and its features below:

“Web Performance [...]

Continue reading...

Run a .BAT file from .Net with parameters

This item was filled under [ .Net ]

Last week, I had to execute a batch file using ASP.Net with parameters. I searched couple of forums, tried few codes but one of them worked really nice. I have tweaked the code to use parameters and its working! =)
public string executeBAT(string workingDir, string batchFile, string batchParameters)
{
//workingDir e.g. "c:\\temp\\" (where your batch file is placed)
//batchFile [...]

Continue reading...