Main menu:

 

June 2008
M T W T F S S
« May   Jul »
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Site search

Archives

Categories

Tags

Links:

Archive for June, 2008

Delivery notifications in BizTalk Server 2006

Few days back I did ink on how to route the failed messages, by enabling macros at the filter, in this post i will be writing about how to set the acknowledgments in biztalk server,
In the properties window of the send port you will be able to see the Delivery Notifications as the property ,change [...]

Failed message routing in BizTalk Server

If you ever had a chance to route the failed messages, well in biz talk server we can route the failed messages , you can achieve this
By enabling Enable routing for failed messages on the physical receive port sampleReceive,
create a physical send port errorSend which subscribes to the error message, so in the filter properties [...]

Implementing AJAX in asp.net web application - continued

The trigger property of the update panel , I can explain this with an scenario, you have a datagrid sampleDataGrid ,a text  box , sampleTextBox  and button sampleButton, you add the data in the text box and click the Samplebutton, now place the sampleButton in the update panel, place the datagrid inside the update panel [...]

Implementing AJAX in asp.net web application

Implementing Ajax in the web application will asynchronously call to the server, without actually posting back the page to the server.
in order to implement Ajax in your web application , you need to install the Microsoft ASP.NET 2.0 AJAX Extensions, the same is available on the internet for download.
once you install on to your server [...]

Asp.net web site deployment on the target machine

The asp.net 2.0 website deployment is very simple,
In the target machine create a blank website in the IIS , giving the location of the folder same as in source machine, like if you have c:\inetpub\wwwroot\yourapp then in the target machine too give the same location.
Now in the source machine website properties , give the location [...]

Images in the non secured zone

I was trying to display the images on the login page with the authentication set to forms, well I was unable to see those images on the form,
To resolve the above issues, what I did is created a seperate master page and an Image folder at the application root and then given the url of [...]

Unable to post back on click of asp.net menu item

Hello everyone,
I faced a scenario where I had to change the back color of the parent menu when any child items were clicked, well there was no straight forward solution for the same. I did try the OnMenuClick event, but to my surprise, the event was not triggered , i searched on the net to [...]

How to run the asp.net website in the intranet using ip address

In order to run your asp.net application in the intranet site , Please share the applications directory for web, right click -> sharing and security -> web sharing , Please provide as alias name.
and
also in the IIS Manager, go to the default website folder , right click on it and select unassigned address.
go to start [...]

debugging asp.net applications from MOSS

While you are trying to host the asp.net application on MOSS and want to know the reason for “not so friendly error stating critical error encountered , then its obvious you want to know the reason for the error instead of keeping quite,
Well, there is indeed a way to debug you asp.net application from MOSS, [...]

how to remove the edit button column in grid view

All these days , I have been extensively working on gridview, how to add the radio button controls, dropdown list , have been worked on nested gridview too ( gridview within a grid).
If a scenario arises where in you have to disable the edit button control on the grid view based on the roles, then [...]