Guest User

Untitled

a guest
May 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1.  
  2. <configuration>
  3. <system.webServer>
  4. <security>
  5. <requestFiltering>
  6. <hiddenSegments>
  7. <add segment="App_Code"/>
  8. </hiddenSegments>
  9. </requestFiltering>
  10. </security>
  11. </system.webServer>
  12. </configuration>
  13.  
  14. <!DOCTYPE html>
  15.  
  16. <html lang="en">
  17. <head>
  18. <meta charset="utf-8" />
  19. <title></title>
  20. </head>
  21. <body>
  22. @WeatherFunc.Hola()
  23. </br>
  24. </br>
  25. @WeatherFunc.GetCoordinatesAndXML("98052")
  26. </br>
  27. </br>
  28. @WeatherFunc.GetCoordinates("98052")
  29. </br>
  30. </br>
  31. @WeatherFunc.GetWeatherAndXML("47.6801,-122.121")
  32. </br>
  33. </br>
  34. @{
  35. var temp = WeatherFunc.GetWeather("98052");
  36. }
  37. <ol>
  38. <li>Zip code: @temp.Zip</li>
  39. <li>High: @temp.MaxTemp</li>
  40. <li>Low: @temp.MinTemp</li>
  41. <li>Forecast: @temp.Forecast</li>
  42. <li>Longitude: @temp.Longitude</li>
  43. <li>Latitude: @temp.Latitude</li>
  44. </ol>
  45. </body>
  46. </html>
Add Comment
Please, Sign In to add comment