Click here to Skip to main content
15,914,642 members

Comments by Pavan_N (Top 8 by date)

Pavan_N 23-Jan-14 2:13am View    
Proper url please...
Pavan_N 22-Jan-14 9:53am View    
So you are actually trying to print on server side.Is it an intranet application you are developing for?
In my case am doing server side printing for which i wrote windows service to fetch the printer names available in app server PC.

In the UI there is settings page in which we will select a default printer name. So when ever user tried to print the default rinter will be changed and print job is processed and the previous default printer will be reverted back. Mostly i did a workaround kind of thing.

I suggest go with singleton pattern.

Regards,
Pavan N
Pavan_N 22-Jan-14 7:03am View    
First of all to use jquery you need concerned javascript file to be added in your solution and refeered in your page. Second refr this link which tells in .net perspective http://www.codeproject.com/Tips/471799/jQuery-introduction-and-how-to-use-jQuery-with-ASP
Pavan_N 22-Jan-14 6:29am View    
Same as mentioned in my snippet above.
TRY alert($("#txtdmemid").val());
Pavan_N 22-Jan-14 6:07am View    
Thats fine. JQuery/Javascript is a client side running script. Until and unless your control is available the script will work..... Fact is what ever the controls you use in your asp.net, php, jsp etc Finally browser understands HTML only. See the viewsource in your browser than you will realize.

Regards,
Pavan N