Jump to content

raviprakashg

Members
  • Posts

    78
  • Joined

  • Last visited

Posts posted by raviprakashg

  1. thanks for ur reply, whether the code will send the data to printer or provide the style to the selected section, if it prints means how to call it into a button, B'cos i want it to print clicking the button(Print Button)

  2. Ok,I want to Control User to Feed the date as MM/DD/YYYY HH:MM:SS AM/PMthe InPut Box will be Like This "--/--/----/ --:--:-- --" this is Like Phone No. Input Boxi came to know that the is can be done thur JSi Hope u guy can Understand Now.

  3. Dear Friends,I Got a Problem in Printing an Web Page, I have to Print Only a part of an web page (ie Only data in <Div>) its possible in JS? if So Please Help Me.thks hav gud dayurs raviprakash

  4. dear friendsi have to use an for loop twise or thrice(it delecared dynamic), Like goto Statement in VB6 it is possible to do in ASP VBScript if not how to Solve itthis code will explain u more

    for jcnt= 0 to ubound(arShift,2)       if NewShift  = arshift(0,jcnt) then           CheckShift =1       end ifnextif checkShift = 0 then    NewShift = NewShift+1    if NewShift > arshift(0,Ubound(arShift,2)) then NewShift = arshift(0,Lbound(arshift))'goto  (Here i want to call the for loop again) end if

    thanks

  5. you can use this code (javascript)function print_page(){ window.print();} <body><input type="button" name="button" onClick="window.print()" value="print page">

    thanks for yr replywill this print all the Banner and all design or just print the data taken from Recordset(RS), i want to print only the data taken from RS, Help Me
  6. How take Print from Recordset Using ASPwhat i want is , ihve to print an report that i got in recordset, processs should be done while clicking an button or icon i don't want to open an new page, please give me an best idea for the above processthksurs raviprakash

  7. Better u save onlt the IMGname into an text fld in ur tbl and keep an constant folder called "Img"(inside root) and Call the file name from DB with Concording the folder name(Img) with file name as src in <IMG>. this is also display ur requsted img and aslo avoid the large size data in ur DB.Hope i have given an correct Sugg.have a good day

  8. Hisomeone tell me how to import data from Recordset(RS) to excel file and how to Retrieve it.i googled about this and found that the RS are save to xls using FSO, is it a better way? or any one have best one then FSO, and i don'nt know what to do for Retrieving data from xls.thanks to everyone, who are going to help me,URSRaviprakash

  9. ar u using MS Access as DB then it will take it as 1 if the fld is Number, u can use 00001 with text fld and convet into int whereever u use

  10. in asp u Submit the in same page:1. Give same pageName as Action in Form tag2. get submit Button value in var dim Button_Val Button_val = request.form ("FormName") if Button_val <> "" then <write the statement here> end if

  11. YES, my page with Login is loaded and aslo give the msg for wrong username and password. if i give corret username and passsword then i facing the session problemi also tried with shutingdown the ZoneAlarm Pro and cheked the privacy setting in IE (Advance Setting),i can work the page with same system where the project files are, but i can able to play the same in another with the both systems are networked, the both system are with Xp SP2 and the users with admin statusNB: The problem iam facing after loding winXP SP2

  12. Dear Friends,Iam Using Win XP SP2 and FireWall is ZoneAlarm Pro the problem is iam not able to Browes the file form other system which is LAN and i got the error session expires even i login first time, iam facing this problem for past 2 months and i can'nt able to solve itit will very very thankfull to u, if u know the answer for iturs raviprakash

  13. <script language="JavaScript" type="text/javascript"><!--function dovalidate(){var submit_accepted = false;var chk_val = true;var AllowedChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_01234567890"var AllowedNumbers = "0123456789"var frm = document.EmpEntryif (submit_accepted)  // prevents NN4 resubmission        return(false);if (frm.txtFName.value == "")	{	alert ("Enter First Name of Labour/Employee (i.e initial)");	frm.txtFName.focus();	return false;	}if (frm.txtName.value == "")	{	alert("Enter Name of Labour/Employee");	frm.txtName.focus();	return false;	}	if (chk_val)        //regform.p_js_on.value = 1;//	frm.ButSubmit.value = "Please Wait..."//    frm.ButSubmit.disabled = chk_val;//    alert (chk_val)    submit_accepted = chk_val;return chk_val;}function gowhere(regfrm){	if (dovalidate())  {  alert("Okay")  regfrm.submit()  return true;	  }	}--></script><form action="" method="post" name="EmpEntry" onSubmit="return gowhere(this);"><input name="txtFName" type="text" size="5" value=""> <input name="txtName" type="text" value="" size="30"><input type="submit" name="ButSubmit" value="Submit"></form>

    Dear Friends,I got Problem From this code,when i fire the from the from is not Submitting and i got the error: Access is denied(Javascript) if i comment the line "regfrm.submit()", its says nothing and page dose'nt fire, pls tell me How to solve the problem.NB : Its an ASP page

×
×
  • Create New...