Click here to Skip to main content
15,913,773 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Tabs control - Ajax Control Toolkit Pin
eyeseetee10-Apr-08 1:23
eyeseetee10-Apr-08 1:23 
GeneralRe: Tabs control - Ajax Control Toolkit Pin
kontax10-Apr-08 5:05
kontax10-Apr-08 5:05 
GeneralRe: Tabs control - Ajax Control Toolkit Pin
Jesse Squire10-Apr-08 2:30
Jesse Squire10-Apr-08 2:30 
GeneralRe: Tabs control - Ajax Control Toolkit Pin
kontax10-Apr-08 5:04
kontax10-Apr-08 5:04 
GeneralRe: Tabs control - Ajax Control Toolkit Pin
Jesse Squire10-Apr-08 5:20
Jesse Squire10-Apr-08 5:20 
GeneralRe: Tabs control - Ajax Control Toolkit Pin
kontax10-Apr-08 12:13
kontax10-Apr-08 12:13 
QuestionGridView Pin
Vijayitsb9-Apr-08 23:46
Vijayitsb9-Apr-08 23:46 
GeneralRe: GridView Pin
Amit Agarrwal10-Apr-08 0:23
Amit Agarrwal10-Apr-08 0:23 
GeneralRe: GridView Pin
Soumini Ramakrishnan10-Apr-08 0:51
Soumini Ramakrishnan10-Apr-08 0:51 
GeneralRe: GridView Pin
Vijayitsb10-Apr-08 1:23
Vijayitsb10-Apr-08 1:23 
GeneralQuestion Pin
nithydurai9-Apr-08 23:41
nithydurai9-Apr-08 23:41 
GeneralRe: Question Pin
bigphish9-Apr-08 23:59
bigphish9-Apr-08 23:59 
GeneralRe: Question Pin
eyeseetee9-Apr-08 23:59
eyeseetee9-Apr-08 23:59 
GeneralRe: Question [modified] Pin
Darsh_310-Apr-08 8:27
Darsh_310-Apr-08 8:27 
Questionhow to redirect in to a perticular panel Pin
bigphish9-Apr-08 23:21
bigphish9-Apr-08 23:21 
AnswerRe: how to redirect in to a perticular panel Pin
Jesse Squire10-Apr-08 2:50
Jesse Squire10-Apr-08 2:50 
GeneralRe: how to redirect in to a perticular panel Pin
bigphish10-Apr-08 23:53
bigphish10-Apr-08 23:53 
GeneralQuestion Pin
nithydurai9-Apr-08 22:40
nithydurai9-Apr-08 22:40 
GeneralRe: Question Pin
eyeseetee9-Apr-08 22:47
eyeseetee9-Apr-08 22:47 
General[Message Deleted] Pin
Deepak Nigam9-Apr-08 22:29
Deepak Nigam9-Apr-08 22:29 
GeneralRe: dropdown can not be selected Pin
eyeseetee9-Apr-08 22:32
eyeseetee9-Apr-08 22:32 
QuestionRegarding menu dynamic generation in asp.net Pin
vijay kanth9-Apr-08 22:25
vijay kanth9-Apr-08 22:25 
GeneralRe: Regarding menu dynamic generation in asp.net Pin
N a v a n e e t h9-Apr-08 22:31
N a v a n e e t h9-Apr-08 22:31 
QuestionCould not load the assembly "Microsoft.Web.Preview" in Ajax, please somebody help me ? Pin
RichardBlare9-Apr-08 22:11
RichardBlare9-Apr-08 22:11 
AnswerRe: Could not load the assembly "Microsoft.Web.Preview" in Ajax, please somebody help me ? Pin
Pankaj Shrama13-Jul-08 1:08
Pankaj Shrama13-Jul-08 1:08 
Hi!

In order to resolve this Exception follow the below mentioned steps

1. Download and install the ASP.NET 2.0 AJAX Futures January CTP from http://www.microsoft.com/downloads/details.aspx?FamilyID=4CB52EA3-9548-4064-8137-09B96AF97617&displaylang=en

2. Make sure that there’s a reference in your web project to the Microsoft.Web.Preview dll that gets installed (under C:\Program Files\Microsoft ASP.NET\ ASP.NET 2.0 AJAX Futures January CTP\v1.0.61025)

This will solve your Problem definetley.

3. Update the project’s Web.config file so that it contains the following entries

<system.web.extensions>
<scripting>
<webServices>

<jsonSerialization>

<converters>

<add name="DataSetConverter" type="Microsoft.Web.Preview.Script.Serialization.Converters.DataSetConverter, Microsoft.Web.Preview"/>

<add name="DataRowConverter" type="Microsoft.Web.Preview.Script.Serialization.Converters.DataRowConverter, Microsoft.Web.Preview"/>

<add name="DataTableConverter" type="Microsoft.Web.Preview.Script.Serialization.Converters.DataTableConverter, Microsoft.Web.Preview"/>
</converters>

</jsonSerialization>

</webServices>

</scripting>

</system.web.extensions>

Smile | :) Hope this will solve your problem.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.