Web Forms :: How To Pass Data On To Group Outside The Intranet

Jan 4, 2010

While recognizing that there are many 3rd party solutions to output a web page in pdf format, my corporate intranet hosting service does not allow 3rd party software, so...

This post is in response to
http://forums.asp.net/p/1506431/3585235.aspx#3585235 where it was suggested I might have better luck in this particular forum.I'm using VB.Net 2.0/vwd2005/MS SQL Server 2000. There are a couple web pages that are used for ocumentation--the format and data is exactly what I need, but to pass on to groups outside the intranet, the documentation needs to be in pdf format.

View 1 Replies


Similar Messages:

Security :: By-pass Authentication For Intranet Connections?

Feb 26, 2010

The company I work for has a web app running on IIS that has been strictly internal (uses a port other than 80 not accessible to the internet). Recently we started using mobile devices and need to access it over the internet. So I simply made it part of our company web site and secured that portion using forms authentication. The problem is that it is also our home page in the office and it is a pain to be logging in several times a day. In fact some of the staff are irate they have to login in at all when at their workstations. Is there a way to by-pass authentication when the referrer is http://servername/ and still enforce it when accessed via http://www.domainname.com?

View 1 Replies

Forms Data Controls :: Group Data,- The Group's Header Be On The Top ?

Feb 5, 2010

I'd like to gruop data from a table, for example, by DATE or CATEGORY, something like this:
29/01/2010
News 1
News 2
News 3

30/01/2010
News 1
News 2
News 3

or group by CATEGORY, like this:

ASP.NET
News 1
News 2
News 3

PHP
News 1
News 2
News 3

View 4 Replies

Forms Data Controls :: User Group List Like Graph / Get The List Of Users Under A Group

Oct 26, 2010

I need to develop a page in my applicaiton like the image for the user lists.

I need to get the list of users under a group and need to show likw this.

View 4 Replies

C# - Select DataTable (only Some Values) From _GetDisplayData And GROUP Data By Days Where Group Rules Is Different For Different Columns

Mar 4, 2010

Stack-Overflow :3 I've got a kind of hard-case question.

So I'll try clearly explain my idea with my poor english :/ need select to DataTable SOME values from ???_**GetDisplayData **procedure for each day of previos month (GROUP IT) where group rules for different columns is different


I need to select some values in stored procedure from other stored procedure like this :

SELECT X FROM Y_Procedure(@ProcedureParameters)Also I need to select from dynamic SQL Procedure like

Y_Procedure=@Y+'_Procedure'
SELECT X FROM Y_Procedure(@ProcedureParameters)


Also I need to load it to DataTable :-/INSERT INTO @Report (CellHorizontal, CellVertical, CellValue) --to TABLE
SELECT Date,X2,X3 FROM Y_GetDisplayData(@Param)

SET NOCOUNT OFF;
SELECT *
FROM @Report

GetDisplayData works as select with parameters and that doesn't returns SQL DataTable
And there is no way to recode GetDisplayData's procedures, it's just constant procedures for me.Finally I need to Group nodes from this table

INSERT INTO @Report (CellHorizontal, CellVertical, CellValue)
SELECT T1.Date,
IF ((Select grouptype...)=1) T1.X2 + T2.X2
ELSE IF ((Select grouptype...)=2) AVG(T1.X2,T2.X2),
IF ((Select grouptype...)=1) T1.X3 + T2.X3
ELSE IF ((Select grouptype...)=2) AVG(T1.X3,T2.X3),
(SELECT T2.Date,X2,X3 FROM Y_GetDisplayData(@Param) T2
WHERE T2.Date>T1.Date AND T2.Date>=T1.Date)
FROM Y_GetDisplayData(@Param) T1
GROUP BY EVERY DAY ???--and here is epic fail


I can make all stuff on asp server :And C# allows me to use something like SelectCommand = IzmProc + "_GetDisplayData"; And then I will work (select special data) with DataTables on ASP.NET Server but it's better to make all on SQL ... But looking like it's just unrealizable on SQL >_<

