Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0

11 Posted Topics

Member Avatar for asrsmunna

Put one alert to your javascript function, just to test if it is called at all. And try to add some timeout for script execution into body page where you have your form: <body onload="self.setTimeout('ClearForm()', 500)">

Member Avatar for spectra
0
126
Member Avatar for Farhad.idrees
Member Avatar for gahhon

This is explanation why you have output like that: The query which you have written, is actually join, so if you dont have any record in Staff table, the query will return zero rows, and that is why you have always empty result table. So, you need definitely to divide …

Member Avatar for spectra
0
2K
Member Avatar for preeti.anand.351

In which format are resumes, PDF or .doc(x) or something else? If you want to show it embeded in web page, check this link: http://www.aspsnippets.com/Articles/Display-Word-document-on-web-page-in-ASP.Net.aspx If you want to open it in Word on clients machine, then you should include in the response that you are sending Word content, so …

Member Avatar for spectra
0
182
Member Avatar for swathys

The first thing: Your InfoCheking function should accept only one parameter, type of Checkbox. Next thing, as you have the same exit of function for several conditions, you could put all of those which are behaving similar, under one IF statement, in the order which is required. So it will …

Member Avatar for spectra
0
214
Member Avatar for preeti.anand.351

The first idea which comes to my mind is to add one column (ie. ProfileCompleteness) in the "User" table, with percentage value. Determine which steps earn how much percents. And update that percentage value as long as user completes his profile. Create one square element on the page, which lenght …

Member Avatar for JorgeM
0
250
Member Avatar for HunainHafeez

It is simple: value1 = mydropdown.DataValueField; and use it in the query: sqlQuery = "INSERT INTO table_name (column1, column2, column3) VALUES (" & value1 & ", value2, value3)";

Member Avatar for JorgeM
0
218
Member Avatar for eharrell

Is this something like you are looking for? http://www.daniweb.com/software-development/computer-science/threads/61904/pseudocode-simply-array-process

Member Avatar for Reverend Jim
0
330
Member Avatar for spectra

Hi, this is good surce of FREE university course on Computer Networks topic, which starts in January, so you have time to sign up: https://www.coursera.org/course/comnetworks By that time, as there are also many of other great courses, you might to check them up, too. PS. This topic should go under …

Member Avatar for <M/>
1
56
Member Avatar for AmrMohammed

If you need very often to show all those data all together, it will be some quicker if it is all in one table. If you need to display all employees separated by type of decision, then you should use separate tables, one for TypeOfDecision and another for Employees with …

Member Avatar for spectra
0
132
Member Avatar for miskeen

You can also add the input button (btnDeleteSelection) and use this javascript code to deselect all items in radio button list: $("#btnDeleteSelection").click(function() { $('#<%=radioButtonList.ClientID %> input[type=radio]:checked').removeAttr("checked"); return false; });

Member Avatar for spectra
0
931

The End.