{"id":12704,"date":"2021-12-10T11:06:50","date_gmt":"2021-12-10T11:06:50","guid":{"rendered":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?p=12704"},"modified":"2025-05-30T13:05:28","modified_gmt":"2025-05-30T12:05:28","slug":"how-to-fix-server-error-in-application-when-asp-net-is-not-installed","status":"publish","type":"post","link":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/","title":{"rendered":"How to Fix Server Error in &#8216;\/&#8217; Application when ASP.NET is not Installed?"},"content":{"rendered":"<p>The Server Error in &#8216;\/&#8217; Application will often render your SQL server unusable for the session if ASP.NET is not installed. It will display a message- &#8221; <em>Unable to use SQL Server because either ASP.NET version 2.0 Session State is not installed on the SQL server, or ASP.NET does not have permission to run the dbo.<\/em>&#8221;<\/p>\n<p>It will probably look like this:<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-14414\" src=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2021\/12\/server_err_app_aspnet.png\" alt=\"Server Error in '\/' Application where ASP.NET is not installed on the SQL Server\" width=\"972\" height=\"281\" \/><br \/>\nThis issue can sometimes occur even when you have an advanced ASP.NET version like 4.0. There are a few reasons this error can occur and, we have discussed how to resolve them.<\/p>\n<div id=\"cmd\">\n<div class=\"skrlto-container\">\n<div class=\"skrlto-header-title\">To Fix Server Error in &#8216;\/&#8217; Application Due to<\/div>\n<div class=\"skrlto-links-wrapper\">\n<div class=\"skroll-button\" data-skrolllto=\"1SerErrASPNet\">Session Storing in Database<\/div>\n<div class=\"skroll-button\" data-skrolllto=\"2SerErrASPNet\">Stored Procedures for ASP.NET Session State Mode Error of SQL Server<\/div>\n<div class=\"skroll-button\" data-skrolllto=\"3SerErrASPNet\">Roles Configuration Issue<\/div>\n<\/div>\n<\/div>\n<\/div>\n<h2 id=\"1SerErrASPNet\">Session Storing in Database<\/h2>\n<p>1. <strong>Restart<\/strong> the <em>Wizard<\/em>.<\/p>\n<p>2. Choose the <strong>Remove<\/strong> option to remove all those tables from the database.<\/p>\n<p>As you are probably using the<em> aspnet_regsql.exe<\/em> application, it starts a <strong>Wizard<\/strong> and then goes on to add various <em>aspnet_* tables<\/em> in your database tables.<\/p>\n<p>3. Copy and Run the given command:<\/p>\n<p class=\"lang:default decode:true crayon-selected\">aspnet_regsql.exe -ssadd -d -sstype c -S -U -P<\/p>\n<p>It will add the tables\u00a0<em>ASPStateTempApplications<\/em> and <em>ASPStateTempSessions<\/em> to your database.<\/p>\n<p>Moving on, you have to modify your <em>web.config<\/em> file.<\/p>\n<p>4.\u00a0Copy this configuration:<\/p>\n<p class=\"lang:default decode:true crayon-selected\">&lt;sessionState mode=&#8221;SQLServer&#8221; allowCustomSqlDatabase=&#8221;true&#8221; sqlConnectionString=&#8221;Data Source=Server;Initial Catalog=Database;User ID=UserId;Password=Password&#8221; cookieless=&#8221;false&#8221; timeout=&#8221;20&#8243; \/&gt;<\/p>\n<div class=\"kb-wisdom-wrapr kb-wisdom-bulb kb-wisdom-wrapr-green\">\n<div class=\"kb-wisdom-col kb-wisdom-col-icon\">\n<div class=\"kb-wisdom-icon\">\n<div><\/div>\n<\/div>\n<\/div>\n<div class=\"kb-wisdom-col kb-wisdom-col-content\">\n<p><strong>Note<\/strong>: This solution works only when a user wants to store the session within its applications database. On the other hand, you can run this <a href=\"#cmd\"><em>command<\/em><\/a> without the &#8220;<em>-d<\/em>&#8221; parameter. That is if you want to maintain the session database separately. The server will then create a new <em>ASPState database<\/em> having two tables, as mentioned earlier in the article. Finally, you can specify the name of this new database in your configuration.<\/p>\n<\/div>\n<\/div>\n<h2 id=\"2SerErrASPNet\">Stored Procedures for ASP.NET Session State Mode Error of SQL Server<\/h2>\n<p>When your server session expires automatically within a few minutes, you may have to reconfigure the procedures.<\/p>\n<p>You have to properly set up the stored procedures for the session to work like before.<\/p>\n<p>Run this code:<\/p>\n<p class=\"lang:default decode:true crayon-selected\">C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\aspnet_regsql.exe -S . -E -ssadd -sstype p<\/p>\n<p>The <em>-ssadd<\/em> option will add the necessary support for the\u00a0session state of SQL Server mode.<\/p>\n<h2 id=\"3SerErrASPNet\">Roles Configuration Issue<\/h2>\n<p>The server error in the &#8216;\/&#8217; application may occur after the user successfully installs the ASP.NET Session State and later tries to lock down the permissions of the SQL Server.<\/p>\n<p>You need to carefully configure the new roles and then assign permissions to them.<\/p>\n<p>Here&#8217;s a code that may help you with it:<\/p>\n<p class=\"lang:default decode:true crayon-selected\">CREATE FUNCTION [dbo].[fnGenerateNewTDBWebUserRole] ( @rolename SYSNAME ) RETURNS @ReturnTable TABLE ( ID INT IDENTITY(1,1), FieldValue NVARCHAR(4000) ) AS BEGIN DECLARE @bUserTables BIT DECLARE @bTVF BIT &#8212; TABLE VALUED FUNCTIONS DECLARE @Execute NVARCHAR(4000) INSERT INTO @ReturnTable SELECT &#8216;DROP ROLE &#8216; + @rolename INSERT INTO @ReturnTable SELECT &#8216;GO&#8217; INSERT INTO @ReturnTable SELECT &#8216;CREATE ROLE &#8216; + @rolename INSERT INTO @ReturnTable SELECT &#8216;GO&#8217; &#8212; Database statement permissions INSERT INTO @ReturnTable SELECT &#8216;DENY CREATE DEFAULT, CREATE PROCEDURE, CREATE RULE, CREATE TABLE, CREATE VIEW, BACKUP DATABASE, BACKUP LOG TO &#8216; + @rolename &#8212; Try to lock off the systables &#8211;INSERT INTO @TempTable &#8211;SELECT &#8216;DENY SELECT, VIEW DEFINITION, UPDATE ON sys.&#8217; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.sys_objects &#8211;WHERE type = &#8216;S&#8217; &#8212; USER TABLES AND INLINE FUNCTIONS INSERT INTO @ReturnTable SELECT &#8216;DENY ALTER, CONTROL, DELETE, INSERT, REFERENCES, SELECT, TAKE OWNERSHIP, UPDATE, VIEW DEFINITION ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE (type = &#8216;U&#8217; OR type = &#8216;IF&#8217;) AND name NOT LIKE &#8216;aspnet_%&#8217; AND name NOT LIKE &#8216;ASPStateTemp%&#8217; &#8212; STORED PROCS INSERT INTO @ReturnTable SELECT &#8216;DENY VIEW DEFINITION, ALTER, TAKE OWNERSHIP ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE type = &#8216;P&#8217; AND name &lt;&gt; &#8216;TempGetVersion&#8217; &#8212; Now need to grant VIEW DEFINITION access to TempGetVersion for &#8212; the session state server to work INSERT INTO @ReturnTable SELECT &#8216;DENY ALTER, TAKE OWNERSHIP ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE type = &#8216;P&#8217; AND name = &#8216;TempGetVersion&#8217; INSERT INTO @ReturnTable SELECT &#8216;GRANT VIEW DEFINITION ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE type = &#8216;P&#8217; AND name = &#8216;TempGetVersion&#8217; INSERT INTO @ReturnTable SELECT &#8216;GRANT EXECUTE ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE type = &#8216;P&#8217; INSERT INTO @ReturnTable SELECT &#8216;DENY EXECUTE ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE type = &#8216;P&#8217; &#8212; VIEWS INSERT INTO @ReturnTable SELECT &#8216;DENY ALTER, TAKE OWNERSHIP, VIEW DEFINITION, INSERT, UPDATE, DELETE, REFERENCES ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE type = &#8216;V&#8217; AND name NOT LIKE &#8216;vw_aspnet_%&#8217; INSERT INTO @ReturnTable SELECT &#8216;GRANT SELECT ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE type = &#8216;V&#8217; AND name NOT LIKE &#8216;vw_aspnet_%&#8217; &#8212; TABLE VALUED FUNCTIONS INSERT INTO @ReturnTable SELECT &#8216;DENY ALTER, CONTROL, REFERENCES, SELECT, TAKE OWNERSHIP, VIEW DEFINITION ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE type = &#8216;TF&#8217; &#8212; SCALAR FUNCTIONS INSERT INTO @ReturnTable SELECT &#8216;DENY ALTER, CONTROL, REFERENCES, EXECUTE, TAKE OWNERSHIP, VIEW DEFINITION ON &#8216; + QUOTENAME(name) + &#8216; TO &#8216; + @rolename FROM sys.objects WHERE type = &#8216;FN&#8217; INSERT INTO @ReturnTable SELECT &#8216;GO&#8217; &#8211;SELECT * FROM @TempTable ORDER BY ID RETURN END<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Server Error in &#8216;\/&#8217; Application will often render your SQL server unusable for the session if ASP.NET is not installed. It will display a message- &#8221; Unable to use SQL Server because either ASP.NET version 2.0 Session State is not installed on the SQL server, or ASP.NET does not have permission to run the [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[41,1863],"tags":[1792,2788,2787,979,1882,2789,1846],"class_list":["post-12704","post","type-post","status-publish","format-standard","placeholder-for-hentry","category-howtos","category-windows-server","tag-asp-net","tag-server-error","tag-server-error-application-asp-net","tag-sql","tag-sql-server","tag-sql-server-errors","tag-windows-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Fix Server Error in &#039;\/&#039; Application when ASP.NET is not Installed?<\/title>\n<meta name=\"description\" content=\"Click on this link to know how you can fix the Server Error in &#039;\/&#039; Application when you&#039;re unable to use SQL Server because of ASP.NET Session State.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix Server Error in &#039;\/&#039; Application when ASP.NET is not Installed?\" \/>\n<meta property=\"og:description\" content=\"Click on this link to know how you can fix the Server Error in &#039;\/&#039; Application when you&#039;re unable to use SQL Server because of ASP.NET Session State.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-10T11:06:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-30T12:05:28+00:00\" \/>\n<meta name=\"author\" content=\"Prasad Khartadkar\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prasad Khartadkar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/\",\"name\":\"How to Fix Server Error in '\/' Application when ASP.NET is not Installed?\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2021\/12\/server_err_app_aspnet.png\",\"datePublished\":\"2021-12-10T11:06:50+00:00\",\"dateModified\":\"2025-05-30T12:05:28+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/c9138a9488172a8d0aa2d4f40878d83e\"},\"description\":\"Click on this link to know how you can fix the Server Error in '\/' Application when you're unable to use SQL Server because of ASP.NET Session State.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#primaryimage\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2021\/12\/server_err_app_aspnet.png\",\"contentUrl\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2021\/12\/server_err_app_aspnet.png\",\"width\":972,\"height\":281},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix Server Error in &#8216;\/&#8217; Application when ASP.NET is not Installed?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/c9138a9488172a8d0aa2d4f40878d83e\",\"name\":\"Prasad Khartadkar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fafb102a39aa8f8d38a11f3e2dcfa746?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fafb102a39aa8f8d38a11f3e2dcfa746?s=96&d=blank&r=g\",\"caption\":\"Prasad Khartadkar\"},\"description\":\"Prasad is a business grad specialized in Marketing. He has garnered experience as a technical content writer and a digital marketer that he brings out in his work. He likes reading classics and travel in his free time.\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/prasad-khartadkar\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Fix Server Error in '\/' Application when ASP.NET is not Installed?","description":"Click on this link to know how you can fix the Server Error in '\/' Application when you're unable to use SQL Server because of ASP.NET Session State.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/","og_locale":"en_GB","og_type":"article","og_title":"How to Fix Server Error in '\/' Application when ASP.NET is not Installed?","og_description":"Click on this link to know how you can fix the Server Error in '\/' Application when you're unable to use SQL Server because of ASP.NET Session State.","og_url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2021-12-10T11:06:50+00:00","article_modified_time":"2025-05-30T12:05:28+00:00","author":"Prasad Khartadkar","twitter_misc":{"Written by":"Prasad Khartadkar","Estimated reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/","name":"How to Fix Server Error in '\/' Application when ASP.NET is not Installed?","isPartOf":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#primaryimage"},"image":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2021\/12\/server_err_app_aspnet.png","datePublished":"2021-12-10T11:06:50+00:00","dateModified":"2025-05-30T12:05:28+00:00","author":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/c9138a9488172a8d0aa2d4f40878d83e"},"description":"Click on this link to know how you can fix the Server Error in '\/' Application when you're unable to use SQL Server because of ASP.NET Session State.","breadcrumb":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#primaryimage","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2021\/12\/server_err_app_aspnet.png","contentUrl":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2021\/12\/server_err_app_aspnet.png","width":972,"height":281},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/how-to-fix-server-error-in-application-when-asp-net-is-not-installed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"How to Fix Server Error in &#8216;\/&#8217; Application when ASP.NET is not Installed?"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/c9138a9488172a8d0aa2d4f40878d83e","name":"Prasad Khartadkar","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fafb102a39aa8f8d38a11f3e2dcfa746?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fafb102a39aa8f8d38a11f3e2dcfa746?s=96&d=blank&r=g","caption":"Prasad Khartadkar"},"description":"Prasad is a business grad specialized in Marketing. He has garnered experience as a technical content writer and a digital marketer that he brings out in his work. He likes reading classics and travel in his free time.","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/prasad-khartadkar\/"}]}},"views":336,"_links":{"self":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/12704","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/users\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=12704"}],"version-history":[{"count":3,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/12704\/revisions"}],"predecessor-version":[{"id":14745,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/12704\/revisions\/14745"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=12704"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=12704"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=12704"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}