Click here to Skip to main content
15,892,674 members

Comments by Member 11589429 (Top 27 by date)

Member 11589429 12-Apr-17 3:19am View    
Yes, I solved it with HttpUtility.UrlDecode(base64Decoded)
Member 11589429 10-Mar-17 2:38am View    
Yes
Member 11589429 12-Jan-17 1:22am View    
@NotPolitcallyCorrect,there is not necessary to tell me same thing again and again.This is question answer forum.I already mentioned, if u neither know the answer nor wish to explain pls keep quite.Ppl are here to gain knowledge
Member 11589429 11-Jan-17 4:54am View    
Hi F-Es Sitecore,I know how to google no need of any body to teach for that.If u don't want to answer or know answer,better to keep quite rather than writing such solution.
Member 11589429 12-Dec-16 7:33am View    
I have changed my code.
declare @Inserttbl nvarchar(4000)
declare @TableName varchar(50)
declare @PId int
declare @Text varchar(50)
declare @count int
declare @Status int
set @TableName ='sample'
set @Text = null
set @PId = 3
set @Status =1

set @Inserttbl = ' Insert into Test.dbo.' +@TableName +' values ('+@PId+','+@Text+','+@Status+')'
exec sp_executesql @Inserttbl

Still sql injection will happen?