Installation Of ASP.NET AJAX Control Toolkit
Mar 8, 2011
I am working on a development project with a number of other individuals using TortoiseSVN. I followed [URL] to install the toolkit.
I tried to have a look at the configuration for another project where Ajax control toolkit was installed however I have cannot get Ajax elements to appear in my solution explorer would anyone know why this might be? I had a look at this other person's solution explorer and they have the ajax control toolkit.dll, ajaxcontroltoolkit.pdb and other folders (ar, cs, de...) within a different type of folder (looks grey and has a cog symbol) called 'Bin'
I am using Visual Studio 2008, .Net Framework 3.5 and I tried the ajax control toolkit framework 3.5.
View 1 Replies
ADVERTISEMENT
May 29, 2012
I have a form of tour application that has 2 dates, from date and To date. now i'm using the dd/MM/yyyy format for the date entry and i need to Validate To date like To date must me greater than or equal to start date. earlier days should be disable, i want to do that with compare validator.
View 1 Replies
Apr 4, 2010
I've got a calendar control on a text box I'm just wondering how I can trigger a sub when a date is chosen on the calendar?
There is a OnClientDateSelection changed in the extenders properties but im not sure how to use this.
View 1 Replies
May 31, 2012
I need a tab-like control for Asp website. This is a tutorial for AJAX Control Toolkit Tab Container. The code below is debugged successfully, but nothing is shown on browser.
[Code]...
View 1 Replies
May 30, 2012
<style>
.ajax__calendar .ajax__calendar_invalid .ajax__calendar_day
{
background-color:gray;
color:White;
text-decoration:none;
cursor:default;
}
i apply the Style, it'snot working,, i want to change the style of the disabled date,,,
View 1 Replies
Mar 25, 2010
I have a text box which has a Ajax calendar extender attached. You click on the text box, the calendar pops up, you select a date and that gets displayed in the text box. That all good but the date is displayed in mm/dd/yyyy format. Can this be changed?
View 1 Replies
Jul 28, 2010
I would like to restrict what they see in the file upload dialog, which is set to "All Files" by default. I understand how to validate that they only uploaded a certain file type, that is not the question here. I would just like to know how to default the file type in the file selection dialog.
Is there any way to change this to "PNG only" or "*.png"?
This is using AsyncFileUpload in the ASP.NET AJAX Control Toolkit.
View 3 Replies
May 31, 2010
I'm trying to use Ajax Toolkit in ASP.NET page to display a Calendar Extender with this code, but it's not working for me.
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
[Code].....
View 3 Replies
Jan 7, 2011
control to display dynamic fields
the database table contains
ID --> Autonumber
Title --> text
[code].....
View 1 Replies
May 27, 2012
<script type="text/javascript" ><!--/*--><![CDATA[/*><!--*/
Wicket.Event.add(window, "load", function(event) { $("#iconContainer6").click(function(){Plimus.web.ui.openNewWindow('http:www.gamecopypro.com');});});
/*-->]]>*/</script>
[Code]...
View 1 Replies
Jun 27, 2011
im looking for a free version of the following [URL] and wondered if anyone knew of anything that existed something that you can drag and snap panels in to other panels then save the layout of these panels preferably to a database. If they is no free versions anyone can think of (i have looked and cannot find anything :/ ) how easy would it be to program such a Ajax or asp control?
View 2 Replies
Apr 8, 2009
I have a problem with using a script that adds a NiceEdit toolbar to a text area when that text area is within an Ajax tab.I want to know if I should refer to it in a different way than just the ID.I mean the ID of that text area, I tried to take the text area outside the Tab Container, it works, but when I return it, it simply doesn't.[code]
View 1 Replies
Dec 5, 2011
I have a User Control which renders a simple drop downList into the page.By default, only certain values are returned depending on User Details, but the user may request a "full" list.I'd like this full list to be generated by pressing a reload button.Being new to .NET I am struggling to get this to work and not really understand the results I get when Googling or finding stuff on this site. Is Classic ASP I'd have made a page that renders this and called it using jQuery
[Code]...
I've found this link: [URL]..Using-jQuery but am unsure exactly what it is suggesting, mainly I think, because I use VB and don't completely understand how to convert that C# code there.Using .NET 2.0, jQuery and VB, does anyone have any suggestions on the simplest way to accomplish this?
View 1 Replies
May 18, 2010
This is a facebook scraper for farmville I've got this code.. which works it expands the listed items...
in FB it groups the similar items and puts an Ajax link "SHOW X SIMILAR ITEMS"
I want to click it and WAIT..
I can click it with the code below.. and it works. But i can seem to figure out how to wait for the page to update itself, then continue.
[Code]...
View 1 Replies
Nov 29, 2011
I am using AjaxToolJit Tab Container and the problem is when i refreshes the page the default tab is set to 0 but i was in 4th tab when i refreshed the page.AutoPostBack=true
for a while but when i used UpdatePanel in the same page causes the same problem again.
View 1 Replies
Mar 11, 2011
I've got a fileupload control inside of a gridview so that each row (item from the database) can have an attachment associated with it. I've got a button next to the fileupload control (besides the default browse... button to select the file) to actually take the file and upload it to a file server.This works great if I use this button "Upload". However, underneath my gridview I have another imagebutton that is outside of the gridview, its just sitting on the form / page.The idea of this "Update" button is when end users make changes to the grid I can simply loop through the grid and update the values they have entered to the database. This also works great.
Now here is my issue assume a user has 3 rows in the grid view. On 2 of these rows he decides to add an attachment but he never clicks the "Upload" button he only uses the standard browse button to select the file. Now instead of clicking the "Upload" button that is on the grid view he ends up clicking the "Update" button outside of the grid thinking that it will save his attachments.
So I decided to write code to grab the fileupload control from the grid using .FindControls("NameOfFileUploadControl") in my Update button loop where I loop through all the rows. Then I check if myFileUploadControl.HasFile property to see if there exists a file and if there does upload the file then continue with the code.
The issue is when I click this "Update" button .HasFile always returns false even though I can see the text string of the path in the fileuploadcontrol textbox (the standard one next to the browse button). Is it because this goes back to the page load event and checks if it is a post back? What causes this and how can I fix it?
edit:Im adding some code because im still confused with this
Protected Sub SaveGrid()
For Each Row As GridViewRow In Me.gvLineItems.Rows
Dim f As FileUpload = CType(Row.FindControl("fuAttachment"), FileUpload)
[code]....
This method gets called on a click of a button... The fileupload control is in an of a gridview that is wrapped inside of an UpdatePanel:
<asp:FileUpload Width="90px" Font-Size="xx-small" ID="fuAttachment" runat="server" />
So why is this property always returning false?
View 1 Replies
Jun 24, 2012
Should have a option to attach file in each row of a repeater
Once I clicked to upload, I have to pass a id and need to execute the insert query
Is there any way to do this using ajax asynchronous?
View 1 Replies
Jun 11, 2009
how to get http url request made by ajax page in webbrowser control?? i am navigating one ajax website in my webbrowser control. on one webpage there is one button which when click send http request to page, but this request is ajax, i want to capture that url whose request is send after clicking. is it possible. i think its possible coz when i use http debugger utility in mozzila called "HttpFox" it display that url.
i try to hack dom of webpage and scrap url form it but i found that the url is created by javascript variable.
View 1 Replies
Apr 4, 2011
I can load a generic user control just fine in my WCF service doing the following:
UserControl userControl= (UserControl) new Page().LoadControl("~/UserControls/MyControl.ascx");
However i can't seem to find any way to do this
[code].....
View 2 Replies
Mar 18, 2010
The VB.Net desktop app uses the IE browser control to navigate the web. When a normal page loads the document_complete event fires and I can read the resulting page and go from there. The issue I am having is that the page I am driving is written with AJAX, so the document complete event never fires. Furthermore, when you view the source of the page after it loaded a new portion via AJAX, it hasn't change.
View 7 Replies
Sep 8, 2009
Is there any way to change the installion of a click once app to the program files location so that it will be availabe to all users? Right now it is burying the location of the files within the user folder.
View 2 Replies
May 24, 2009
I just made an application using MySQL for the database. I use WAMP.Can I combine WAMP and my application installation into one packet installation ?
View 2 Replies
Apr 12, 2011
I have been working on an activeX control which works on serial port communication. Now I have completed the project and created its setup.exe using Visual studio 6 -> Tools -> Package and Deployment Wizard. Then I installed the control in another PC and in a new project included the control using project -> components. But when I click on the control in the toolbox and then include on the form it gives the following error : delete current link ? and on clicking OK, nothing happens. I tried searching a lot on google but didnt find anything. Another problem is that I have created a string array as a global array which can be accessed by all the methods.I am able to include the same activex control in my own pc when I have created the project. Here it works fine, I am able to access all the methods that I coded in the control, but the String array mentioned above can be accessed in other project. I tried writing Public before the array declaration but it give me the compile error : "Constants. fixed length strings, arrays, user defined types and Declare statements not allowed as Public members of object module." [code]
View 1 Replies
Aug 18, 2010
why ( toolkit script manager ) the error is:
Could not load type 'System.Web.UI.ScriptReferenceBase' from assembly 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral
View 1 Replies
May 14, 2010
Anyone know if microsoft or any others have a NLP toolkit for .NET?
View 2 Replies
Jul 29, 2009
I'm rewriting a VB6 application that used the Windows Encryption Toolkit and Blowfish encryption. Does anyone know if the Windows Encryption Toolkit exists for .NET? I would use a different type of encryption if necessary, but we have 2 programs where I work. Users encrypt files with one program and send them to us and we use another program to decrypt them. I'm worried that if I don't use Blowfish encryption again, users will send us files encrypted with AES for example and we won't be able to decrypt them.
View 2 Replies
Nov 17, 2011
I want to start building and documenting a toolkit for a small development shop. Googling around lead me to something called VBCommenter. Is that a good tool to use? Has anyone had experience with other similar tools?[url]...
View 1 Replies
Nov 10, 2009
I have an application I am converting over from vb6 to vb.net 2.0/3.5. Using Subsonic 2.2 and the vb.net Interop Toolkit 2005. Cannot seem to get the .net form using subsonic to work inside the interop environment.It keeps saying it cannot find the subsonic service provider in the app.config. But I know it is there. Has anyone used these two toolkits together successfully? Will subsonic even work inside the interop environment in that way?
View 1 Replies
Mar 30, 2011
We have a VB6 application that consumes Java webservices with soap.That works fine on XP and Win7. The login to the webservice times out.Under xp the client try to reconnect 2 times (is one call to the webservices) and then ask for new login data from user. With win7 that dont be OK.If the login is timed out, the client try to reconnect 9 times with one call. The code is the same. I trace this with wireshark.
View 5 Replies
Apr 19, 2011
So this C4F P2P Toolkit allows for creating chat rooms, file sharing and media players etc, however I cannot find a way to edit the main look of each control. They look hideous and I must make it look a little more modern. How to change the style of the containers.
View 2 Replies