all groups > asp.net > september 2006 > threads for sunday september 24
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
standard asp.net + mobile asp.net
Posted by Jeff at 9/24/2006 11:32:08 PM
Hey
asp.net 2.0
I wonder if it's possible to have both standard asp.net and mobile asp.net
in the same web application. When the web server gets a request it can
detect if this requested comes from a mobile or not???.
Maybe there is setting in web.config specifying the default page if
... more >>
what is the difference between asp and asp.net
Posted by muth_arasu NO[at]SPAM yahoo.co.in at 9/24/2006 10:48:44 PM
Problem with accessing class in APP_CODE folder
Posted by pradeep_TP at 9/24/2006 9:37:01 PM
Hello,
I am trying to use APP_CODE folder for all my class files under VS 2005.
After adding APP_CODE in the solution explorer, I added a new web page by
right clicking project and selecting add new item. I expected the code
behind file (Default.aspx.cs) to automatically go under APP_CODE... more >>
adding a javascript attribute to all text form elements on an asp.net page
Posted by Ken Fine at 9/24/2006 9:08:39 PM
In code, I'm adding javascript attributes to form elements on an ASP.NET
page:
body.Attributes.Add("onClick", "highlight(event);");
body.Attributes.Add("onKeyUp", "highlight(event);");
title.Attributes.Add("onClick", "highlight(event);");
title.Attributes.Add("onKeyUp", "highlight(event);");... more >>
Incorrect HttpWebResponse.CharacterSet
Posted by Leon_Amirreza at 9/24/2006 7:24:26 PM
My Page contains this:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
i used this code to retrieve the page:
HttpWebResponse webresp = (HttpWebResponse)(webrq.GetResponse());
the value of the some properties of webreps are as follows:
ContentType = ... more >>
Best way to sanitize user input?
Posted by Brad Baker at 9/24/2006 6:54:12 PM
I have an asp.net page written in C# which provides a search box which
updates a gridview control using the following code:
protected void search_button_Click(object sender, EventArgs e)
{
string search_terms = search_textbox.Text;
string search_fields = search_dropdown.Text;
... more >>
can't retrieve connection string from web.config
Posted by Jon Paal at 9/24/2006 6:02:17 PM
..net 2.0
can't retrieve connection string from web.config, always returns error message -- what's missing ??
======web.config =========
<appSettings>
<connectionStrings>
<add name="NorthwindConn"
connectionString="Server='local'; database='NORTHWIND'; Trusted_Connection=... more >>
HTTP Post Question
Posted by Matt at 9/24/2006 3:10:21 PM
Hi,
I am trying to to create a HTTP Request that posts XML that mimics the html
form below.
<form name="Form1" method="post" action="http://test/xml.aspx" id="Form1">
<textarea name="OrderXml" id="OrderXml"
style="height:342px;width:550px;Z-INDEX: 104; LEFT: 65px; POSITION:
absolute; TOP... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
custom control - doesn't show
Posted by tepesco at 9/24/2006 1:10:19 PM
Hi..
I'm trying to create small custom control.. class definition in vb looks
like:
Imports System
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports System.Resources
Imports System.ComponentMode
Imports Anthem
Namespace WebContr.WebControls
Public Class DynamicLi... more >>
Creating a form off of multiple tables
Posted by John Meyer at 9/24/2006 12:57:42 PM
I have a table that has several foreign keys. How do I set up an update
form so that those foreign keys become drop-down lists. In other words,
I want the drop down list to populate the possible values from one
table, but the selected value comes from another.... more >>
Retrieve SortedList from Class (App_Code)
Posted by sck10 at 9/24/2006 11:44:34 AM
Hello,
I have a method in my codefile that builds a sorted list (see CodeFile). I
am trying to create a class that does the same thing (see App_Code).
CodeFile
===================================
public void PostSearch(string HRID)
{
SortedList PostSearchList = new SortedList();
... more >>
Installation ASP.net 2.0
Posted by tony wong at 9/24/2006 10:49:54 AM
My server is Windows 2003 & IIS 6.0
it can run ASP .net 1.1?
how can i run / install ASP .net 2.0?
Thanks a lot.
tony
... more >>
include ...
Posted by Gabriel at 9/24/2006 8:36:10 AM
Hello,
In the ASPX code I use this (I know is not the best way) :
<!--#include file ="file.inc"-->
I'd like include an another file (file1.inc, file2.inc, ....) depending of a
parameter from URL.
I tried this :
<!--#include file =" <%Response.Write(getPage())%>"-->
But I receive an... more >>
Bubbling up exceptions
Posted by pamelafluente NO[at]SPAM libero.it at 9/24/2006 7:10:04 AM
Hi guys,
When bubbling some exception up to some interface handlers
- what is most recommandable:
Try
'some code
Catch ex As Exception
Throw
End Try
or
Try
'some code
Catch ex As Exception
Thr... more >>
q; export to PDF
Posted by JIM.H. at 9/24/2006 6:16:02 AM
I need to export the fields in my page to a PDF file, how can I do that? Any
example will be greatly appreciated.... more >>
Crystal report Generation
Posted by Jack at 9/24/2006 2:18:01 AM
Hello All,
Can anyone here suggest me a solution to solve my follwoing problem?
1) I got a .aspx page and on that page i got a combo box and a command button.
Combo box displays records from the database.
I wanted to generate a report which is based on the record that user selects
from t... more >>
Refreshing a Datagrid
Posted by Owen Richardson at 9/24/2006 2:08:01 AM
I have a page with a datagrid full of images, and an image upload section at
the bottom. The problem i have is when i insert an image, the datagrid doesnt
seem to refresh showing the new image - i know the image is there; how do i
fix this?
Regards
Owen... more >>
|