blah blah blah is here! blah blah » Close

0
votes
2 answers

Why this happens?

sanjib
226

Whenever I connect GridView control to my local database and make AllowPaging property "True" the error coemes like this: " The GridView 'GridView2' fired event PageIndexChanging which wasn't handled. " But when I ...

0
votes
0 answers

Web Services

Hello I have a problem with my web services (in C #), it happened that in some cases the client invoking methods with parameters, not with example the data type and the WS generates an exception that I would catch. In debugging I ...

0
votes
4 answers

How to clear TextBoxes

sanjib
226

This is my code: [code]protected void Button1_Click(object sender, EventArgs e) { string s1 = TextBox1.Text; string s2 = TextBox2.Text; string s3 = TextBox3.Text; blog b = new blog(); if ...

0
votes
2 answers

Why this happens?

sanjib
226

I have created a web server control ServiceControl1 and added it my Visual Studio Toolbox. Later I drag it to a page of my website [url]http://aspspider.info/sanjibsinha[/url] But whenever I want to open the page [url]http://aspspider.in ...

0
votes
1 answers

How to count page-viewed number

sanjib
226

I have this code in my Global.asax file [code] void Application_Start(object sender, EventArgs e) { // Code that runs on application startup Application.Add("clickCount", 0); }[/code] I have code ...

0
votes
2 answers

Cannot implicitly convert 'System.Uri" to 'string'

Hi, I'm making a web browser in visual C# and I need to make the address bar change when a new page loads. Here is the code I am using: private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { ...

1
votes
1 answers

IsPostBack VS IsCrossPagePostBack

sanjib
226

What is the difference between IsPostBack and IsCrossPagePostBack? When these properties of Page object are used and what happened?

Feedback