Click here to Skip to main content
15,881,089 members

Comments by yadlaprasad (Top 7 by date)

yadlaprasad 8-Jan-16 5:01am View    
Hi d@nish,
something wrong with above code?
yadlaprasad 5-Jan-15 4:30am View    
Hi, Please find below query.. but this is not accurate one.. I need some proper sql.. Please help..

select TableName=object_name(ss.id), RowCnt=st.rowcnt,
ColName=col_name(ss.id,convert(int,substring(ss.colidarray,1,2))),
UpdStatsDate=convert(varchar(20),moddate,100),
DaysAgo=datediff(dd,moddate,getdate())
from sysstatistics ss, systabstats st
where ss.id > 100 and st.id > 100
and ss.id=st.id
and ss.formatid=100
and st.indid in (0,1)
and ss.c4 is not null
order by TableName, ColName
yadlaprasad 7-Dec-14 9:56am View    
Hi Thanks for your response.. My question is is that possible with WAS? will LINUX supports WAS Hosting?
yadlaprasad 18-Aug-14 0:28am View    
Hi Afzaal, Thanks for your response. My requirment is I have input field that should only accept % values (example 2%, 0.5%, 2.4% etc..). if i type some value on input filed like for example '2' when I tab out or remove focus from the input field it should become '2%'. for input filed i am using @Html.EditorFor. Hope this is clear.
yadlaprasad 24-Jul-14 8:43am View    
Hi Jameel,
Yes I tried,but no help..

<input type="button" value="MyButton" önclick="Newwindow(this)" data-myurl="@Url.Action("Index", "Home")"/>

<script type="text/javascript">

function Newwindow(e) {
var urlkp = $(this).attr("data-myurl");
alert(urlkp);
var popupWindow = window.open("Mypage.aspx", "XCV", 'scrollbars=1,height=650,width=1050');
}
</script>

above alert id displaying undefined. not sure what went wrong. Please help some alternative