Posts
 
Reputation
Joined
Last Seen
Ranked #451
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
96% Quality Score
Upvotes Received
21
Posts with Upvotes
18
Upvoting Members
20
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
17 Commented Posts
Member Avatar for xploit

Do you have any experience implementing php/asp.net scripts ? As this could prove difficult if your not too sure what you are doing. There are some 3rd party tools out there which will probably do all this for you but your gonna have to pay for these as i dont …

Member Avatar for simhakidsden
1
153
Member Avatar for Fungus1487

I browsed google and found nothing so thought i would put my efforts up here. hope this all helps. this function will allow you to return the number of days between two dates minus saturdays and sundays. (including the start date)

Member Avatar for pritaeas
0
3K
Member Avatar for Nareshp_123

you cant hide the textbox but if you set the display style property of the FORM element to 'none' and create another element of type button then using javascript you can open the dialog onClick of the button e.g. [CODE] <form name="form1"/> <input type="file" name="filediag" style="display:none" /> <input type="button" value="browse..." …

Member Avatar for Ankur_6
0
4K
Member Avatar for BleepyE

Just out of curiosity why would you want to do this? You can change your theme programmatically by changing the registry values found at... [I]HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes[/I]

Member Avatar for nilesh7136
0
202
Member Avatar for cjay175

