Print Page Without URL And DateTime Using Javascript?
Mar 18, 2011
I want to print the div tag content by javascript by using the following code.
var divToPrint1 = $('#PrintDoc').html();
var newWin = window.open('Share Certificate #001', '', 'width=10px,height=10px');
newWin.document.open();
newWin.document.write('<html><body onload="window.print();">' + divToPrint1 + '</body></html>');
newWin.document.close();
setTimeout(function () { newWin.close(); }, 10);
And print code works fine. But now I want to remove the url, date and title from the print by using the javascript code.
View 2 Replies
May 25, 2010
i am using below code to print my content of webpage in asp.net using javascript
window.print(document.getElementById('dvPrint'));
when i do print, it automatically adds date time on page.. (i think because of page setup) in firefox. how can i remove this setting. i mean i dont want datetime to be printed automatically on my print page (even if its set in pagesetup).
View 1 Replies
Mar 4, 2011
I need to print the current page in the asp.net application for that I am using javascript:window.print().
It's working fine when the page content is within the bounds. However, if the horizontal scrollbar appears as a result of overflow, am able to print only the visible content while the overflown contents couldn't be printed.
Is there any workaround to get this working? Is there any other alternative apart from javascript to achieve this functionality?
View 1 Replies
Feb 20, 2010
In asp.net website, i am using crystal report. My question is very generic i.e. How it is possible to display client side (browser) date and time?
Actually in my case our website is going to hosted at India, while that site is used by user's at SWEDEN.
Now the problem is that when user request for report then it is displaying server side date time because i have used PRINTTIME control of crystal report. But user should have date and time of their PC. because that time is basically a report generates date time.
View 1 Replies
Mar 10, 2010
This grid looks great in the browser, but when printing, the date is duplicated - one w/ the correct format and one w/ the full datetime format (including hh:mm:ss). I've tried converting the datetime in the Select query, but keep running into error messages.
Here's the query:
[Code]....
And here's the grid, using an Obout control:
[Code]....
View 2 Replies
Feb 16, 2012
I want add to Header of Gridview on each print page
below is my code :
enter code here
My code is not working
<asp:Content ID="cMain" ContentPlaceHolderID="phMain" Runat="Server">
<style type="text/css">
@media print
{
[Code].....
View 1 Replies
Mar 3, 2011
I have a custom list earthquakes which contains a list of earthquakes. How do I parse this in JavaScript in order to add it to innerHtml and display on the screen. The problem is that I cannot get this to display on the screen in a div. When it parses I get no result because my javascript is wrong and if I try just printing the result i get [Object object]
So the flow goes input from textbox -> web service -> list to javascript
earthquakes class:
public class earthquakes
{
public string eqid { get; set; }
public double magnitude { get; set; }
public double lng { get; set; }
public string source { get; set; }
public DateTime date { get; set; }
public int depth { get; set; }
public double lat { get; set; }
}
dataEarthquakes class
public class dataPostalCodes
{
public List<postalCodes> postalCodes { get; set; }
}
WebService:
public static dataEarthQuakes getEarthquakes(dataPostalCodes postalCodes)
{
double lat = postalCodes.postalCodes[0].lat;
double lng = postalCodes.postalCodes[0].lng;
Uri address = new Uri(String.Format(FindEarthquakes, lat, 0, lng, 0));
WebClient client = new WebClient();
string jsonResponse = string.Empty;
jsonResponse = client.DownloadString(address.AbsoluteUri);
var results = JsonConvert.DeserializeObject<dataEarthQuakes>(jsonResponse);
return results;
}
Javascript:
function OnLookupComplete(e) {
var result = e;
var weatherData = new Sys.StringBuilder();
var line;
for (var property in result.dataPostalCodes) {
line = String.format("<b>{0}:</b> {1}<br/>",
property, result.dataPostalCodes[property]);
weatherData.append(line);
}
$get('divResult').innerHTML = weatherData.toString();
}
Json string:
{"earthquakes":[{"eqid":"2010utc5","magnitude":7.7,"lng":97.1315,"src":"us","datetime":"2010-04-06 20:15:02","depth":31,"lat":2.3602}, {"eqid":"2009kdb2","magnitude":7.6,"lng":92.9226,"src":"us","datetime":"2009-08-10 17:55:39","depth":33.1,"lat":14.0129},{"eqid":"2010zbca","magnitude":7.6,"lng":123.533,"src":"us","datetime":"2010-07-23 20:51:11","depth":576.3,"lat":6.4939},{"eqid":"2010xkbv","magnitude":7.5,"lng":91.9379,"src":"us","datetime":"2010-06-12 17:26:50","depth":35,"lat":7.7477},{"eqid":"c0000rxc","magnitude":7.4,"lng":143.7392,"src":"us","datetime":"2010-12-21 16:19:41","depth":14.9,"lat":26.8656},{"eqid":"2010zbcd","magnitude":7.4,"lng":123.2677,"src":"us","datetime":"2010-07-23 21:15:08","depth":616.7,"lat":6.7489},{"eqid":"2010wbaq","magnitude":7.4,"lng":96.0805,"src":"us","datetime":"2010-05-09 03:59:44","depth":61.4,"lat":3.7284},{"eqid":"2007hvbq","magnitude":7.4,"lng":142.6846,"src":"us","datetime":"2007-09-28 11:38:58","depth":261.3,"lat":21.98},{"eqid":"2010zbbz","magnitude":7.3,"lng":123.4788,"src":"us","datetime":"2010-07-23 20:08:11","depth":604.5,"lat":6.7079},{"eqid":"2007xvam","magnitude":7.3,"lng":126.292,"src":"us","datetime":"2007-01-21 10:27:42","depth":10,"lat":1.2071}]}
View 2 Replies
Jul 8, 2010
I want to use the System.DateTime.Now() function (to get system time) rather than the Date() function (for user's time) in a Javascript routine of an ASP.net web page, however this does not seem to be supported in Javascript (as it is in VB.net).
View 11 Replies
Sep 4, 2010
I'm trying to convert the javascript date to ASP.NET's DateTime.Now
var todaysDate = new Date();
document.getElementById('hdnDate').value = todaysDate.toString();
private void ConvertToDotNetDateTime()
{
DateTime myDate = (DateTime)hdnDate.Value; ??? ? //bit lost here
}
View 2 Replies
Apr 28, 2010
I've got a JQuery tabcontrol (4 tabs), which each of them control 1 gridview. now I got a button "print". It activates a javascriptfunction, which should build a page, containing all gridviews. I got something, but it does not work:
function doPrintPage() {
myWindow = window.open('', '', 'titlebar=yes,menubar=yes,status=yes,scrollbars=yes,width=500,height=600');
myWindow.document.open();
myWindow.document.writeln("<link href='/styles/Layout.css' type='text/css' rel='stylesheet' ></link>");
myWindow.document.write(document.getElementById('tabcontainer').innerHTML);
myWindow.document.close();
myWindow.focus();
myWindow.print();
return true;
}
I thought it may be the getElementByID() and then something like 'tabcontainer' (which contains the tabs) or 'tabcontent' (the content of each tab) or 'GridView1' or something, but I could be completely wrong.
View 1 Replies
Feb 16, 2011
I would like to add a print icon to panels in my web app, and when clicked, literally print exactly what is being viewed in the particular panel, and format it to print on 8/1/2 x 11 paper automatically.It often have multiple panels visible at the same time, and am not trying to print the page, just a panel on the page.What is the easist way to accomplish that?
View 2 Replies
Mar 16, 2011
I am trying the following code:
[Code]....
And I also tried with a normal DateTime instead of a nullable one. If I put in a date which is not possible then it still shows as valid. How can I achieve validation, both server side as with unobtrusive client validation?
View 4 Replies
Feb 23, 2010
we are displaying a reporting services report as a pdf document in acrobat reader. when the user clicks on the print in the acrobat reader, I will like to print the report and close the report. The user should be able to print the report only once.
View 2 Replies
Nov 4, 2010
have a asp.net application where I'm trying to load few documents into memory and print it. I learned that I can't use PrintDialog in a web app and the only way is to print using javascript by writing the content into a (hidden) iFrame.My question is how can Silverlight help me with this? Is it possible to show print dialog and get printer settings and print without a preview by sending the files directly to the printer? How hard it is achieve to using SL?
View 1 Replies
Dec 15, 2010
I am using javascript print function in my project (window.print) . i can' t able to chage the default font style in my funtion pls help me how to find the default font style in window.print
View 1 Replies