Visual Basic .NET » ASP.NET General Discussion
Ajax.NET and Infragistics WebCombo
Req DBA/TestAnal/SwEngg/DEO/BPO/J2EE/OracleCosnt/FinMgr/ITMg
Client side validation on web page
http to http pages and vice versa
DataGrid right border disappears when hiding a column
Problems with Array
Missing callback with long string
Newbie, I am having some trouble with an apparently simple r
There is a starter kit available at , I believe that there is a book coming out on the subject in August. Joseph Guadagno
Newbie, I am having some trouble with an apparently simple r
hi every one. I am new one in Ajaxpro. and my company is using this. even i got a project in this with the use of Active Widgets. So, any one please write me any book of AjaxPro with server side in .NET. Awiting for your response. Thanks in Advance... -- Keep in touch always with luv bye-bye -prabhat
Error on line 369 of core.ashx
I'm getting a inconsistent, but yet frequent error. It appears to be coming out of core.ashx, as it is the only js type file I have in my page with 369+ lines. The error is "Permission Denied" and appears to comes from this line: xmlHttp.setRequestHeader..... (first occurance of accessing the setRequestHeader) Has anyone else gotten this? I'm on XP SP2, and it hasn't always been ha
DataViewConverter Problem
I have Problem with DataViewConverter that had been provided by AjaxPro public override string Serialize(object o) { if(!(o is DataView)) throw new NotSupportedException(); DataView dv = (DataView)o; DataTableConverter dtc = new DataTableConverter(); return dtc.Serialize(dv.Table); } public override string Serialize(object o) { if(!(o is DataTable)) throw new
Rendering of Autocomplete in IE vs. FF
Gentlemen, dear Michael we are very happy with the Autocomplete Example - it works nearly perfect. Respect for that work tugh it is just an example ! However we encounter following effect that we canot explain yet. If you wrap your example in your Autocomplete.aspx Page into a HTML Fliedset Tag and a Table then the vertical position offeset in IE6 is not rendered correct. In FF it is rendered
How can I save any data on the server that I may collect on
All you need to send the ds1 to an ASP.NET method that accepts a DataSet as a parameter. There is an example on my site at as well as a quick start guide. Joseph Guadagno sirkhanh wrote: First I create a new dataset from client : <Client side> <script type=text/javascript> var ds1 = new Ajax.Web.DataSet(); var dt = new Ajax.Web.DataTable(); dt.addColumn("
URL Rewriting and Ajax Pro
j_m_g_p schrieb: To improve my app I did a URL Rewriting to get rid off the ugly query Then the problems began.... NOOOOO, my AJAX not working anymore, what the heck???? ERROR 404, the ashx files cannot be found. I start to curse my backup software who had corrupted my source files, dlls and more.... If you do a rewriting of urls, you must not rewrite urls with /ajaxpro/ in the Url. For
content-type not displayed properly with asian characters
My code fetches a list of countries, depending on the user settings the stored procedure returns the correct translations. The problem is that for Japanese and Chinese, the text is not displayed in the language, but as weird characters like ƒuƒ‰ƒWƒ‹ This is my code: function getDivision(parentParam){ var dsN = MyBusiness._default.getDivision(parentParam,languagecode).value; if(dsN != null &
IIS compiler problem with AjaxPro
Joseph Guadagno skrev: Try restarting IIS and then clearing out the temporary ASP.NET files. We have restartet IIS several times - I'll try cleaning out the temporary folder.
Which url for XmlHttpRequest()?
Have a look at Firebug / an excelent firefox extension that show XmlHttpRequests, Javascript errors and warnings, debugs javascript... etc... a must hav extension for developers
Suhas invites you to join Zorpia
Hi ! Your friend Suhas from India, just invited you to his/her online photo albums and journals at Zorpia.com. So what is Zorpia? It is an online community that allows you to upload unlimited amount of photos, write journals and make friends. We also have a variety of skins in store for you so that you can customize your homepage freely. Join now for free! Please click the following link
Atom feeds with Ajaxpro.net
I am using Ajaxpro to get RSS feeds via the following VB.net code Dim doc As New XmlDocument doc.Load(URL) Return AjaxPro.JavaScriptUtil.GetIJavaScriptObjectFromXmlNode(doc.DocumentElemen t) It works very well. With an Atom feed (from Blogger) I thought it would just be a matter of changing the names of the XML elements in the Javascript that processes the returned data but there is somethi
Free Online Ajax Couse and Discussion Forum
Hi All, Here is the free online couse for those who interest abt Ajax. and If you have any question, please register in our Forum (" ") to ask any question related to Ajax... *10-Week Free AJAX Programming (with Passion!) Online Course* </> *Start Date: The 1st session will start from August 4th, 2006.* *Prerequisites.* * 1 month Java programming experience. * 1 month
How can I save any data on the server that I may collect on
First I create a new dataset from client : <Client side> <script type=text/javascript> var ds1 = new Ajax.Web.DataSet(); var dt = new Ajax.Web.DataTable(); dt.addColumn("FirstName", "System.String"); dt.addColumn("Age", "System.Int32"); dt.addRow({"FirstName":"Michael","Age":28}); dt.addRo
DataSet - Tables problem!
_dal and _channelId....are those private variables? I ask because I don't see a declaration, and I don't think you have access to those variables I could definatelly be wrong, I've never tried. But I know there is no page lifecycle... I'm just throwing some ideas out. If it's working on your dev machine then it is probably not your code. Time to look at the differences in configuration and w
Error Status: 12019
Ok I found another issue and it looks to be a bug. I was getting back This error message when using AOL 9.0: Message: Ok Type: ConnectFailure Status: 200 But the above error shouldn't be an error so I checked the core.js file and found that the 'OK' response it looks for is case sensitive in line 302 of core.js: if(this.xmlHttp.status == 200 && this.xmlHttp.statusText == "OK"
Pgae is getting loaded slowely because of .gif images in my
Thanks a lot for the response David.... But the problem is I am retriving the Images from the backend and binding it to the gridview in the aspx page.... Can you please tel me how can I do the binding of the Images through the javascript function. It would be of great help. Thanks davidj wrote: Load images via javascript function. Have images load from onload command of body tag. This way the
NameValueCollection setValue(key, value) Error AjaxPro 6.7.2
Even add(key,value) works fine
ng prob.
Hi, The blow code only declare a function been callback when dataset onloading, not call it. I just don't quite understand the following javascript codes: MyAjax.dataset.onLoading=function(b) { var e=document.getElementById("loadingInfo"); e.style.visibility=b?"visible":"hidden"; } Well,what does the parameter "b" mean?whe
NameValueCollection setValue(key, value) Error AjaxPro 6.7.2
I'm using AjaxPro 6.7.20.1 NameValueCollection Passing a NameValueCollection from C# to javascript works fine Passing a NameValueCollection from Javascript works fine getValue(key) on javascript works fine setValue(key, value) returns the correct index value but when after the setValue I try to read the value I've just set, using getValue(key) it returns the old one and not the new one.
No Element Found - Error
Hi, I've recently developed a custom control which contains a couple of drop down lists for selecting a vehicle. I've managed to implement AjaxPro.2 and got everything working fine on my local machine, but I've put it up to a live test environment, I get a "No Element Found" javascript error on Line 1 of the .ashx file of my custom control .ashx I'm using the before the class declar
Disabling sorting for some particular columns in gridview
Hi All, I am using a gridview. in which I had enabled sorting . Is there any way that I can disable sorting on some columns. Or in other words allow sorting on some particular columns only.Thanks in Advace. Rakesh.
Newbie Master page query
Hello all, Currently I started using ASP.net 2.0.in my application; my master page contains many div elements, in some child pages I don't want some div elements .can any one suggest me how can I do this? Thx in advance Cheers Raj
a simple onloading prob.
b?"visible":"hidden" - this is a sample of trinar operator. It's equal with this: if (b) { e.style.visibility="visible"; } else { e.style.visibility="hidden"; }
how to Move ads in adrotator
Well ravindra i've a solution,hope it works. 1 Place adrotator in a seperate page and 2 place that aspx page inside an iframe in the main page. 3 Adjust the size of that page in iframe and 4 refresh the page inside the iframe. If it works then plz notify me as I'm damn busy so unable to help U with codes 4 it.Wishing U best of luck. Bye 4 no
Pls ..I need ASP.NET interview questions and FAQs
Hi Members I need a good collection of FAQs in ASP.NET also VB.NET. Can anyone help me Thanks in advance Regards Prasad.V
ListBox in composite control. SelectedItem not available.
Hi all, The problem was that the EnsureChildControls should be called from the OnInit() override protected override void OnInit(EventArgs e) { EnsureChildControls(); base.OnInit (e); this.AttachEvents(); } It works very well now.. Thanks for ur efforts. Shantanu..
DataList in a composite control. ItemCommand not firing.
Hi there, I am using a DataList in a composite control. The DataList has an Custom ItemTemplate(ITemplate) which adds a Button to the DataList Item as shown in the code below : public class DatalistItemTemplate : ITemplate { public void InstantiateIn(Control container) { Button B = new Button(); B.DataBinding +
Who can send me some examples for ajax.net using in html pag
I'm happy now.I found a way to solve it. Setup a new project,and build the .cs files.Then put out the website. And then,I reference the .dll files in my project.The namespace will not change at random now. Thanks every one.I study more,and share with you.
Where I can find a complete example about defining and using
There's something at the starter kit Download @ Actually it's a class which inherits IJavaScriptConverter and overrides methods such as GetClientScript, Deserialize, Serialize. GetClientScript defines the js function, parameters and client methods Deserialize gets IJavaScriptObject and converts its properties to a class instance Serialize returns a string which defines 'new Instance(parameters.
Moving ads in adrotator
thank u kris, but I want to display the rotating adds on the same web page thank u -Ravindra
Who can send me some examples for ajax.net using in html pag
In asp.net 2.0 projects.There is no project namespace.But if I want to use ajax in html pages,I need it. As I know ,the project namespace in asp.net 2.0 is random.I only can name the pages namespace. I'm new to ajax.net. Give me some advices and some examples.Thanks.
Drag and Drop with Ajax .net C#
also scriptaculous has drag and drop support. or you could build your own usign javascript!
DataSet.ReadXml doesn't work!
I believe you have do something like: HttpContext.Current.Server.MapPath(".."); You are probably getting an error returned in the response.error
Where I can find a complete example about defining and using
I am in the process of setting up a DNN (DotNetNuke) site with a WIKI module for this. Joseph Guadagno
Where I can find a complete example about defining and using
We need a Wiki :-) On 7/21/06, Injenier <fabrizio.guicciardi> wrote: Ajax.NET Professional lacks of documentation and samples or I'm unable to find them >
Where I can find a complete example about defining and using
You are correct about the library missing documentation Michael is working on the documentation. You can find the some documentation at . Unfortunately, you will not find any on the custom converters because I have not had to work with them yet. I would suggest you search this group you might find some. Joseph Guadagno
Pgae is getting loaded slowely because of .gif images in my
Load images via javascript function. Have images load from onload command of body tag. This way the page is loaded, then the function fills in the images. davidj
OT: AJAX Visio-Like Modeler
I realize this is OT, but my last resort before I start on a major AJAX product, pardon me if anyone objects to my post. I am looking for a technology I can license that allows a user to do diagramming using their web browser. I need to be able to license the technology b/c I need to add my own functionality. Ideally it would be like Visio, only in a web browser. / seems like a start, but the
Autosuggest Text box?????
bubberz schrieb: Has anyone tried this yet with the AJAXPro.dll? -- Freundliche Grüße Albert Weinert
Problems folowwing the Class Example
It is hard to debug applications without seeing the actual code. First I would check with the JavaScript file to see if the object of TC is the same as the object on the server. Check all of the properties to see what type they are. Try with just string and int, then move to more complex ones. Next, download Fiddler from the Microsoft Web site and see what is being sent and recieved from the se
Where I can find a complete example about defining and using
Ajax.NET Professional lacks of documentation and samples or I'm unable to find them
Pgae is getting loaded slowely because of .gif images in my
Hi, This is ganga... I am facing a problem in loading the Images. I have a search screen which displays the data along with the Images. The problem is the page is taken a long time to get loaded because of these Images... I want the data in the page to get loaded first and then the Images get loaded slowely.... In this way the user need not wait for a long time to see the data..... Please if a

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