ASP.NET Web Pages - More Helpers
ASP.NET Helpers - Object Reference Manual
Analytics Object Reference Manual (Google)
Helper | Description |
---|---|
Analytics.GetGoogleHtml(webPropertyId) | Renders the Google Analytics JavaScript code for the specified ID. |
Analytics.GetStatCounterHtml(project, security) | Renders the StatCounter Analytics JavaScript code for the specified project. |
Analytics.GetYahooHtml(account) | Renders the Yahoo Analytics JavaScript code for the specified account. |
Bing Object Reference Manual
Helper | Description |
---|---|
Bing.SearchBox([boxWidth]) | Passes the search to Bing. You can set the Bing.SiteUrl and Bing.SiteTitle properties to specify site search and the title of the search box, typically set in the _AppStart page. |
Bing.AdvancedSearchBox([, boxWidth][, resultWidth][, resultHeight][, themeColor][, locale]) | Displays Bing search results on the page with optional formatting. You can set the Bing.SiteUrl and Bing.SiteTitle properties to specify site search and the title of the search box, typically set in the _AppStart page. |
Chart Object Reference Manual
Helper | Description |
---|---|
Chart(width, height[, template][, templatePath]) | Initializes the chart. |
Chart.AddLegend([title][, name]) | Adds a legend to the chart. |
Chart.AddSeries([name][, chartType][, chartArea][, axisLabel][, legend][, markerStep][, xValue][, xField][, yValues][, yFields][, options]) | Adds a series of data to the chart. |
Crypto Object Reference Manual
Helper | Description |
---|---|
Crypto.Hash(string[, algorithm]) Crypto.Hash(bytes[, algorithm]) | Returns the hash of the specified data. The default algorithm is sha256. |
Facebook Object Reference Manual
Helper | Description |
---|---|
Facebook.LikeButton(href[, buttonLayout][, showFaces][, width][, height][, action][, font][, colorScheme][, refLabel]) | Allows Facebook users to connect to the page. |
FileUpload Object Reference Manual
Helper | Description |
---|---|
FileUpload.GetHtml([initialNumberOfFiles][, allowMoreFilesToBeAdded][, includeFormTag][, addText][, uploadText]) | Renders the UI for uploading files. |
GamerCard Object Reference Manual
Helper | Description |
---|---|
GamerCard.GetHtml(gamerTag) | Renders the specified Xbox gamer tag. |
Gravatar Object Reference Manual
Helper | Description |
---|---|
Gravatar.GetHtml(email[, imageSize][, defaultImage][, rating][, imageExtension][, attributes]) | Renders the Gravatar image for the specified email address. |
Json Object Reference Manual
Helper | Description |
---|---|
Json.Encode(object) | Converts a data object to a string using JavaScript Object Notation (JSON). |
Json.Decode(string) | Converts the JSON-encoded input string to the specified data object. |
LinkShare Object Reference Manual
Helper | Description |
---|---|
LinkShare.GetHtml(pageTitle[, pageLinkBack][, twitterUserName][, additionalTweetText][, linkSites]) | Renders social network links with the specified title and optional URL. |
ModelState Object Reference Manual
Helper | Description |
---|---|
ModelStateDictionary.AddError(key, errorMessage) | Associates an error message with a form field. Access members using the ModelState helper. |
ModelStateDictionary.AddFormError(errorMessage) | Associates an error message with a form. Access members using the ModelState helper. |
ModelStateDictionary.IsValid | Returns true if there are no validation errors. Access members using the ModelState helper. |
ObjectInfo Object Reference Manual
Helper | Description |
---|---|
ObjectInfo.Print(value[, depth][, enumerationLength]) | Renders the properties and values of an object and all its child objects. |
Recaptcha Object Reference Manual
Helper | Description |
---|---|
Recaptcha.GetHtml([, publicKey][, theme][, language][, tabIndex]) | Renders the reCAPTCHA verification test. |
ReCaptcha.PublicKey ReCaptcha.PrivateKey | Sets the public and private keys for the reCAPTCHA service. Typically set in the _AppStart page. |
ReCaptcha.Validate([, privateKey]) | Returns the result of the reCAPTCHA test. |
ServerInfo.GetHtml() | Renders status information about ASP.NET Web Pages. |
Twitter Object Reference Manual
Helper | Description |
---|---|
Twitter.Profile(twitterUserName) | Renders the Twitter stream for the specified user. |
Twitter.Search(searchQuery) | Renders the Twitter stream for the specified search text. |
Video Object Reference Manual
Helper | Description |
---|---|
Video.Flash(filename[, width, height]) | Renders a Flash video player for the specified file with optional width and height. |
Video.MediaPlayer(filename[, width, height]) | Renders a Windows Media Player for the specified file with optional width and height. |
Video.Silverlight(filename, width, height) | Renders a Silverlight player for the specified .xap file with the required width and height. |
WebCache Object Reference Manual
Helper | Description |
---|---|
WebCache.Get(key) | Returns the specified object by key, or null if the object is not found. |
WebCache.Remove(key) | Removes the specified object from the cache by key. |
WebCache.Set(key, value[, minutesToCache][, slidingExpiration]) | Places the value into the cache with the specified key name. |
WebGrid Object Reference Manual
Helper | Description |
---|---|
WebGrid(data) | Creates a new WebGrid object using query data. |
WebGrid.GetHtml() | Renders markup to display data in an HTML table. |
WebGrid.Pager() | Renders a pager for the WebGrid object. |
WebImage Object Reference Manual
Helper | Description |
---|---|
WebImage(path) | Loads an image from the specified path. |
WebImage.AddImagesWatermark(image) | Adds a watermark to the specified image. |
WebImage.AddTextWatermark(text) | Adds specified text to the image. |
WebImage.FlipHorizontal() WebImage.FlipVertical() | Flips the image horizontally/vertically. |
WebImage.GetImageFromRequest() | Loads an image when it is uploaded to a file upload page. |
WebImage.Resize(width, height) | Resizes the image. |
WebImage.RotateLeft() WebImage.RotateRight() | Rotates the image to the left or right. |
WebImage.Save(path[, imageFormat]) | Saves the image to the specified path. |