function pdf(){ //一个html里面可能存在多个form,所以document.form[0]指的是第一个form,document.form[1]返回就是第二个form,如果没有第二个form,则返回undefined //就相当于:document.getElementsByTagName(form)[0] form = document.getElementsByTagName("form")[0]; with (form) { va…
using System; using System.Collections.Generic; using System.Text; using System.Net; using System.IO; using System.Collections.Specialized; namespace TechnetSamples { class Program { static void Main(string[] args) { string URLAuth = "https://technet…