AditSheth
Posts
-
Design Issue in About Article box -
css layout problem in Menu -
New Visual Studio Site LunchedNew Visual Studio UserVoice site Lunched by Visual studio. You can send new suggestions and ideas in Visual Studio products http://visualstudio.uservoice.com/forums/121579-visual-studio
-
error handlingdcof wrote:
catch (ex){}
You have to specify wich type of exception may handle by this try-catch. List of Exception
catch (Exception ex){}
dcof wrote:
curly green under the ex.
Curly green indicate that variable is declared but not used inside catch block.So throw exception.
catch (Exception ex)
{
throw ex;
} -
Blog portal - ASP.NET or PHP?Here you can get open source application for Blog panel In Asp.Net. http://www.dotnetblogengine.net/
Where can we go to find God if we cannot see Him in our own hearts and in every living being -Swami Vivekananda
-
Displaying vertical rows to bind dataGenerally our grid is like ID Name 1 Adit 2 Prerak 3 Shyam but i want to display this like below ID 1 2 3 Name Adit Prerak Shyam So which control i use,gridview,DataList,listview,... (In web form) and any link for this type of example
-
Ext.NET - New component frameworkRichard MacCutchan wrote:
Please do not use these forums for advertising.
Hey Richard, I am not advertising this. I just know about this by today. So i just want to discuss about this with members who already work with Ext.Net. Thanks for advice , I will write an article about this
Where can we go to find God if we cannot see Him in our own hearts and in every living being -Swami Vivekananda
-
SQL Query SelectBlue_Boy wrote:
select case when [type]=1 then 'MCA' when [type]=2 then 'Another Title' end + ' (' + coursename +')' as TypeAndCourse from courses
just little changes
SELECT [Coursename] + '(' + case when [type] = 1 THEN 'Regular' when [type]=2 then 'Another Title' end + ')' as TypeAndCourse
from coursesbut i am agree with "Mycroft Holmes" suggestion of creating new table..
Where can we go to find God if we cannot see Him in our own hearts and in every living being -Swami Vivekananda
-
Add New TagsI suggest to add new tags like extjs,ext.net and etc to give a proper tag to question related to this. Thanks
Where can we go to find God if we cannot see Him in our own hearts and in every living being -Swami Vivekananda
-
Ext.NET - New component frameworkExt.NET is an open source ASP.NET (WebForm + MVC) component framework integrating the cross-browser Sencha Ext JS JavaScript Library.
Where can we go to find God if we cannot see Him in our own hearts and in every living being -Swami Vivekananda
-
OneiricOcelot - Ubuntu 11.10 released yesterday (13 October 2011):)
Where can we go to find God if we cannot see Him in our own hearts and in every living being -Swami Vivekananda
-
HELP CSS Text Problem!I thing it is not working yet... you need not to change your older html and css just change the width of Content So your HTML is like
 * [Home](#) * [About](#) * [Photo Gallery](#) * [Video Gallery](#) * [Contact](#) 
Contact Us
Use this form below:
Copyright 2011 by Angel Ali
And CSS
#content {
width:564px;
float:right;
overflow:hidden;
}Where can we go to find God if we cannot see Him in our own hearts and in every living being -Swami Vivekananda
-
#develop (short for SharpDevelop) is a free IDE for C#, VB.NET and Boo projectsactually link is as follow http://www.icsharpcode.net/OpenSource/SD/Default.aspx :)
We are what our thoughts have made us; so take care about what you think. Words are secondary. Thoughts live; they travel far. -Swami Vivekananda
-
Tag for Extjs js libraryHello, I am working on new js library Extjs. I have a question in that. So when i am going to ask a question tag it gives below error Please revise your tag selection. So what can i do for asking question on Extjs.
If a man hasn't discovered something he will die for, he isn't fit to live. -martin luther king
-
Formulasbest way to use images of formulas here look at some web pages http://oscience.info/math-formulas/vector-geometry-formulas/ http://www.basic-mathematics.com/basic-math-formulas.html#
If a man hasn't discovered something he will die for, he isn't fit to live. -martin luther king
-
to create a video file from a list of bitmap picture files in C sharpLook at this link http://www.codeproject.com/KB/audio-video/avifilewrapper.aspx
If a man hasn't discovered something he will die for, he isn't fit to live. -martin luther king
-
HELP CSS Text Problem!Hi there is a problem in width of div.. You have class of #container,#leftsidebar and #content concentrate on width only...
#container {
width: 750px;
}
#leftsidebar {
border: 3px dashed orange;
width: 180px;
}
#content {
width: 570px;
}here your total width is 750. so you set leftsidebar=180 and content=570 so total is 750...right but in leftsidebar there is a border with width of 3px so reduce #content width with 3px of left-border and 3px of right-border so your new #content width is 570 - 3-3 = 564 px and your problem is solved... :)
If a man hasn't discovered something he will die for, he isn't fit to live. -martin luther king
-
OneiricOcelot - Ubuntu 11.10 released yesterday (13 October 2011)New Ubuntu version release... OneiricOcelot Cheers :thumbsup:
If a man hasn't discovered something he will die for, he isn't fit to live. -martin luther king
-
How to use Jquery on a Dynamical created Textbox:thumbsup:Thanks
-
How can i change regex to work in javascriptHello I have regex expression that is work in asp.net for finding link
SET objRegex = NEW regexp
objRegex.Pattern = "(\b(?:(?:https?|ftp|file)://|www\.|ftp\.)(?:\([-A-Z0-9+&@#/%=~_|$?!:,.]*\)|[-A-Z0-9+&@#/%=~_|$?!:,.])*(?:\([-A-Z0-9+&@#/%=~_|$?!:,.]*\)|[A-Z0-9+&@#/%=~_|$]))"Now i want to use this expression in javascript. how can i write ? I tried with this but not working.
var re = new RegExp(/\b(/?:(/?:https?|ftp|file):\/\/|www\.|ftp\.)(?:\([-A-Z0-9+&@#\/%=~_|$?!:,.]*\)|[-A-Z0-9+&@#/%=~_|$?!:,.])*(?:\([-A-Z0-9+&@#/%=~_|$?!:,.]*\)|[A-Z0-9+&@#/%=~_|$])/g);
Is there any Converter available for this?
“Before you start some work, always ask yourself three questions - Why am I doing it, What the results might be and Will I be successful. Only when you think deeply and find satisfactory answers to these questions, go ahead.” -Chanakya Thanks Adit