- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
web developer
26 Posted Topics
Re: hi You can use jquery loader $('#element id').bind('click', function() { $("<span><img src='loader image path' alt='Loading...' /></span>").insertAfter($(this)); $(this).next().remove(); $(this).unbind('click'); }); you also find more details on http://demos.mimiz.fr/jquery/loader | |
Re: Do you wanna confirm from database side that is it your insert query is actully executing successfully or not? What do you mean by blank page? May be your code contains smthing which forward the response to that blank page. can you post your code so that it will more … | |
Ok I know many of you already done with this sort of situation i have a form which have few fields and on submitting that form i want these field values save into two tables. Both the tables contains a primary key and foriegn key. Let table one have id … | |
Re: write your codein document.ready as: document.getElementById('divOption1').innerHTML = '<input id="option1" type="radio" value="1"/> '; $("#option1").click(function (){ alert($(this).val()); }) }); it works!! | |
Re: super class book and subclass by category so you can inherit book class in your categorized subclass Also you can create Employee class as super class and subclass by contract basis employee and permanent employee. or you can use any other criteria. | |
Re: Is it you want to pass js variable to servlet or JSp and based on that value you want to proceed further? If it is then there are two options 1> You can pass variable and its value in url. 2> you can use Ajax call and pass parameter in … | |
Re: It is recommented to use servlet.If we talk about logic and large set of code then write in java(servlet) file rather in JSP. However to just display data in jsp is fine enough. Let an example JSP servlet are used for webapplication and we have to show the content dynamically … | |
Re: Try to make query like this. SELECT * FROM usermaster where sUserID="+sUserID+" and sPassword="+sPassword+" | |
Hi, I have a jsp file which call java class file function passing connection as a parameter all was working fine once but when i changed few code in java file and compli it complied successfully but jsp file still giving previous class function output. I am working on amezon … | |
Hi I have databse having id and name field. In that I wanted to fetch random names from that database but the records which fetch in 1 st attempt wpuld not repeat in next attempt. May be this can be done by using some stored precedure or something else i.e. … | |
Hi $(window).load(function(){ var p = 0; function moveit(target,shift) { p += 0.01; var r = 135; var xcenter = 700; var ycenter = 350; var newLeft = Math.floor(xcenter + (r * Math.sin(p + (shift || 0)))); var newTop = Math.floor(ycenter + (r * Math.cos(p + (shift || 0)))); target.animate({ top: … | |
Re: you can check out this links.. [url]http://www.dotnetfunda.com/articles/article18.aspx[/url] [url]http://www.dotnetfunda.com/articles/article71.aspx[/url] | |
Hi I have a project creating a website in asp.net and there i am creating three project for different access layers like data access ,business access but when I am using that namespace in my project getting error at build time type or namespace not found however I add refrence … | |
hello I have to read Connection String that we usually defined in web config n reading through Configuration manager but I have to access that connection string in class library which I defined in separate project as making my project with 3 tier architecture but ConfigrationManager is not recognized in … | |
I am having an issue in my project trying to developing a mail webservice but getting an error transport failed to connect to server. Below is the code... [code] protected void btnsubmit_Click(object sender, EventArgs e) { MailMessage mail = new MailMessage(); mail.From = "ruchi.dubey18@gmail.com"; mail.To = txtTo.Text.Trim(); mail.Subject = txtSubject.Text.Trim(); … | |
Re: are you trying to display 1 to 53 numbers on screen as an output of your program?please explain a little bit more.. | |
HEllo I want to make a sms application C# and .net but i don't have any knowlegdge about sms messaging by computer application i search for this on google so much and the only idea i got it is that i have to buy a sam gateway but what the … | |
hi.. I just want to know is there any way to use flash image in java i mean i f i have java servlet web form and i want to design this form on flash image then how can be it possile please help... | |
hi i am working in .net project with c# coding i had design all of my forms in unsequential manner now at the time of debugging it shows some other which is the first form as in vb design but according to my procedure its not so how to start … | |
Re: this() basically referred to the constructor or we can say in ur program you have been used same variable name in the class and in constructor too so to defferiantiate these variables this key word is used which indicate the class variable catch the value whatever u pass in constructor … | |
Re: i think u can create project in which user can choose language according to there convienence means you can create some web page in which you add some information & then add some button of various languages on clicking on btn the information will changes in that particular language... you … ![]() | |
Hello, I have an application in actionscript & flash my application design contain 7 tumbnails picturs & 2 button for scrolling this tumbnails actually i hav 28 photographs which i want to be scroll 4 times on clicking on button each time so can any one give me the solution … | |
Re: Hi, i think you are using C# so you want the difference betwen Void Static & return ok i will explain u one by one all u have been is askedin ur 1st question is related to function i.e. void--> it is using in function to define function type means … | |
Hi, i have an application inaction script & java script .I m calling a javascript function by actionscript Fscommand but it gives error as "Object Required" can anyone solve this error.... i have paste code below of javascript.... [code] <html> <head> <title>save</title> <script language="javascript">AC_FL_RunContent = 0;</script> <script src="AC_RunActiveContent.js" language="javascript"></script> <script … | |
Hello, I m Ruchi.I want open save as window for user to save text file through java script & i have used javascript Execcommand however it only works in IE not in Mozilla ,Firfox etc........... Please help me Thanks & Regards Ruchi | |
Hello, I have problem in java script ............ i m using action script & java script , i have an application in which i want to save text of user on clicking on save button & i m using "document.execCommand('saveas')" to save text ... however this code work fine in … |
The End.