can anyone tell me how to append xsl output to a file which already has some lines of data.
the quieter u become more u hear
can anyone tell me how to append xsl output to a file which already has some lines of data.
the quieter u become more u hear
guys how to set global variable in xsl using javascript and also tell me is there any get method and set method in xsl for declaring global variables and getting them back
the quieter u become more u hear
can u explain me further more. else send me any examples for that
the quieter u become more u hear
hi; is there any coding for deleting a particular file in specified period of time automatically in c#
the quieter u become more u hear
i'm an engineer 2009 pass out I have two job offers 1.php web developer 2.business analyst which would be the better choice to work.... :) :)
the quieter u become more u hear
ya i know that clearly.... i'm asking abt c# or vb code which runs behind asp environment... i have created a drop down button for selecting theme... is it necessary to copy the c# code in all web pages or i can make a single change in global.asax which works for all pages.. because my site consists of more than 300 screens... no apt results in google so far... did you understood my queston
the quieter u become more u hear
hi all, i have a website.now my task is to apply themes in all web pages. actually, my doubt is there any way to apply the theme by making changes in Global.asax file or i must edit all pages which needs changes.. please reply
the quieter u become more u hear
in Levenshtein Distance Algorithm why the cost of each edits is given as one... whats the mystery behind that.... any theories or links
the quieter u become more u hear
Environment.MachineName Environment.osversion
the quieter u become more u hear
what is the function of [STAThread] in c#
the quieter u become more u hear
thanks a lot its working fine
the quieter u become more u hear
how to convert array list into single string seperated with spaces
the quieter u become more u hear
thanks a lotttt :) :)
the quieter u become more u hear
if(!(iRet = isNumber(ptrToken)))
{
if(!(iRet = isChar(ptrToken)))
{
if(!(iRet = isComma(ptrToken)))
{
if(!(iRet = isHyphenDelimiter(ptrToken)))
{
if(!(iRet = isSlashDelimiter(ptrToken)))
{
if(!(iRet = isHashDelimiter(ptrToken)))
{
if(!(iRet = isAmpersandDelimiter(ptrToken)))
{
ptrTOken is the input given.... is there anyway to use regular expression here
the quieter u become more u hear
try using regular expressions....using remove method.. removing pattern[0-9]
the quieter u become more u hear
hmmm. yes .. can u help me
the quieter u become more u hear
but input will be from array list... is it possible to pass array list as input to regex
the quieter u become more u hear
http://social.msdn.microsoft.com/forums/en-US/csharplanguage/thread/5b31a847-cbb7-44b1-9e80-8a0b1d98a9ab106 [^] try this link
the quieter u become more u hear
string strInput= "plotno 55,xx street,yy city";
char[] delimiters = { ',', '#', ';', ' ', '/', '\0', '&', '-' };
string[] strTemp = strInput.Split(delimiters, StringSplitOptions.RemoveEmptyEntries);
foreach (string a in strTemp)
{
Console.WriteLine(" token'd string is\\t{0}\\t", a);
the ouput of the above code is token'd string is plotno token'd string is 55 token'd string is xx token'd string is street token'd string is yy token'd string is city it doesnt takes the specified delimiters as a token..... how to tokenenize icluding delimiters... thanks
the quieter u become more u hear
thank you very much... that works very well :) :) :) :) :)
the quieter u become more u hear