1. Don't use ID like you do. ID's are meant to be unique but your first section use "qa1" and "qa2" twice in both anchors and is then used in the divs as part of the second section. 2. You dont need the "OnClick" attribute if using jQuery (it is …

Member Avatar for efadfsfasdf
0
5K
Member Avatar for Designer_101

you would do the following. Hope it helps. [CODE=html]<html> <head> </head> <body> <table id="countit"> <tr> <td class="count-me">12</td> <td>Some value</td> </tr> <tr> <td class="count-me">2</td> <td>Some value</td> </tr> <tr> <td class="count-me">17</td> <td>Some value</td> </tr> </table> <script language="javascript" type="text/javascript"> var tds = document.getElementById('countit').getElementsByTagName('td'); var sum = 0; for(var i = 0; i < …

Member Avatar for saqlainraza14
0
44K
Member Avatar for Fungus1487

below is a very simple encryption class which shows how to encrypt sensitive data (very simply) this example converts a string to hexadecimal form and back again with some simple error handling. please leave some feedback if you find this useful

Member Avatar for enelramon
0
364
Member Avatar for sagar_wordlife

an application that suggests final year projects maybe ? really pick something youll enjoy (you will do a much better job)

Member Avatar for bluehangook629
0
247
Member Avatar for Fungus1487

Hi Guys, I have a gigabit switch which supports auto MDIX, is there any performance overhead using this feature to connect for instance a router to it via a patch cable rather than a crossover cable? Help much appreciated.

0
71
Member Avatar for Fungus1487

Hi Guys/Gals, Setting up my home network (I am not a networking guru) and wanted your expert opinion on the best configuration for my hardware. I have the following [I]generalized [/I] pieces of gear... [LIST=1] [*]Gigabit Switch#1 [*]Gigabit Switch#2 [*]Wireless N Router Supporting Gigabit [*]PC#1 [*]PC#2 [*]XBOX [*]AV Receiver [*]HTPC …

Member Avatar for rubberman
0
319
Member Avatar for soft_coder

You want to use the following... [CODE=JavaScript]var session = <%=Session["username"] != null ? "true" : "false"%>;[/CODE] Now for as to why you would want to do this is beyond me? If you can check this when the page is being processed on the server you can simply force a redirect …

Member Avatar for soft_coder
0
24K
Member Avatar for manoj_582033

given a file structure as follows... [CODE]DirectoryA -- SubDirA -- SubDirB DirectoryB -- SubDirA -- SubDirA1 -- SubDirB[/CODE] If your page (lets say "Default.aspx") is in "DirectoryA/SubDirB" like so... [CODE]DirectoryA -- SubDirA -- SubDirB [COLOR="Red"]-- Default.aspx[/COLOR] DirectoryB -- SubDirA -- SubDirA1 -- SubDirB[/CODE] And you want to map the path …

Member Avatar for Sarama2030
0
205
Member Avatar for extemer

Try using the new HTML5 attribute [URL="http://www.w3schools.com/html5/att_input_placeholder.asp"]placeholder[/URL], this will only work in modern browsers. [CODE=html]<input type="text" name="myinput" placeholder="enter something" />[/CODE]

Member Avatar for extemer
0
119
Member Avatar for alexaaxela

If you just want to keep remembering values then use a List as it dynamically resizes for you. [CODE=VB.Net]Public anscapp As New List<Double>()[/CODE] Then you can add elements like so... [CODE=VB.Net]anscapp.Add(Double.Parse(Combocapp.Text) * 2.35);[/CODE]

Member Avatar for Fungus1487
0
166
Member Avatar for Hani1991

Also the script tag should be written as... [CODE=HTML]<script type="text/javascript"> ... </script>[/CODE] The attribute [b]language[/b] has been deprecated a while now.

Member Avatar for Pro2000
0
89
Member Avatar for princekool

so your linking a html file to a button in flash ? or is it another type of file. Post the actionscript here ?

Member Avatar for adarsha_saraff
0
193
Member Avatar for Fungus1487

hello all, i have a belkin 54g router connected to 3 devices via ethernet. And a Netgear WGR614 router upstairs that connects 3 devices via ethernet. They are within range of each other and i know for a fact that the Belkin can be set up as an access point. …

Member Avatar for eldzakp
0
396
Member Avatar for Fungus1487

does anyone knwo of any good online services that will allow me to view my email stored on my exchange server at a static IP address away from my network with an internet connection ?

Member Avatar for mountainwombat
0
137
Member Avatar for get connected

Im not sure you will be able to check if excel has a specific file open but you could easily close all Excel instances from your application with something along the lines of. [CODE=VB] Dim instances() As Process = Process.GetProcessesByName("EXCEL.EXE") For Each instance As System.Diagnostics.Process In instances instance.Kill() Next [/CODE] …

Member Avatar for Fungus1487
0
5K
Member Avatar for Fungus1487

Hi all. I have a requirement to collect a bitmap image directly from a given AVI file. Does anyone know of any decent .Net only libraries that by any chance can achieve this? I would like to avoid any COM interops if possible but if you have had experience using …

Member Avatar for Momerath
0
239
Member Avatar for BleepyE

A simpler approach would be to iterate through all the comboboxes on your form (or control that holds combo boxes e.g. a Panel), build up a collection of these comboboxes then compare them accordingly. The following code contains two methods, [B]AreSelectedComboBoxValuesDuplicated[/B] and [B]GetComboBoxes[/B]. [B]GetComboBoxes[/B] does exactly what it says on …

Member Avatar for Fungus1487
0
642
Member Avatar for Fungus1487

i have created websites for clients for some time now but recently i have found it difficult to add that little extra to a project to make it unique from all those that surround it. I wanted to know what you lot do to get the old juices flowing and …

Member Avatar for logoonlinepros
0
186
Member Avatar for himanjim

[QUOTE=himanjim;622826]I'm really having hard time importing ASPNETDB.mdf to remote server running sqlserver 2005.. I'm using sql server express edition (along with visual web developer 2008) I use the same string <add name="aspnetusers" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\ASPNETDB.MDF;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" /> No connection can be established.... Then I changed that to <add name="aspnetusers" …

Member Avatar for crishjeny
0
413
Member Avatar for sreekiran

[QUOTE=sreekiran;432736]using javascript[/QUOTE] are you talkin about validating it to check whether it is REAL or whether the format is correct ?

Member Avatar for macgurl70
0
87
Member Avatar for sidereal

[quote=sidereal;350879]Hi all, I have a dropdown and a textbox and I want to be able to change the textbox to a dropdown control, after a certain value in the dropdown is selected. I have a problem in changing the controls from textbox to dropdown. Any help???[/quote] ok this could be …

Member Avatar for venkythaniks
0
188
Member Avatar for xmassey

why not use a function like [CODE] function getchecked() { var newtxt = ''; var chkbx = document.getElementsByTagName('input'); for(var i = 0; i < chkbx.length; i ++) { if(chkbx[i].type == 'checkbox' && chkbx[i].checked === true) { if(newtxt.length !== 0) { newtxt += ','; } newtxt += chkbx.innerHTML; } } document.form.marktext.value …

Member Avatar for dobriyalji
0
1K
Member Avatar for Fungus1487

hello all, the company i am working for (quite a small company) are looking to host our web applications suite on our internal server running windows server 2003 and IIS 6 and allow external access to it. We have a static IP from our ISP and currently can access the …

Member Avatar for dinesh.kommi
0
331
Member Avatar for Fungus1487

This is a very brief overview of how to achieve an ON-THE-FLY creation of an appointment in the clients outlook calendar. This will not force the user to add it to there calendar but gives them the option to add it automated. Using the older .vcs file extension for outlook …

Member Avatar for elf123
0
209
Member Avatar for teckforce

[QUOTE=achristov;875617]javascript is especially useful serverside, where ASP.NET is absolutely weak... ;) from this point on you can guess my answer. Or maybe we wouldn't need servers in the future...[/QUOTE] Are you saying that javascript is useful serverside? Or is it intended to be sarcastic, i hope so! I agree with …

Member Avatar for teckforce
-1
608
Member Avatar for chandruswami

This should do the trick [CODE=CSHARP] // Split the values by comma String[] values = "a,b,c,d,-,,e,f".Split(','); // Create a new list to hold filtered content List<String> filtered = new List<String>(); // Create regex to check each value Regex reg = new Regex(@"^[a-zA-Z]+$", RegexOptions.IgnoreCase); // Loop through values foreach(String value in …

Member Avatar for thines01
0
184