MVC :: Examples Of AHAH(Asynchronous HTML)?
Jul 19, 2010Is there any examples of using AHAH ajax pattern with ASP.NET MVC?
View 2 RepliesIs there any examples of using AHAH ajax pattern with ASP.NET MVC?
View 2 RepliesI am new to ASP.NET. Presently I have also been reading Object Oriented Programming(OOP).Could someone give me some simple examples how OOP are used in asp.net
View 4 RepliesAfter trying to adapt quite a few examples, I am still at a loss as how to acomplish what in old vb was a simple task.
Our clients send us files, which we compact into one large file and forward the compacted file to a third pary which in turn sends us back an XML report of the files recieved within the compacted file. I read this xml file and update a table marking the files that were send as 'completed' This process may take 5 - 10 minutes, and what I would like to do is ; when the user clicks the button to 'send' the compacted file, either , 1. disable the screen controls and display a message .. somthing like ' waiting for conformation '
or
2. show an animated dialog box with a message until we recieve the xml report back, then the message dissapears, controls are enabled. I have written the code to read the Xml report and the way I was thinking of doing this was once the user clicks the send, i do a watch directory until the file is
recieved back. The problem I have is how to create the message, hide and show it from a vb code behind function. All the examples I have seen are either way over my head in programming levels, or require a 'close' button on the 'message' screen
We plan to develop a ASP.NET ( VS 2010 ) web site.We need to know if there are any ready made startup ASP.NET web sites so we can get them and adjust / upgrade according to our needs.
View 1 Repliescan any one please provide me the links as how to write URL rewriting with ISAPI and asp.net in c#
View 1 RepliesCan anyone provide examples or links on how to use the TreeView control. I'm just curious what some of the industry standards are. Which Events to use, how reference childnodes, etc.
View 13 RepliesI am building a simple contact us form, but I must admit I don't know diddly about c#. So if someone can show me an example Just a note, I am not using the wizard. I am using a table and textboxes with a button with the common fields firstnamebox,lastnamebox,emailbox, subjectbox, and messagebox.
View 13 RepliesI learning ASP.net, and am looking to create a rather straightforward WebForms ASP.net application, but I have very limited examples to work with. Is there a site that has a lot of ASP.net WebForms projects that are downloadable?Books seem to focus on narrow aspects of using Webforms, like session control, or using master pages, but I'm looking for examples of how a whole app comes together.Or, better yet, is there someone willing to help a new developer out one-on-one by sharing a project or two of his?
View 3 Repliestell me from where can i get examples of master page
View 3 Repliesusing asp.net/vb.net 2005.
I have to create 2 print friendly buttons for a page, 1 is to create a print friendly version of a page inside a div and the second to create the same but the area to print is instead inside an <asp:Panel>.
I assume using javascript to open a new window and then displaying the div or panel would be the best way, I've done this in the past but dont recall all the details.
Does anyone have any good samples for doing something like this?
Does anyone have some really great tutorials on how to use link with datasets that contain multiple tables that utilise primary key and foreign key relations? For eample
Table1
- id (PK)
- language
Table2
-id (PK)
-programmingword
Table3
-id (PK)
-languages_ID (FK)
-pgrammingword_ID (FK)
-translatedword
Linq search for: Table3.translatedword where Table1.Language ='french' and Table2.programmingword = "yes" does this make sense? im looking for exampes/ tutorials for how to do this? or can anyone recommend any good books on linq?
I went through the demo video and was able to create what little it showed but now I am wanting to extend it. I want to add an Admin section with a login page.
Can someone show me source code from an site that uses more than HomeController and multiple db tables calling stored procedures and such?
I was hoping someone could lead me in the right direction in creating a search form with the data being displayed with paging. My background is ASP classic and I would like to know the best approach in acheiving this with MVC. Maybe if we could take the Movie Library tutorial and add a search function to it, so I can understand from the ground up. Basically, I'd like to see a couple of fields for the movie title and director in a form, with a search button. The data in these fields would the be used as parameters for the SQL to query the database and then display the data in the respective view with paging. Whats the use of a database if it cant be searched by the user? Obviously being an asp classic dev, I'm not familiar with C#. I will go down this road eventually, but I'd like to go down this path 1st.
View 4 Repliesi have no idea about commit,rollback,tranasaction can any one explain with examples brefiely.
View 2 RepliesFor example, we are going to consume web method GetEmployeeByQuery(ConnInfoXML, Query, RecordDetail), ConnInfoXML is login information in XML, Query is a SQL statement selecting records, RecordDetail is all records retrieved. All data are in XML format.
So how to write these parameters in XML to consume this web method and get all the information in XML, and then transfer XML to normal string format ?
The following link: [URL]javascript has a link on the right-hand-side to switch code from C# to VB, but the actual example text does not change when the selection is chosen. Can someone tell me if this tutorial is exclusively for C#, or can it be built in VB as well?
View 2 Repliessome concrete example of system engegnerring applied on web application?I read a lot of books about uml on web appliation. But i need an concrete example of all documentation about a web application.For example document of analisys, project, databas
View 10 Replieshow do I understand web service software factory with concrete examples? Is it wcf oriented?
View 4 Replieshow to do aggregation and sums in gridview from textboxs required examples
ex: while trading in stock market it was chnaging dynamically how it was working explain with examples
I am wanting to create a url rewriting module and have investigated numerous examples on the web. However, most do not address the issues of handling postbacks and querystrings. I cam across a few examples, but don't fully understand how they work and thus customizing them to my needs becomes a problem. I understand the basic concepts of rewriting, but can someone explain, or point me to a resource on how postbacks and querystrings are handled?
View 2 RepliesI am making a transition from DreamWeaver and Flash to ASP.net. I have made a few Master pages based on the On line tutorials but none of them really get my eye. Are there examples with code of some really cool looking, but fairly simple Master pages
View 2 Repliesdetail and also examples of transaction modes where i can get easily concepts of transaction modes1 Autocommit Mode2 Implicit Mode3 Explicit Mode
View 3 RepliesHow can I set up an asynchronous web service in asp.net? I want to call a webservice to post some data to a database, but I don't care if the response failed or succeeded. I can use .net 2.0 or 3.5 only and it can be in vb or c#.
View 3 RepliesFrom my understanding from reading about ASP.NET asynchronous pages, the method which executes when the asynchronous task begins ALWAYS EXECUTES between the prerender and the pre-render Complete events. So because the page's controls' events run between the page's load and prerender events, is it true that whatever the begin task handler (handler for BeginAsync below) produces, it can't be used in the controls' events? So for example, if the handler gets data from a database, the data can't be used in any of the controls' postback events? Would you bind data to a data control after prerender?
PageAsyncTask pat = new PageAsyncTask(BeginAsync, EndAsync, null, null, true);
this.RegisterAsyncTask(pat);
I use for 5-Layer architecture and asynchronous Pages in my application(Presentation Layer,Caching Layer,Businnes Logic Layer,Transaction Layer,Data Access Layer) .I want to cancel Asynchronous Method if data was in cache.
View 3 Replies