Click here to Skip to main content
15,898,995 members

Comments by Smart_Mohit (Top 3 by date)

Smart_Mohit 8-Jan-15 1:52am View    
Deleted
its not working
Smart_Mohit 22-Oct-14 2:19am View    
but the other employee which are working at other location(our branches outside india)
their machine ip is start with 10 not 192...how can i distinguish where the user is in intranet or internet ?

i think i need to check DHCP Allocation List.
Smart_Mohit 23-Oct-13 8:19am View    
thank you sir for ur valuable reply
actly i am saving the guid value in createdby column its datatype is
uniqueidentifier

private Guid GetUserId()//membership database
{
MembershipUser Usr = Membership.GetUser(User.Identity.Name);
Guid id = (Guid)Usr.ProviderUserKey;
return id;
}
the error is thrown by sqlhelper.cs
if i am passing all this variable to procedure in a
tradional way then its work,but my requirement is i have to pass it
through sqlparam via sqlhelper
i google also but their is no solution Frown | :( Frown | :( Frown | :(
if this error is solved my rest of the module will be developed very rapidly
this problem is occured after i added the membership database to the
application