Visual Basic .NET » ASP.NET General Discussion
Display SubCategory By AJAX
If your subcategories wouldn't change frequently you may use just JS to show it. When you create a categories, add subcategories and set display style property to none ( smth.Attributes.Add("display", "none");) and on the client side on click show'em all : (document.getElementById('subcategoryID').style.display='inline';) and this is all you need.
AjaxPro.JavaScriptSerializer.Serialize
Hi, you can serialize any IList object, but deserialization is only working if the __type property is used for internal objects to know which data type to use because it is "object" by default. See ). Regards, Michael On 7/7/06, Jon Ceanfaglione wrote: Does this support serializing an IList interface? Or, does the list have to be Typed using generics? > -- Best regards | Sch鰊
HttpCompressionModule not working?
Any ideas on this? I just upgraded to version 6.7.11.1, I've got the HttpCompressionModule set up correctly in the web.config, the browser is sending the correct Accept-Encoding headers, but according to Fiddler, the Ajax response is still not being compressed... <add name="HttpCompressionModule" type="AjaxPro.HttpCompressionModule,AjaxPro.2"/>
AjaxPro and NHibernate Problems
UPDATE... Ok, I first thought the problem might be that .NET couldn't serialize the object correctly and thus AjaxPro was having issues. b/c once nhibernate creates the object that should be it, no interference with AjaxPro - doesn;t make sense that NHibernate would cause a problem. So, I created a simple web service to return the object, and no that was not the issue. .NET returned the correct
bind dataGrid using AJAX
Thank you. I will test it soon. Calle
AJAX Web Applications and Time Zones
Personally, I'd prefer to get the date object in the exact format it is in the database. As I said before, if a have an application that needs strict localization, I would then just store the date as GMT and do whatever conversion I need at runtime using the time-zone offset. On 7/7/06, Michael Schwarz wrote: Hi, all web browsers have currently the time zone in their Date object, so it
Javascript error
Hi, can you log the requests using Ethereal or Fiddler? Regards, Michael On 7/7/06, palli wrote: Hi Im using ajaxpro.dll version 5.11.4.2 in my VS2003 project. On some computers I keep getting the same javascript error - Expected ']' All are running explorer 6.0 and with windows XP. Do you have any idea why this may happen? Regards Palli > -- Best regards | Sch鰊e Gre Mi
AJAX test with ASP.NET
Hi, ok, I solved the issue with the following code, and it works! ====== .aspx file ... Insert a word ====== script function strToUppercase() { var textBox = document.getElementById('TE_Word'); Matteo.Web.AtlasMusicArchiver.Admin.Prova.StrToUppercase(textBox.value,strToUppercase_callback); } function strToUppercase_callback(
Downloading file from server using AJAX.
have u tried a real frame instead of an iframe?
Problems with Firefox and Safari. Also, what's up with the $
I'm using 6.7.2.1. Thanks again for the help. Michael Schwarz wrote: Which version are you using?
Problems with Firefox and Safari. Also, what's up with the $
if (document.all) { vTomato = document.all; vPotato = document.all; vSpacesuit = document.all; } else if (document.getElementById) { vTomato = document.getElementById("tomato"); vPotato = document.getElementById("potato"); vSpacesuit = document.getElementById("spaceSuit"); }
Using NHIbernate
I kinda figured that. I am trying to avoid setting Lazy Loading to false. Joseph Guadagno
Problem in Filling the Dropdown box from the Collection
Hi all, I have the problem in filling the dropdownlist box using the collection and ajax my server code will return the collection which i need to bind to the dropdownlist box using Ajax how can achieve this can any one provide me a example it will help full to me... Thanks in Advance -- Kiran R Kawalli mob no:9880281339
Session variables
Use System.Web.HttpContext.Current.Session. Regards, Michael On 7/6/06, gregg.chaney wrote: I have a method that uses session variables: When I make the call to the get the value the method immediately returns without executing any further. I noticed that if I use them inline they work : ex service.getSomeStuff(UseScaleWeight); What am I missing? private const string useScaleWe
Problem with Studio built-in web server
I am having recurring problems running the Ajax Library under the built-in web server that VS uses. I get the following error in my browser: Expected ';' This is the error I get in fiddler: null; r.error = {"Message":"Type is not resolved for member ' SomeNamespace.Security.SecurityPrincipal,SomeNamespace.Security, Version= 1.0.0.0, Culture=neutral, PublicKeyToken=null'.","Type":" System.Runtim
Timeout
Hello, I have figured it out; To the end of the page (any place after the inclusion of core.ashx) place the script; AjaxPro.timeoutPeriod = 10 * 1000; AjaxPro.onTimeout = handleTimeout; function handleTimeout() { alert("A timeout occured"); }
Invalid cast in the error.Message
I found that if I just create a simple class and do the same thing, it works, so the problem is only when trying to register the usercontrol as the type in the RegisterTypeForAjax method.
Paging in Datalist or Repeater
I think it's not possible to do this. You should use other solutions like creating a data table with data you need on this page and sending it to client side and work with it any way you want by JS.
hello
hi, hru? iam fine. wat's ur full name Thanks Ragavan On 7/6/06, shaofei8989 wrote: I don't know ? 你 不 想 试 试 今 夏 最 "酷" 的 邮 箱 吗 ? 蕴 涵 中 华 传 统 文 化 于 世 界 一 流 科 技 之 中,创 新 Ajax 技 术,126 "D 计 划"火 热 体 验 中 ! >
Angry, frustrated, about to give up. Has anyone gotten AJAX
I have posted the documentation I created within this group, . It is also available on my web site . As the post mentions, if any one wants to comment or modify they can and I will incorporate the comments. Joseph Guadagno
Angry, frustrated, about to give up. Has anyone gotten AJAX
One thing I see is that you should be calling your server methods using " TryThis.GetString()" since that is the namespace you gave it. Have you downloaded fiddler yet? . Finally, where is your .cs file located? Should be in "AppCode"... The library is a cinch to get running and using, we'll get it straight for you. On 7/5/06, Jeremy wrote: Hello all, I'm having a very difficult time g
Angry, frustrated, about to give up. Has anyone gotten AJAX
Hi, you cannot use document.write, use something like document.getElementById(...) and the .innerHTML property. Or replace you document.write statement with an alert and you are fine. If you are using AjaxPro you have to write JavaScript code. You have to do this every time you want to write great web sites! Regards, Michael On 7/5/06, Jeremy wrote: Hello all, I'm having a very difficult
Cache logics of the classes: EmbeddedJavaScriptHandler and C
I will have look on this... thank you for your feedback. Regards, Michael On 7/3/06, 鐮村疂 wrote: When you rebuild the ASP.NET project, or modify the web.config file, the web application will be restarted automatically. So the original cache will be cleared automatically. We only have to save the CacheInfo when the first user comes (that's: Cache == null). The user comes after the web
Urgent.. ASP and Office Web components
hang in there Saps
Angry, frustrated, about to give up. Has anyone gotten AJAX
Hello all, I'm having a very difficult time getting started with AJAX .NET, and I'm about to give up. I've read both Joseph Guadagno's documentation material as well as the "Quick Guide" written by the author of the AJAX .NET library. Neither have been a whole lot of help. I can see from some of the questions in this group that others have found a way to create apps with AJAX .NET. For the l
Web Service for BSE or Bullion Market
Hi... I would like to know about any web service (Paid/Unpaid) which shows real-time data for stock quotes from Bombay Stock Exchange (BSE) or Indian Bullion Market. Thanks and Regards Harry
Create e-mail ID dynamically
Thanks David, I would like to research in this particular topic, If i need assistance I would surely like to disturb you :) Thanks and Regards Harry
Session timeout problems
Is not a particular example... to all Aj request function i got the error in core.ash after the session expire (not when i close manualy ). Client Side function GetTopMenu() { ShowTransferStatus(); EHRMS.PrPage.GetTopMenu(true,GetTopMenu_callBack); } // after i run the EHRMS.PrPage.GetTopMenu // i got the error // if i don't put a calback functi
Starter Kit updated
Hi, I have updated the source code at /, there is no updated release version, yet. Regards, Michael -- Best regards | Sch鰊e Gre Michael Microsoft MVP - Most Valuable Professional Microsoft MCAD - Certified Application Developer / / mailto:info
Serializing Objects as JavaScript using Atlas and AjaxPro
I read the post from Scott Hanselman today comparing the internal use of JSON de-/serializer from the Atlas framework and Ajax.NET Professional. Scott writes that Ajax.NET Professional cannot serialize the Person object correct to JSON and back. This is wrong if you only use the serializer and deserializer. The JSON serializer in Ajax.NET Professional is working different, it will create a JSON
Capture Browser Event in Asp.Net
(if disablign the back button was ur intention)
Dynamically change the Flat File Sink file name in the MS Lo
Hi Sorry to those that might have already read this at microsoft . public . dotnet . languages . csharp - no reponse there. I have been having a bit of a look at the Microsoft Logging Application Block (using .NET 1.1). I found it easy to get going, but now have struck a bit of a brick wall. I want to dynamically change the flat file location so that on a pre-defined condition (date changes
iCatalogSuite, Visit http://www.tierrarc.com 100% AJAX (beta
iCatalogSuite is an open source project that uses the scheme of virtual catalogs (ecommerce) for show catalog of products with a Web based GUI. I磎 working with AJAX library of Michael Schwarz, ICatalogSuite is beta but every day it grows. I invite you to visit and give all your comments in order to colaborate with this project and of course with the AJAX library. Everybody in invited. Thank
Catch any exceptions
Yes, if you throw an exception it will be available in res.error. This objext will have a .Type and .Message property. Regards, Michael On 7/4/06, DSHI wrote: Hi Michael, I am not sure how you implemented the transfer of Exceptions from server to client. If I throw any exception in server, does the exception always show up in 'result.error'? Or how can I implement exception in server si
Security Permission
DSHI schrieb: If I don't use the Role, is there any easy way to see whether the current session user has been authenticated using your Security Permission attribute? This is not realy a Ajax Feature, is a feature from the ASP.NET Framework. If you need the Informationen about the authentication status of the current user on the client, you have to deliver this information to then client.
Missing inheritance for DataTable
Fabian Luque schrieb: and the Starter Kit only have AjaxPro2.dll (.NET 2.0), so I can't test it. Extract the Data from the Starterkit delete AjaxPro2.dll insert AjaxPro.dll, setup a web run the Starterkit, should work. Let me know if you need any help. -- Freundliche Gre Albert Weinert
Join me on smutvibes.com
Hi , Your friends are in the SmutVibes.com network and would like you to join them! Click the following link and you will immediately be connected to the people who have invited you, and others in their networks! Thanks, SmutVibes.com
Google Groups: Ihre Bewerbung wurde angenommen
Hallo aspnet Ihre Bewerbung bei Ajax.NET Professional wurde angenommen! Wenn Sie Fragen zu dieser oder einer anderen Google-Gruppe haben, besuchen Sie das Hilfecenter unter . Vielen Dank Ihr Google Groups-Team
Discussion abot DataGrid
Go through this link - beginer...

[Page 1] [Page 2] [Page 3] [Page 4] [Page 5]
Home