3
Answers

How to Install MvcJqGrid in Visual Studio 2013 from online?

Photo of Marutharasu P

Marutharasu P

10y
1.3k
1
Hi Friends,

    I was trying to install MvcJqGrid in VS 2013 through online. The following error has occured. Kindly assist me to install MvcJqGrid and How to implement those grid in MVC application step by step.

Error:
The remote server returned an error: (403) Forbidden.

Thanks in advance...

Answers (3)

0
Photo of venkatesh p
NA 7 0 17y
thanks for your reply. i got it. but when i start the service "it shows some errors " please help me to rectify that. the errror was  service could not be started on this computer . since no timely fashion reply from service.
0
Photo of Scott Lysle
NA 28.5k 14.4m 17y
You can start by overriding the OnStart event for your service; in that code you can use Process.Start to kick on some other application (in the below example, I start internet explorer and pass it the URL for MSN as a argument so that whenever the service starts, it opens up MSN in an explorer window)
protected override void OnStart(string[] args) {  System.Diagnostics.Process.Start("iexplore.exe", "http://www.msn.com"); }   Process.Start accepts a couple of arguments, the first is the executable to launch (e.g., iexplore.exe in this example) and the second argument is any optional arguments that the executable may use (in this case, a URL).  Of course the executable can be any executable and may include a full path to that executable and the arguments to the executable are optional.