Posts

Linking baskets to Profiles

hi,   my requirement: i have basket displayed in customer , orders manager.  need able link user profile.  thought if can make basket properties screen editable , add field called "email id", should able enter email id of profile , save it.  in way basket , profile should linked. 1. possible? 2. if not there other way fulfill requirement?  3. if possible how make basket properties screen editable using partner sdk? thanks! baskets uniquely identified basket id , basket name. basketid property of basket same id of customer owning basket. if want convert anonymous basket user baset process create new user basket , move data anonymous basket user basket. the solution proposed may not work. out of box customer , order manger doesn't support functionality , doubt order web services have basket creation functionality exposed services. hope helps. ravi kanth http://www.microsoftblog.co.in/commerceserver ...

BizTalk Licenses

hi all, have query regarding biztalk licenses. have oredered biztalk enterprise edition license 2 servers(dual cpu) totally have 4 licenses. once after getting license, downloading software internet or microsoft provide sort of cd biztalk software?? used work ibm technologies give site called passport advantage download software from?? please let me know how works in microsoft?? have 120 days trial version free of charge in internet. cover functionalities of enterprise edition???so can install until wait licensing formalities. thanks, hi, you user id , password microsoft volume licensing site , instruction details.  can download software there once information. please see similar thread http://social.msdn.microsoft.com/forums/en-us/biztalkgeneral/thread/76a2a8a7-4a9f-4565-a147-6e76827cb4b9/  relating trial version upgrade. regards, tariq majeed please mark answer if helps BizTalk Server ...

Problem with inheriting a combobox.

ok, have small problem , not quite sure start on fixing it. using system;   using system.collections.generic;   using system.linq;   using system.text;     namespace windowsformsapplication1   {       class mycombobox : system.windows.forms.combobox         {           public mycombobox()           {               datacontext  _dc  =                    new  datacontext();                this.datasource  =                    from  q in _dc.lookup                   select q;                this.displaymember  =  "description" ;                this.valuemember  =  "id" ;           }       }   }  the code snippet above mock-up of trying do. when compile, this object in toolbar. then  drag object onto form. when so, ide runs constructor , inserts objects each item finds linq query instead. prefer places default methods , properties of base combobox and not execute constructor w...

.NET Performance

currently there application runs on python.  application mission critical application. able to  process 7000 transactions  per second. back-end table contains 800 million rows. performance great the business owner  convert .net /asp/c# , concerned whether performance degraded . please provide me guidance ? kind of architecture should use ? things keep in mind ? any  case study or white paper can refer ? thanks in advance help improving .net application performance , scalability and there useful blog performance in .net -- http://blogs.msdn.com/b/vancem/ Architecture  >  Architecture General

IIS 5 issue with windows server 2003

i have asp.net application working on .net framework 2.0 , have webservice published on site have call webservice  from web site sharing same application pool when web service request's execution exceeds 2 minutes client throws operation time out exception , although the web service not report exceptions , , find following exception in windows event log   event type: warning event source: asp.net 2.0.50727.0 event category: web event  event id: 1309 date: 02/24/2010 time: 1:23:43 pm user: n/a computer: hrms description: event code: 3005  event message: unhandled exception has occurred.  event time: 24/02/2010 1:23:43 pm  event time (utc): 24/02/2010 9:23:43 am  event id: 2953876808044750bc96e2dd0ed6af71  event sequence: 25  event occurrence: 1  event detail code: 0    application information:      application domain: /lm/w3svc/...

Datagridview: Can not change column background color after setting row background color?

hi all, i can change either column or row background color of datagridview control code (i part of loop): mydatagridview.columns[i].defaultcellstyle.backcolor = color.aquamarine; mydatagridview.rows[i].defaultcellstyle.backcolor = color.cornsilk;    i want set same row background color records have same "day" in a date field. worked. wanted have of column 3 with aquamarine background. not work after set row background color. works if don't set the row background color though. what missing? thanks   hi, you have apply style cells in both styles explicitely. else row takes precedence on columns... public partial class form1 : form { private system.windows.forms.datagridview datagridview1; private system.windows.forms.button button1; private system.windows.forms.button button2; public form1() { initializecomponent(); this.datagridview1 = new syste...

how to send data as CSV on Eventhub for Azure Stream Analytics

using azure stream analytics , input eventhub,event serialization format csv , delimiter comma(,).my query select deviceid,temperature input , output sql database. when job running gives me error like "after deserialization, 0 rows have been found. if not expected, possible reasons missing header or malformed csv input" , second error not deserialize input event csv. possible reasons: 1) malformed events 2) input source configured incorrect serialization format.. , sending data on eventhub this string messagebody1 = "deviceid:20," + "temperature:30"; clienthelper.sendmessage(messagebody1).wait(); the format data being sent looks lot more json . if you'd include column names data please consider sending input in json format. [disclaimer] posting provided "as is" no warranties, , confers no rights. user assumes all. Microsoft Azure ...