I gonna think about C# realization,but my code is very weird , got errors and doesn't works >_<

public static DataTable GetReport(string Param)
{
System.Configuration.ConnectionStringSettings connSetting = ConfigurationManager.ConnectionStrings["FlowServerConnectionString"]; [code].....

View 3 Replies

Access The Group Of A Linq Group - By Query From A Nested Repeater Control?

Mar 26, 2010

I'm using a linq group by query (with two grouping parameters) and would like to use the resulting data in a nested repeater.

var dateGroups = from row in data.AsEnumerable()
group row by new { StartDate = row["StartDate"], EndDate = row["EndDate"] };
"data" is a DataTable from an SqlDataAdapter-filled DataSet. "dateGroups" is used in the parent repeater, and I can access the group keys using Eval("key.StartDate") and Eval("key.EndDate").

Since dateGroups actually contains all the data rows grouped neatly by Start/End date, I'd like to access those rows to display the data in a child repeater. To what would I set the child repeater's DataSource? I have tried every expression in markup I could think of; I think the problem is that I'm trying to access an anonymous member (and I don't know how.) In case it doesn't turn out to be obvious, what would be the expression to access the elements in each iteration of the child repeater? Is there an expression that would let me set the DataSource in the markup, or will it have to be in the codebehind on some event in the parent repeater?

View 3 Replies

Intranet On IE11 Add Data To URL

Jul 2, 2014

I have a web-site that runs for external customers on the internet and for internal users on an intranet. In IE11 with no compatibility mode set the intranet site asks the user to log in for every pop-up page however this is not the case with the internet.

Now if turn on the Compatiblility mode then the intranet and internet work the same in that the users do not need to log on to every pop-up page, however the site formatting in lost when the Compatibility mode is set.In Chrome,Firefox there is no problem. I think it is something to do with the security and zones but have tried everything.

View 1 Replies

How To Update Data In The Intranet Application Through Internet

Oct 5, 2010

my application is in Intranet, but in my application mail is trigger to the user, and in that mail (outlook) user getting one link of that application so that he can update "YES"

My problem is that when the user is not in office and he is using Blackberry, at that time intranet link will not work.........

so, any solution that anybody can update through internet.

View 1 Replies

Web Forms :: How To Group Data In Dropdownlist

Aug 6, 2010

How to group data in dropdownlist

i am binding dropdownlist from databse

[Code]....

and i added two list items in code

[Code]....

View 1 Replies

Web Forms :: Group Data In Dropdownlist?

Dec 13, 2010

How to group data in dropdownlist

i am binding dropdownlist from databse

[Code]....

and i added two list items in code

Me.ddlModule.Items.Add(New ListItem("Colors", -1))
Me.ddlModule.Items.Add(New ListItem("Depts", -2))

i have table in db

objectno objectname
101 red
102 blue
103 Hr
105 Dept
106 white

View 2 Replies

Forms Data Controls :: Group Data In Gridview By Sales, Yearly, Monthly?

Jan 12, 2010

how to group data in gridview.for example grouping data by sales or yearly or monthly or by country or region.....

View 2 Replies

Forms Data Controls :: How To Show Group Data In The GridView Control

Oct 7, 2010

How to show Group Data in the GridView Control like

ID CityName CityCode
India
1 Chennai CH01
2 Mumbai MU01
3 Delhi DE01
Srilanka
4 Columbo CO01
5 Gandi GA01

View 2 Replies

Forms Data Controls :: Display Data In A Listbox On The Bases Of Group

Jul 13, 2010

I want to display data in a listbox on the bases of group.

Eg.

india

Mumbai

Delhi

UK

England

USA

Msahatem

ererere

tytytty

View 4 Replies

Forms Data Controls :: Group / Divide XML Repeater Data Into Groups?

Jan 17, 2011

I have a piece of code which gets clients list from a database and write to XML as follows:

[Code]....

