Posts

Update database with Username

hi all i want update data username after click button...when try click button give me error..below code    protected void tempahbutton_click(object sender, eventargs e) { sqlconnection conn = new sqlconnection(); conn.connectionstring = configurationmanager.connectionstrings["mytempahanconnectionstring"].connectionstring; conn.open(); string facility = convert.tostring(facilitydropdownlist.selecteditem); string date = convert.tostring(calendar.selecteddate); string starttime = convert.tostring(starttimedropdownlist.selecteditem); string ampm1 = convert.tostring(ampm1dropdownlist.selecteditem); string endtime = convert.tostring(endtimedropdownlist.selecteditem); string ampm2 = convert.tostring(ampm2dropdownlist.selecteditem); string total = convert.tostring(totalchargelabel.text); string refnum = convert.tostring(totalchargelabel.text); strin...

Biztalk XSD Schemas HealthCare PACDR

does know can find xsd schemas pacdr formats 298,299 , 300 work in biztalk server. thanks responses. expanded ( microsoftedixsdtemplates.exe ) out , looks microsoft not shipping xsd transactions need. these newer healthcare format hybrid of 837 , 835 information used reporting. purchased xsd x12 store , did not work. technical support told me these not work in biztalk because microsoft uses special annotation. not sure means guess need figure out next. technical  support thought need microsoft because of annotated xsd. my hope somewhere had developed these biztalk. cannot imagine haven't. this official name of transactions looking xsd for. asc x12n/005010x298 pacdr (post adjudicated claims data reporting) asc x12n/005010x299 pacdr (post adjudicated claims data reporting) asc x12n/005010x300 pacdr (post adjudicated claims data reporting) tke BizTalk Server ...

Transitional Login for WPF and Windows application

hi, looking information can guide me login when user enters username , password program transition login application main form. want  users login messenger, need login before being able access or use programs main features. you cab use same way create simple login page windows app asp.net app http://www.aspsnippets.com/articles/simple-user-login-form-example-in-aspnet.aspx chanmm chanmm Visual Studio Languages  ,  .NET Framework  >  Visual C#

How to read incoming Azure Blob files to Azure Data Lake

i have azure function triggered blob. input image file on blob , output csv file in blob. new files produced every 10 seconds. what best architecture insert output csv blob files data lake? firstly data lake support reading regular azure blob? should read output files scheduled way or trigger available? kenny_i hi kenny, data lake analytics can access files in linked storage accounts directly: aka.ms/izoyh5 for other question, can use data factory: aka.ms/u6qgts cheers alexandre Microsoft Azure  >  Azure Data Lake Analytics & Store

Application which runs udpClient.Send and Receive()

this application first receives request processes , sends back. however, if can processes 20 concurrent requests. i can't open application, 2 application can't listen on same port. how can improve can process more concurrent requests hi z0802361,   why recommend you need use task parellel programming increase performance. think couldn't write wonderful thread manage code better task or iocp. if feel suggestion doesn't suit requirement, can try alternative way implement it. simple iocp server/client class we trying better understand customer views on social support experience, participation in interview project appreciated if have time. helping make community forums great place. click here participate survey. Visual Studio Languages  ,  .NET Framework ...

Foreach in people and group field

hi! i sharepointhosted app have people & group field in list. how make foreach in contents of value. check if current user selected in people & group field... rest easiest way. here's sample of both rest , jsom. scot $(document).ready(function () { //rest $.ajax( { url: _sppagecontextinfo.webserverrelativeurl + "/_api/web/lists/getbytitle('tasks')/items/getbyid(1)", method: "get", headers: { "accept": "application/json;odata=verbose", }, success: function (data) { var assignedto = data.d.assignedtoid.results; (var = 0; < assignedto.length; i++) { alert(assignedto[i]); } }, error: function (err) { alert(json.stringify(err)); } } ); //jsom (function () { var loa...

Multitasking - Threading or Cooperative

we had lot of questions multitasking/multithreading lately. thematic on how can , should multitasking in .net can confusing. async...await needs history lessons understand difference. this usual combination of checking if got facts right , reference linking. coopertaive multitasking: in appraoch multitasking, every progamm/piece of code must concede control other programm/piece of code can work. technically fine system , has minal overhead , resource use. in practice made mistake, taking whole damn system down him: "as cooperatively multitasked system relies on each process regularly giving time other processes on system, 1 poorly designed program can consume of cpu time itself, either performing extensive calculations or busy waiting ; both cause whole system hang . in server environment, hazard makes entire environment unacceptably fragile." - https://en.wikipedia.org/wiki/computer_multitasking#cooperative_multitasking preemtive multitasking: in approac...