About Me
My name is Ramani Sandeep. I am originally from small village of Modasa, Gujarat, India. Programming and web development are passions of mine, and I hope to have something useful to contribute to the community either through my work or through my blog.
Now a days, I am busy with Web Development and I am having very good exposure in following technologies : C#, ASP.NET, DotNetNuke, AJAX, jQuery, ADO.NET, Web Services, WCF, WPF/Silverlight, MS SQL Server , Oracle and still learning more…
I am having good exposure on following domains : Real Estate Portal Development, E-Commerce ( B2B / B2C ) , Library Management System , Online Legal Advice, Gaming Portal Development and many more web based products.
In my free time I likes to spend time with ASP.NET Web forum to Technically help world wide developer by sharing my real world experience. I also like to read the articles written by expert on Microsoft technology.
My hobbies include watching movie, listen music, watching cricket/football/boxing matches.
Companies with whom i have worked (Start from recent one) :
-
CapGemini India Pvt Ltd , Pune
-
Gateway Technolabs Pvt Ltd , Ahmedabad
-
RA Technology Consultancy, Ahmedabad
-
Kunj Solutions, Ahmedabad
Thanks & Regards
Ramani Sandeep
Certifications & Awards Received
1) MCTS – .NET Framework 4, Web Application
2) MCC Award – Microsoft Community Contributor Award 2011


