[jQuery] Re: Jquery and ASP.NET

2008-10-06 Thread [EMAIL PROTECTED]
MorningZ, thanks for the ideas. Personally, I don't prefer overriding control ID's as they have to be unique. You can easily break your code if you don't pay enough attention. For .NET guys, I recommend using < %=ControlName.ClientID%> syntax. The only downside is that you can not put your scrip

[jQuery] Re: Jquery and ASP.NET

2008-10-06 Thread GARIL
Definitely. On Oct 5, 1:45 pm, eduardo wrote: > Is possible use JQuery in aspx pages writing with ASp.net 3.5 ?

[jQuery] Re: Jquery and ASP.NET

2008-10-06 Thread David Meiser
In case you missed this [1] announcement, Microsoft is going to begin shipping jQuery with Visual Studio and ASP.NET MVC, unchanged. Don't look for a date or version or Service Pack as to when this will actually start shipping/be available for download. Based on the announcement, I would gu

[jQuery] Re: Jquery and ASP.NET

2008-10-06 Thread George Adamson
To get around the server-side-id vs client-side-id differences you can often use id selectors like this $("DIV[id$=myServerSideID]") but there is always the possibility of confusion between elements whose IDs end with the same pattern of letters. For an internal project we've used a couple of qui

[jQuery] Re: Jquery and ASP.NET

2008-10-05 Thread MorningZ
"Personally, I don't prefer overriding control ID's as they have to be unique" Well, yeah, that would go without saying... even the novice programmer should have the skill to know when to use it and when not to... "The only downside is that you can not put your scripts in an external (js) fil

[jQuery] Re: Jquery and ASP.NET

2008-10-05 Thread MorningZ
Suggestion for .NET peoples if you don't want MasterPages or UserControls (or any other "Naming Container" for that matter to mess with your control ID's, check out this library http://www.wilcob.com/Demos/IDOverride/ Also, to easily work with JSON, this library is most excellent http://james.

[jQuery] Re: Jquery and ASP.NET

2008-10-05 Thread [EMAIL PROTECTED]
Sure. Check our corporate page : spina.com.tr. It's built on .net 3.5 & jQuery 1.2.6 (See html source code to understand how we use it.) On Oct 5, 9:45 pm, eduardo <[EMAIL PROTECTED]> wrote: > Is possible use JQuery in aspx pages writing with ASp.net 3.5 ? > > Thanks in advance > > Eduardo

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Brandon Aaron
We've fixed several specific issues in dealing with ASP.Net's AJAX framework in the past. As far as I know to date we play nice with ASP.Net. -- Brandon Aaron On Mon, May 19, 2008 at 10:12 AM, Mike <[EMAIL PROTECTED]> wrote: > > I used ASP.NET Ajax to make webmethod calls all the time and I kno

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Mike
I used ASP.NET Ajax to make webmethod calls all the time and I know some other frameworks wont work with it that is why I was asking. MOOTOOLS doesnt play nice with ASP.NET Ajax. On May 19, 6:52 am, Steve D <[EMAIL PROTECTED]> wrote: > I have used both successfully together, but that because the

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Steve D
I have used both successfully together, but that because the client wanted me too. Personally I would prefer to use jQuery on it's own. I understand what it's doing much better than I understand what the ajax extensions are doing in .Net. It's also a much smaller download (a simple update panel i

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Hamish Campbell
But ASP.NET provides controls that produce ajax type interactions right (I believe that was what Mike was referring to)? That is, it will be generating JS for the client. Obviously if you've got a clear understanding of what those ASP.NET controls do, you should be fine. Like I said though, if you

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Jon Reed
I dont see any conflicts here - one is client side, the other server side - will be fine :-) On May 18, 8:30 pm, Mike <[EMAIL PROTECTED]> wrote: > Do these work well together or cause conflicts?

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Don Quijote de Nicaragua
Funciona Muy bien: Exaple to load a combo: Ejemplo: call the function in CodeBehind: <%=Prueba.CargarClientes()%> Clase or Class: Public Class Prueba Public Sub Prueba() End Sub Public Shared Function CargarClientes() As String Dim idtPais As System.Data.IDataReader, qrPais A

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Hamish Campbell
What do you mean exactly? I don't see why you couldn't, but I'm not sure why you would. Have an example? On May 19, 7:30 am, Mike <[EMAIL PROTECTED]> wrote: > Do these work well together or cause conflicts?

[jQuery] Re: JQuery and ASP.NET.

2007-11-23 Thread Jeffrey Kretz
There are a quite a number of different workable methods to implementing jquery and ASP.NET. If you are comfortable with writing custom server controls, then here is just one way: 1. For each control that uses jquery, add this to the OnPreRender event: Page.ClientScript.RegisterClientScriptIncl