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 [...]
Posted: June 30th, 2008 under Uncategorized.
Comments: none
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 [...]
Posted: June 26th, 2008 under Uncategorized.
Tags: BizTalk, failed message, routing
Comments: none
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 [...]
Posted: June 25th, 2008 under Uncategorized.
Comments: none
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 [...]
Posted: June 24th, 2008 under Uncategorized.
Comments: none
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 [...]
Posted: June 19th, 2008 under Uncategorized.
Tags: asp.net deployment
Comments: none
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 [...]
Posted: June 18th, 2008 under Uncategorized.
Comments: none
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 [...]
Posted: June 17th, 2008 under Uncategorized.
Comments: none
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 [...]
Posted: June 17th, 2008 under Uncategorized.
Tags: asp.net, IIS
Comments: none
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, [...]
Posted: June 14th, 2008 under Uncategorized.
Tags: asp.net, debugging, MOSS
Comments: none
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 [...]
Posted: June 14th, 2008 under Uncategorized.
Comments: none