KK Patel said
Hey Sandeep,
Nice blog with great content and post. Hope you getting good traffic.
Currently I guess you dont have higher page rank so lets start link exchange.
I would be more than happy to add your link in my blog, which will be displayed at
” http://zoom2web.com/links-partners/ ”
Just add my link somewhere in blog for the mutual benefits.
Ramani Sandeep said
Hi KK,
I have added your links in my blog in Useful link section …
you can also add my link & increase traffic of our sites..
Thanks & Regards
Ramani Sandeep
Anjana said
Hi,
i have gone through interview section. it would be great if i get answers too.
Thanks.
Ramani Sandeep said
I will post answers some day…right now i do not have collection of each Q & A at one place. once it get done. i will post Answers as well.
Ramani Sandeep
Mohammed Hamed said
Hi Sandeep;
Thanks for the blog and information you are sharing with us. I am also a Software Developer working here in Sharjah, UAE. Sandeep please help me if you can refer me for any suitable job for me in India as I am trying to set back in India.
If you need any further details do let me know.
Thanks and Regards,
Mohammed Hameed.
kalyan said
how to join in ur site and ask queries as if am new to .NET working with C#
Ramani Sandeep said
there is nothing like register to post a query here.. this is personal blog so you can read the article posted by me & put yr comments or query regarding articles.
hope this helps !!!
Jigar Nagar said
Nice Blog and I am going to congratulate you to get higher traffic within your blog.There are a lot of information within your blog which is really helpful for worldwide developers and they can learn and also get a solution for their technical problem .
It is really good that you are giving extra time to maintaining the blog and give revert back answer to all world wide developer.
Best of luck for your upcoming career.
Ramani Sandeep said
@Jigar : Thanks a lot & i hope i will continue my work with your blessings and wishes.
Regards,
Sandeep Ramani
krishnasanepara said
hi..
mr sandeep sir
nice blog ..
i search for sending mail in asp .net
i read your blog , its really being very useful for me
Ramani Sandeep said
Hi Krishna,
Thanks for the comments but sir things sounds too big for me. I am not sir at all. I am just a developer like you. I hope thru this blog i can share some thoughts that can be helpful to others.
Thanks & Regards,
Sandeep Ramani
Krishna Patel said
Thx for all Information….
i m getting code for change Web.config file programmatic…. from your blog..
it`s really very helpful for me
Krishna Patel said
how to play ppt in flash player coding through
Ramani Sandeep said
Hi Krishna,
PPT file is made from PowerPoint program, it cannot be shown in Flash player directly. But you can convert your PowerPoint presentation to Flash and then play the presentation in Flash player, it is ideal for controling the playback.
View more, please go to its official Website:
http://www.sameshow.com/powerpoint-to-flash.html
Vishakha Ved said
I want to make Registration form using jquery (like dialog form in jquery). So please give some hint or idea for that?
Thanks In Advance if u could help me or not.
Ramani Sandeep said
Hi Vishakha,
Here is few example that can help you to complete registration form using jQuery.
1. How to check username is duplicate or not using jQuery :
http://www.mikesdotnetting.com/Article/99/Preventing-duplicate-User-Names-with-ASP.NET-and-jQuery
2. Insert record using jquery :
http://stephenwalther.com/blog/archive/2010/03/26/using-jquery-to-insert-a-new-database-record.aspx
Vishakha Ved said
How to make Leave ,Keypress events of Vb.Net in Asp.net ?
Ramani Sandeep said
Hi Vishakha,
You mean to say that you want to perform some operation when user type character in textbox or something else?
keyPress event can help. please look into this link :
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.keypress.aspx
It might help you. If still you have any doubt please fill free to ask.
Thanks,
Sandeep Ramani
Vishakha Ved said
Thanks for information
how to do javascript validation function for accepting only text ?
I tried following to function but they are taking all characters and i want when user entering input into textbox except alphabets it would not take.
here i m passing my control’s id in ctlid.
function CharOnly(ctlid)
{
var ctlObj = document.getElementById(ctlid);
var field = ctlObj.value;
if (!field.value.match(/^[a-zA-Z]+$/))
{
alert(“Please Enter only letters in text”);
}
return false
}
function alpha(e) {
var k;
document.all ? k = e.keyCode : k = e.which;
return ((k > 64 && k 96 && k < 123) );
}
function checkName(ctlid)
{
re = /^[A-Za-z]+$/;
if(re.test(document.insertDetails.ctlid.value))
{
alert('Valid Name.');
}
else
{
alert('Invalid Name.');
}
}
Ramani Sandeep said
Hi Vishakha,
Restrict users from typing any char except a-z/A-Z…
You can do with function you have written here with little modification like this :
function checkName(ctlid)
{
re = /^[A-Za-z]+$/;
if(re.test(document.insertDetails.ctlid.value))
{
return true;
}
else
{
return false;}
}
Now call this function like this : onkeypress=”return checkName(this)”
I hope this will solve your problem,
Regards,
Sandeep Ramani
Vishakha Ved said
thank u
Ramani Sandeep said
Anytime….
Vishakha Ved said
Hi sandeep.
I m doing work on Enrollment module & on main page where i taking essential information of the volunteer. now there is one button called Other Information. now here i want to use jquery to enter Other Information not want another form but on same page. here i m using panels which containing so many detail information like contact,personal,social etc. when i click on save al information must be saved.
So pls could you help me in Jquery?
Ramani Sandeep said
Hi Vishakha, You can use Tabbed interface here. For each information you can create tabs of them. Save all button you can use to save all the info on one go…
Here is the few links that will help you :
http://net.tutsplus.com/tutorials/javascript-ajax/create-a-tabbed-interface-using-jquery/
http://new2wp.com/pro/jquery-tabbed-login-register-forms/
Hope this will help !!!
Vishakha Ved said
hi Sandeep
I want to make it without tab. But thank You for help. I did it with modelpopExtender.
I m facing now another Problem
Here i write following function. i m trying to disable panel & its control If someone select male from dropdown outside panel (its id Panel_Menopause”). Panel Contain radio bottons.
function checkGender() {
sourceElement = document.getElementById(“Drp_gender”);
var pid = document.getElementById(“Panel_Menopause”);
// //volrect.aspx?g=sourceElement.value
alert(“Hello ” + sourceElement.value);
alert(document.getElementById(“Panel_Menopause”).disabled + “jkkjk”);
if (sourceElement.value == ‘female’) {
// alert(“Hi Female”);
pid.disabled =false;
}
else
pid.disabled = true;
}
Ramani Sandeep said
Hi Vishakha, So you mean to say that you want to disable or hide the panel? when you select male/female from DropDownList right? if this is the case than try this code :
function OnSSChange(){
var elementDDL = document.getElementById('');
var selectedelementDDL = elementDDL.options[elementDDL.selectedIndex].value;
var BenchPanel =document.getElementById('');
if (selectedelementDDL > 2 )
{
BenchPanel .style.display = 'none';
}
else
{
BenchPanel.style.display = 'block';
}
}
On Page_Load :
ddlCallStatus.Attributes.Add("OnChange", "OnSSChange()")
Hope this will help !!!
Vishakha Ved said
Hi Sandeep.
Its not working.
Thanks
vishakha said
Got the answer
//Javascript
function ED() {
var ddl = document.getElementById(“DropDownList1″);
//alert(ddl.value);
var div_to_disable = document.getElementById(”).getElementsByTagName(“input”);
var children = div_to_disable; //.childNodes;
for (var i = 0; i < children.length; i++) {
if (ddl.value == 'Male') {
children[i].disabled = true;
}
else {
children[i].disabled = false;
}
};
}
//ASPX
Male
Female
Ramani Sandeep said
Hi Vishakha, Please try the code i have posted here. just disable the panel , not all the elements with ‘input’ tag. Why you need to loop thru the code. in just a one line you can also disable to panel you want to disable. Hope you are getting what i am trying to tell you. Try code posted by me. It will definately help you. if still you face any issue. let me know.
Regards,
Sandeep Ramani
Ramani Sandeep said
Hi Vishakha , What problem you are facing?
Vishakha Ved said
hi
Above code disable all the controls.
So please if possible then give me suggestion
Yoke Lee said
Thanks for the great article (http://www.codeproject.com/KB/scripting/SortingTableColumnsJQuery.aspx)
It has enlighten the sort table’s rows function that I’ve created in PHP & jQuery.
Sudha said
Hi Ramani,
Am fresher and would like to know about your code related to news scrolling. It was half code and could not understand what is the css thats been used and the aspx page. please help me as it will solve me a bigger problem.
Regrads,
Sudha
Ramani Sandeep said
Hi Sudha,
If you are talking about the article i have written on my blog than it has all the code that is necessary to run and display news as scrolling. As far as CSS is concern, That is only for formatted purpose. it has nothing to do with scrolling news.
Hope this will help !!!!
Regards,
Sandeep Ramani