Which Creates XML file as follows:

[Code]....

I need to group the client list in my online site to show(group) each 4 clients within separate div and ul

[Code]....

My target is to use one of the following two directions:

1 - Find a solution to group data while generating the XML file to groups of 4 items

[Code]....

2 - Try to group the xml in my repeater by finding a solution for nasted-like repeater or custom item template and separator template to make the output like the above div/ul structure

I also have no problem if we can do this through the SQL stored procedure

View 2 Replies

Forms Data Controls :: When Drag The Coloum To The Header To Group ...the Grid Show No Data?

Oct 19, 2010

I am using devexpress grid view. i have enabled SHOW GROUP PANELData is binded to the gridview using datatable in cs page . But when i drag the coloum to the header to group ...the grid show no data...

View 3 Replies

Web Forms :: How To Use DropDown List To Group By Data

Mar 15, 2010

[Code]....

here i include my coding...

when i compile it..it show the data wit the noted data..

my question is...i want use dropdown menu to select the "category"...

how to use it? lets say i choose "Furniture" the output should be the data under Furniture category

View 5 Replies

Web Forms :: Group Data Fields Into Single Value

Jun 19, 2012

Is it possible to group the values of different textboxes to a string....

View 1 Replies

Forms Data Controls :: Using A Nested Listview To Display A Seperate Grid For Each Group Of Data Returned From Db Query

Jan 13, 2011

I am using a nested listview to display a seperate grid for each group of data returned from my db query. To get this working, I have adapted a piece of code to group the data prior to it being bound:

[Code]....

I am then using the following html markup:

[Code]....

[Code]....

This works as I want it to however some of the fields within the nested table need to be formatted as currency so I am trying to use Eval and {0:c} to do this however the moment I use Eval, the data items cannot be found

DataBinding: 'System.Data.DataRow' does not contain a property with the name '0'.

View 4 Replies

Forms Data Controls :: Sum Data By Group In Gridview?

Aug 30, 2010

I got a grid with data like this

Col 1 Col2
----- ------

A 2
A 4
Total 6
B 2
B 3
Total 5
C 5
C 6
Total 11
D 5
D 7
Total 12

How to do like this in gridview asp.net 2.0?

View 10 Replies

Forms Data Controls :: Charts Group According To Years?

Jan 29, 2011

group my chart which is being bind to a datasource, to be group according to years.

View 1 Replies

Forms Data Controls :: How To Display Group Headers In ListView

Apr 26, 2010

I'm trying to use a ListView to display product specs. I also want to display the group headings such as "Dimensions", "Input Ports", etc.

How do I display these group headers? My code below lists the specs but doesn't show me the header. If I put some static text however, that shows up. What am I doing wrong?

[Code]....

View 4 Replies

Forms Data Controls :: Wanna Group A Button With Gridview?

Mar 17, 2011

I wanna group a button with gridview..Since I'm using many buttons in my page..

View 5 Replies

Visual Studio :: Group Profiles Settings - Users In The Group Update The Same Settings?

Jan 19, 2010

We have many different clients, and each client can have multiple user accounts.Right now, we have user settings set up on the ASP project, and a WinForms application can see these settings, depending on which user logs into the winforms application. They are specific to the user. I want to make them specific to the client, so users can be in "groups" by their client, and all users in the group would see/update the same settings.

View 1 Replies

Forms Data Controls :: Adding Subtotal To A Group Of Records (not In Footer)?

Jun 1, 2010

I have trawled through the entire web and found that most examples show how to add a total to the footer.

However, I am not after this and I want to add a total for the column 'Office sqm' for each group of addresses ONLY when the value of the 'Summed' is equal to Yes.

[code]....

View 8 Replies

Forms Data Controls :: Gridview Display Specific Date Group?

Jan 26, 2011

i have a data driven web application, in my database i have this datetime column,

and in my web application i have this gridview, but the only data that i need to display are the records with todays date until the past 6 days from today, so its like 7 days all in all.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved