摘要:
Global.asax.cs文件 public class MvcApplication : System.Web.HttpApplication { /// /// 全局事件开始 /// protected void Appl... 阅读全文
摘要:
后台代码: [HttpPost] public string AjaxWeather() { string CityName = string.IsNullOrEmpty(Request.Form["city"]) ? "" : Req... 阅读全文
摘要:
SQL数据库表--创建Province表CREATE TABLE [dbo].[Province]( [Id] [int] NULL, [Name] [varchar](50) NULL, [orderid] [int] NULL)--插入数据insert into Province values(... 阅读全文
摘要:
Select用法 var selectedItems = from item in items where item.ParentID == parentID orderby item.SortIndex descending ,item.Name ascending select item;0.1... 阅读全文
摘要:
Windows解决方法就是修改C:\Windows\System32\drivers\etc\hosts文件。在Linux各种发行版和Mac中,hosts文件所在位置为/etc/hosts,可以使用sudovim/etc/hosts来编辑均是在最后,添加一行:74.125.237.1dl-ssl.google.com原理就是:我们输入网站时,一般都是通过DNS域名解析。但是顺序为:先读取hosts文件,是否有对应的IP,若有直接通过此IP访问。没有的话,就通过DNS解析到的IP访问,但是GOOGLE,在内地是没有服务器的,一般解析不到的。 阅读全文
摘要:
拨打电话需要的权限为了省事界面都写一起了,有点乱activity_main.xml MainActivity.javapublic class MainActivity extends Activity { private Button btn01=null; private Button btn02=null; private... 阅读全文
摘要:
需要Internet权限,AndroidManifest.xmlactivity_main.xml MainActivity.javapublic class MainActivity extends Activity { private TextView info=null; private Button btn01=null; private static final String strURL="http://192.168.1.2/an... 阅读全文
摘要:
程序需要用到Internet权限,所以需要在AndroidManifest.xml添加MainActivity.javapublic class MainActivity extends Activity { private TextView info=null; private Button Btn01=null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); super.setConten... 阅读全文
摘要:
android.permission.ACCESS_CHECKIN_PROPERTIES 允许读写访问 "properties"表在checkin数据库中,改值可以修改上传( Allows read/write access to the "properties" table inthe checkin database, to change values that get uploaded) android.permission.ACCESS_COARSE_LOCATION 允许一个程序访问CellID或WiFi热点来获取粗略的位置(Allows an 阅读全文