Question : Can i deploy .net framework 3.5 sp1 using group policy?

Hey Folks, I will need to install .net framework 3.5 sp1 on about 50 machines - i was hoping i could deploy it using group policy but i didn't come across the .msi.  so i need the msi or can i use the exe?  I have only deployed one other application in the past (a long time ago) so i wasn't sure if I am missing something.  

Answer : Can i deploy .net framework 3.5 sp1 using group policy?

You can use jQuery http://jquery.com

Although I am not an ASP coder at all, You can access the variables as post variables on the asp page. Does that help?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
        
        function validate_field(){
                value = $("#textfield_id").val();
                if(value == ''){
                        alert("Please enter something in the field");
                        return false;
                }
                $.post("your_php_page.asp", { value: ""+value+"", another_variable: "testing" },
                        function(data){
                        //data is the output of your_php_page.php after it runs
                alert("Here is the data returned: " + data);
                        //you could also write the data on the page too
                        $("#response").html(data);
                });
        }

        
</script>
<div id="response"></div>
<input type="text" name="texfiled_name" id="texfield_id"> <input type="button" onClick="validate_field()" value="Check Field">
Random Solutions  
 
programming4us programming4us