-
Content Count
28 -
Joined
-
Last visited
Community Reputation
1 NeutralAbout Girish Dubey
-
Rank
Newbie
- Birthday 12/04/1991
Contact Methods
-
Website URL
http://www.hotzshop.com
-
Skype
dubey.girish2
Profile Information
-
Location
New Delhi
Recent Profile Visitors
31,125 profile views
-
How i can filter List the data with Dictionary condition using linq. class Person { public string name { get; set; } public string subject { get; set; } public string type { get; set; } public int age { get; set; } } class Test { public void FindData() { // Create dictionary and add five keys and values. var conditionDictionary = new Dictionary<string, string>(); conditionDictionary.Add("subject", "english"); conditionDictionary.Add("type", "teacher"); List<Person> persons = new List<Person>(); persons.Add(new Person { name =
-
10:55:57 10:55:57 C:\Builds\workspace\ci-job_master>"AutomatedProcedures\tools\nant-0.92\bin\nant.exe" -buildfile:AutomatedProcedures\NantScript.xml -D:Innovator.License.Type=Unlimited -D:Innovator.Activation.Key=xxxxxxxxxxxxxxxxxxxx-D:Innovator.License.Key=3c1bdb569c74585xxxxxxxxxxxxxxxxxxxxxx -D:MSSQL.Innovator.Password=**** -D:MSSQL.Innovator.Regular.Password=**** -D:MSSQL.SA.Password=**** -D:MSSQL.Server=. -D:Path.To.CodeTree.Zip=F:\Project\CIPro\CodeTreeSP12.zip -D:Path.To.DB.Bak=F:\Project\CIPro\CoreAndSolutions110_SP12DB.bak -D:Branch.Name=master ContinuousIntegration 10:55:59 NAnt 0
-
I wanted to develop and deployed a Hyperledger network locally and also transfer it to Azure Hyperledger-Fabric for single organisation.
-
- hyperledger fabric
- azure
-
(and 2 more)
Tagged with:
-
How to call REST API using current instance of internet explorer. I am working on extension for fill the form dynamicly and data comes from REST API. but for authontation we have to login on that application e.g. REST API URL: http://dataservice.com/getusers.json Login page: http://dataservice.com/login.aspx and i wanted to fill data on another application Form page url: http://localservice.com/users.aspx and i have already logged in on http://dataservice.com domain and wanted to get data using internet explorer extension and fill form on se
-
- internet explorer
- .net
-
(and 1 more)
Tagged with:
-
Sir i wanted to develop a extension for internet explorer 9 to fill opened form dynamically using extensition and the data i can configure in extension any time. so please suggest me how i can develop this extension step by step because i am new in explorer development.
- 4 replies
-
- .net
- internet explore
-
(and 2 more)
Tagged with:
-
thanks for your replay. can you give me a link to develop a extension for fill form dynamically. and which editor i can use to develop. can i use visual studio 2015.
- 4 replies
-
- .net
- internet explore
-
(and 2 more)
Tagged with:
-
I am going to create a Extension for internet explorer but i am not able to understand how to start creating Extension for internet explorer.
- 4 replies
-
- .net
- internet explore
-
(and 2 more)
Tagged with:
-
I am going to create a application in this application i want to use authorization server and resource server and client application in different application for hosting in different location. How i can design my application. Firstly, Can i host authorization server and resource server and client application in different location.
-
I am trying to consume service using proxy class. i am getting below exception. "The underlying connection was closed: An unexpected error occurred on a receive." ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; //proxy class initialization ISessionManager objISessionManager = new SessionManagerClient("https://abcxyz.com/sessionmanager.svc"); LogonRequest objLogonRequest = new LogonRequest(); objLogonRequest.logonRequestData = new LogonRequestData(); objLogonRequest.ContractVersion = APICredential.ContractVersion; objLogonRequest.logonRequestData.DomainCod
-
Yes! you can remove one or more than one attributes in single a statement by using below statement. $("img").removeAttr( "title" ).removeAttr( "someotherattr" );
-
I am trying to bind dynamic event but i am not able to bind. previously i have used .live in our system that was working find now we are going to migrate our system to jquery 3.1.1. and i have replace all .live to .on function but work. for you reference.. <html> <head> <script src="jquery-3.1.1.min.js"></script> <!-- <script src="jquery-1.8.1.min.js"></script> --> <script> var abcHandler = function() { var h=this; h.getControl = function(cntrl) { return $("[class$='Cntrl_" + cntrl + "']"); }; h.main = h.getControl('main'); h.divid1 = h
- 2 replies
-
- Jquery migrate jquery-1.8.1.m
- .live replace with .on
- (and 1 more)
-
I am going to develop optimize web site. The problem with 200-250 AJAX calls for different values on loading. that's why i have selected angularjs-http-batch request to get values. So, Can you suggest me pros and cons of batch request?
- 2 replies
-
- angularjs http batch
- batch request
- (and 2 more)
-
I am trying to call a web service asynchronous in .net 4.0. I mean i don't want any kind of response from service side. I just want to execute a web method. can you suggest me how i can call? Service Code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namespace UILAYER.Service { /// <summary> /// Summary description for TestService /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentMod
-
- webserviceasmx
- asynchronous Call
-
(and 1 more)
Tagged with:
-
Can you suggest me. How can i maintain Transaction in sql for a scope? @@TRANCOUNT is used for a connection.
-
can you suggest me how i can send file name in header?