I have a program using the try catch finally block. Basically when an exception is thrown in the try block, the exception is captured but i wish to continue to the process.
The process is basica...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23015476.html
Hi,
I used to use:
FormsAuthentication.SetAuthCookie(txtEmail.Text, chkRememberMe.Checked)
in ASP.NET 2003 and it used to work.
In 2005, it doesn't remember the login for more than few minu...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23041225.html
Hi,
I need to make my site multilingual. I will be reading everything from a database according to the current site language which will be set in a session variable. But regarding the labels and t...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23041308.html
I have a html page that i wish to parse and get only contents between the <Form tags and </form> tag
How can i achieve the same and any sample programs would be great.
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23173243.html
I have a script that fetches a webpage and i wish to replace some parts of the fetched html content.
for eg: <td class="forminput">some text</td>
I wish to replace the word 'formInput' with 'n...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23200151.html
I have the following content in a html page and i wish to retrieve the email address .
<div class="desc"><a href="mailto:abc@xyz.com" >abc@xyz.com</a></div>
How can i retrieve the email abc@x...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23202731.html
I wish to retrieve all web URL links on provided on a web page.
for eg. http://www.notifyjobs.com/JobsByCategory.aspx?CategoryID=24
There are over 24 links and i need to capture all of them
...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23226740.html
I have a code behind that needs to use the value that is fetched through SqlDataSource.
Here is the code so far
protected void Page_Load(object sender, System.EventArgs e)
{
Se...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23276150.html
i am newby to .net and c# . i have built a method within a class and is giving a compilation error of Compiler Error Message: CS0161: 'DbConn.loginApp(string, string)': not all code paths return a ...
http://www.experts-exchange.com/Microsoft/Development/.NET/Q_23276481.html
I want to fetch the table column value(JOB_CATEGORY_NAME) for all job categories in the following format:
Record1 Record2 Record3
Record4 Record5 Record6
Record7 Record8 Record9
Something ...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23278474.html